You can delete them based on what they’re doing:
iptables -D INPUT -s 127.0.0.1 -p tcp --dport 111 -j ACCEPT |
Or you can delete them based on their number and chain name:
iptables -D INPUT 4 |
本文共 243 字,大约阅读时间需要 1 分钟。
iptables -D INPUT -s 127.0.0.1 -p tcp --dport 111 -j ACCEPT |
Or you can delete them based on their number and chain name:
iptables -D INPUT 4 |
转载于:https://www.cnblogs.com/AloneSword/p/3182887.html