iptables:如何轻松地将规则分组到链中?
我有一些像这样的netfilter规则:
iptables -I INPUT -j NFQUEUE -p udp --dport 4444
iptables -t mangle -I INPUT -j MARK --set-mark 100 -p udp --dport 4444
iptables -I OUTPUT -j NFQUEUE -p udp --sport 4444
iptables -t mangle -I OUTPUT -j MARK --set-mark 200 -p udp --sport 4444
我需要一种简单的方法来对这些规则进行分组,旨在将它们全部删除,就像这样
iptables -N MYCHAIN
iptables -I MYCHAIN -j NFQUEUE -p udp --dport 4444
iptables -t mangle -I MYCHAIN -j MARK --set-mark 100 -p udp --dport 4444
iptables -I MYCHAIN -j NFQUEUE -p udp --sport 4444
iptables -t mangle -I MYCHAIN -j MARK --set-mark 200 -p udp --sport 4444
# Fast deleting
iptables -F MYCHAIN
iptables -X MYCHAIN
但是它不起作用,当然我必须将默认链与MYCHAIN连接,但我不知道如何。有更好或更简单的解决方案吗?
I have some netfilter rules like this:
iptables -I INPUT -j NFQUEUE -p udp --dport 4444
iptables -t mangle -I INPUT -j MARK --set-mark 100 -p udp --dport 4444
iptables -I OUTPUT -j NFQUEUE -p udp --sport 4444
iptables -t mangle -I OUTPUT -j MARK --set-mark 200 -p udp --sport 4444
I need a simple way to group this rules, aim to delete them all together, like this
iptables -N MYCHAIN
iptables -I MYCHAIN -j NFQUEUE -p udp --dport 4444
iptables -t mangle -I MYCHAIN -j MARK --set-mark 100 -p udp --dport 4444
iptables -I MYCHAIN -j NFQUEUE -p udp --sport 4444
iptables -t mangle -I MYCHAIN -j MARK --set-mark 200 -p udp --sport 4444
# Fast deleting
iptables -F MYCHAIN
iptables -X MYCHAIN
But it doesn't works, surely i have to connect default chain with MYCHAIN, but i don't figure how. Are there better or simpler solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
链只存在于一张表中。如果您运行
iptables -N MYCHAIN
,您将在过滤器表中创建MYCHAIN
。如果你想在mangle表中使用MYCHAIN
,你也必须在那里创建。创建链后,您可以使用以下命令将其链接到默认链:
Chains exist only in one table. If you run
iptables -N MYCHAIN
, you are creatingMYCHAIN
in the filter table. If you want to useMYCHAIN
in the mangle table, you must create in there too.Once you have created your chain, you link it to the default chains with: