# 显示iptables规则行号 iptables -nL --line-numbers |
# 删除某行规则 iptables -D INPUT 11 |
# 在某行插入新的规则,原来的规则会自动下移 iptables -I INPUT 13 -s 1.2.3.4 -p tcp -m state --state NEW --dport 22 -j ACCEPT |
# 显示iptables规则行号 iptables -nL --line-numbers |
# 删除某行规则 iptables -D INPUT 11 |
# 在某行插入新的规则,原来的规则会自动下移 iptables -I INPUT 13 -s 1.2.3.4 -p tcp -m state --state NEW --dport 22 -j ACCEPT |