linux centos7新增ip黑名單禁止某個ip訪問

emanlee發表於2019-01-31

centos7用的是firewall 新增單個黑名單隻需要把ip新增到 /etc/hosts.deny

格式  sshd:$IP:deny

vim /etc/hosts.deny   新增你要禁止的ip就可以了

sshd:192.168.1.147:deny


 

這是允許的 /etc/hosts.allow 
sshd:19.16.18.1:allow
sshd:19.16.18.2:allow

=========================

多次失敗登入即封掉IP,防止暴力破解的指令碼,超過20次的就加到黑名單

 

1、編輯指令碼 

vim /usr/local/bin/secure_ssh.sh

 

#! /bin/bash
cat /var/log/secure|awk '/Failed/{print $(NF-3)}'|sort|uniq -c|awk '{print $2"="$1;}' > /usr/local/bin/black.txt
for i in `cat  /usr/local/bin/black.txt`
do
  IP=`echo $i |awk -F= '{print $1}'`
  NUM=`echo $i|awk -F= '{print $2}'`
   if [ $NUM -gt 20 ];then
      grep $IP /etc/hosts.deny > /dev/null
    if [ $? -gt 0 ];then
      echo "sshd:$IP:deny" >> /etc/hosts.deny
    fi
  fi
done

 

2、建立記錄登入失敗次數的檔案 

touch /usr/local/bin/black.txt

 

3、新增定時 10分鐘執行一次   ( 定時 10分鐘執行詳見: https://www.cnblogs.com/emanlee/p/10293762.html )

 */10 * * * * root  sh /usr/local/bin/secure_ssh.sh

 

 REF

https://blog.csdn.net/z13615480737/article/details/83028304?utm_source=blogxgwz4

 

 

相關文章