debian5:~# cat /sbin/block
iptables -I INPUT -p tcp --dport 80 -s "$1".0/24 -j DROP
iptables -L
debian5:~# cat /sbin/clean
iptables -F
iptables –L
我的两个脚本,一个封IP,一个结束所有封锁。
只封80端口。
呵呵。
最后别忘记 chmod 755 一下,这样才可以使用它,在需要的时候。
debian5:~# cat /sbin/block
iptables -I INPUT -p tcp --dport 80 -s "$1".0/24 -j DROP
iptables -L
debian5:~# cat /sbin/clean
iptables -F
iptables –L
我的两个脚本,一个封IP,一个结束所有封锁。
只封80端口。
呵呵。
最后别忘记 chmod 755 一下,这样才可以使用它,在需要的时候。