且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

【不积跬步,无以致千里】DELETE SINGLE IPTABLES RULES

更新时间:2022-08-19 14:20:05

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