ipables
我在 Ubuntu 中删除这条规则时遇到了麻烦:
$ iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 3128
我尝试过使用该-D
属性但没有成功。我怎样才能删除这个?我尝试过冲洗桌子,但似乎不起作用。
有什么建议么?
答案1
它应该只是:
sudo iptables -t nat -D PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 3128
或者尝试查找行号(iptables -L --line-numbers),然后使用:
sudo iptables -D [number]
第二个绝对应该有效。
或者尝试第三件事:
sudo iptables -F
sudo iptables -X
sudo iptables -t nat -F
sudo iptables -t nat -X
...你应该很幸运拥有其中之一。