iptables

作者: 木火应 | 来源:发表于2022-09-14 15:54 被阅读0次
没有加-t默认为-t filter这张表
  • 查看已有的规则命令iptables -S
    显示已添加的规则命令
  • 保存规则iptables-save > iptables.txt
  • 使用规则iptables-restore < iptables.txt

  • 显示规则行号iptables -nvL --line-numbers
  • 增加规则iptables -I INPUT ... iptables -A INPUT ...
  • 删除规则iptables -D INPUT ...

相关文章

网友评论

      本文标题:iptables

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