当前位置:网站首页 > 技术博客 > 正文

iptables规则生成

使用预装的iptables-translate程序即可,例如:

# iptables-translate -A INPUT -p icmp --icmp-type time-exceeded -j ACCEPT nft add rule ip filter INPUT icmp type time-exceeded counter accept 

nftables默认没有内置的链,可以自己新增

nft flush ruleset nft add table ip filter nft flush chain ip filter INPUT nft add chain ip filter INPUT "{type filter hook input priority 0; policy drop; }" nft add chain ip filter OUTPUT "{type filter hook output priority 0; policy accept; }" nft add chain ip filter FORWARD "{type filter hook forward priority 0; policy accept; }" nft list ruleset 

参考

版权声明


相关文章:

  • 前端计算器代码2024-10-21 18:01:01
  • 实践为什么是认识的基础2024-10-21 18:01:01
  • javascript中switch用法列题2024-10-21 18:01:01
  • IDL实现相对辐射定标2024-10-21 18:01:01
  • html颜色代码大全(含图)2024-10-21 18:01:01
  • js switch 多个选择条件2024-10-21 18:01:01
  • Nftables代替iptables2024-10-21 18:01:01
  • js switch分支语句与注意事项break2024-10-21 18:01:01
  • Linux技术03-Netfilter、Iptables、Nftables、Firewalld2024-10-21 18:01:01
  • JS Switch2024-10-21 18:01:01