首页 > 代码库 > 检测sshd端口误封脚本

检测sshd端口误封脚本

#!/bin/bash
n=`iptables -nvL |grep ‘tcp dpt:22‘ |egrep -iE ‘DROP|REJECT‘|wc -l`
if [ $n -ge 1 ]
then
    iptables -I INPUT -p tcp --dport 22 -j ACCEPT
fi

本文出自 “IT屌丝” 博客,请务必保留此出处http://68686789.blog.51cto.com/10438688/1861212

检测sshd端口误封脚本