标签:shell脚本
#!/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
标签:shell脚本
原文地址:http://68686789.blog.51cto.com/10438688/1861212