我正在尝试删除服务器 IPtable 中列出的 IP 地址。
我正在使用以下命令列出 IP:
iptables -L INPUT -n --line-numbers
给我如下结果:
Chain INPUT (policy ACCEPT)
num target prot opt source destination
1 acctboth all -- 0.0.0.0/0 0.0.0.0/0
2 DROP all -- xxx.xx.xx.xx 0.0.0.0/0
问题:
如何删除或解除阻止第二条条目(列为)xxx.xx.xx.xx
?
答案1
查看左边的数字,然后使用数字将其删除。例如删除第 2 行,输入:
iptables -D INPUT 2