您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在Ubuntu root权限下进行系统安全加固,可以通过编写自动化脚本来实现
apt-get update
apt-get upgrade -y
systemctl disable --now cron.daily.service
systemctl disable --now cron.weekly.service
systemctl disable --now cron.monthly.service
apt-get autoremove -y
apt-get autoremove --purge $(dpkg --list | grep linux-image | grep -v $(uname -r)) -y
chage -d 9999 root
passwd -d root
sed -i 's/^PermitRootLogin yes/PermitRootLogin no/' /etc/ssh/sshd_config
sed -i 's/^Port 22/Port 2222/' /etc/ssh/sshd_config
apt-get install fail2ban -y
/etc/fail2ban/jail.d/sshd.conf
文件,设置以下参数:[sshd]
enabled = true
filter = sshd
logpath = /var/log/auth.log
action = %(action_mwl)s
your_script[script=/path/to/your/script.sh]
maxretry = 5
findtime = 600
bantime = 600
/path/to/your/script.sh
,用于封禁IP地址:#!/bin/bash
ip=$1
ban_time=600
/usr/bin/iptables -A INPUT -s $ip -j DROP
echo "$ip has been banned for $ban_time seconds." >> /var/log/ban_ip.log
chmod +x /path/to/your/script.sh
systemctl restart fail2ban
以上脚本仅为示例,实际应用中可能需要根据具体需求进行调整。在执行任何更改之前,请确保备份重要数据并充分了解每个命令的作用。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。