安裝epel
yum -y install epel-release
安裝fail2ban
yum -y install fail2ban
開機自啟fail2ban
systemctl enable fail2ban
啟動fail2ban
systemctl start fail2ban
檢視fail2ban安裝版本
fail2ban-clien -v
出現的版本號
fail2ban v0.9.7
licensed under the gnu general public license v2 (gpl).....
修改fail2ban配置檔案
尾部新增內容
[ssh-iptables] ##分類設定(基於sshd服務的防護)
enabled = true ##是否開啟防護
filter = sshd ##過濾規則filter名稱, 對應的目錄為sshd.conf
action = iptables[name=ssh,port = ssh(埠號),protocol=tcp] ##動作引數
sendmail-whios[name=ssh,[email protected],[email protected]] ##郵箱通知引數
logpath = /var/log/secure ##檢查系統登入日誌檔案
maxretry = 3 ##最大嘗試次數
bantime = 300 ##非法ip被遮蔽時間(秒)
重啟fail2ban服務
systemctl restart fail2ban
開啟另乙個伺服器連線
ssh test@(本身的ip) -p (本機埠號)
三次輸入密碼故意輸錯後提示
ssh: connect to host 192.168.2.62 port 22: connection refused
在fail2ban伺服器檢視
ail2ban-client status ssh-iptables
status for the jail: ssh-iptables
|- filter
| |- currently failed: 0
| |- total failed: 6
|- file list: /var/log/secure
- actions
|- currently banned: 1
|- total banned: 2
`- banned ip list: 192.168.2.63
在centos 7上安裝fail2ban
使用單個命令安裝fail2ban yum install y fail2ban 當該命令完成時,fail2ban準備好了。您將要使用以下命令啟動並啟用該服務 sudo systemctl start fail2ban sudo systemctl enable fail2ban 配置jail 接下來...
Centos7 安裝MySql 版本2
檢查 rpm qa grep mariadb 解除安裝rpm e mariadb libs 5.5.52 1.el7.x86 64 nodeps tar xvf mysql 5.7.23 1.el7.x86 64.rpm bundle.tar c usr local src mysql安裝mysql...
centos7 安裝centos桌面
一 輸入命令 yum groupinstall gnome desktop graphical administration tools 二 設定系統啟動等級。systemctl get default 獲取當前系統執行形式,會顯示multi user.target 命令列終端 或者 graphic...