添加规则
1 | iptables -A INPUT -p tcp -m multiport --dport 25,110,465:587,993:995 -j DROP |
保存规则
1 | /etc/init.d/iptables save |
再使用命令 netstat –lnp
检查一下开启的端口里面还有没有邮件端口。
添加规则
1 | iptables -A INPUT -p tcp -m multiport --dport 25,110,465:587,993:995 -j DROP |
保存规则
1 | /etc/init.d/iptables save |
再使用命令 netstat –lnp
检查一下开启的端口里面还有没有邮件端口。
评论