iptables:如何轻松地将规则分组到链中?

发布于 2024-11-08 05:57:55 字数 752 浏览 0 评论 0原文

我有一些像这样的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光与爱终年不遇 2024-11-15 05:57:55

链只存在于一张表中。如果您运行iptables -N MYCHAIN,您将在过滤器表中创建MYCHAIN。如果你想在mangle表中使用MYCHAIN,你也必须在那里创建。

创建链后,您可以使用以下命令将其链接到默认链:

iptables -A INPUT -j MYCHAIN

Chains exist only in one table. If you run iptables -N MYCHAIN, you are creating MYCHAIN in the filter table. If you want to use MYCHAIN in the mangle table, you must create in there too.

Once you have created your chain, you link it to the default chains with:

iptables -A INPUT -j MYCHAIN
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文