我正在使用 CentOS。
我在我的 IPTable 测试环境中完成了以下操作。我已经刷新了所有规则,使用
iptables -F
然后我添加了以下规则。
iptables -I INPUT -p all -j ACCEPT
然后根据观察,我添加了这条规则;
iptables -A INPUT -s 192.168.2.50 -j DROP
我已经运行
service iptable save
之后我尝试ping被阻止的IP(192.168.2.50)。我仍然可以 ping 它,并且被阻止的 ip 可以 ping 我。
我想阻止来自被阻止 IP 的任何传入连接。
这是我的iptables -L输出
Chain INPUT (policy DROP) target prot opt source destination
ACCEPT all -- anywhere anywhere
DROP all -- 192.168.2.50 anywhere
Chain FORWARD (policy DROP) target prot opt source destination
Chain OUTPUT (policy ACCEPT) target prot opt source destination
Chain icmp_packets (0 references) target prot opt source destination
Chain tcp_packets (0 references) target prot opt source destination
请帮忙..谢谢..