美文网首页
iptables删除nat规则

iptables删除nat规则

作者: amengtongxue | 来源:发表于2021-04-06 17:10 被阅读0次
    iptables -t nat -L -n --line-numbers
    Chain PREROUTING (policy ACCEPT)
    
    num  target     prot opt source               destination         
    
    
    Chain POSTROUTING (policy ACCEPT)
    
    num  target     prot opt source               destination         
    
    1    MASQUERADE  all  --  10.3.0.0/16        !10.3.0.0/16        
    
    
    Chain OUTPUT (policy ACCEPT)
    
    num  target     prot opt source               destination 
    

    一定要写对表名

    iptables -t nat -D POSTROUTING 1
    

    相关文章

      网友评论

          本文标题:iptables删除nat规则

          本文链接:https://www.haomeiwen.com/subject/qmfekltx.html