Ubuntu 的 Iptables 问题

Ubuntu 的 Iptables 问题

我在 ubuntu 中向 iptables 添加新规则时遇到了问题,以下是我认为的相关信息。

规则附加:

iptables -A INPUT -p tcp --dport 1022 -j ACCEPT -m comment --comment "SSH"

错误:

iptables: No chain/target/match by that name.

版本:

iptables v1.4.4

uname -r

2.6.18-028stab094.3

iptables -L

Chain INPUT (policy ACCEPT)
target     prot opt source               destination

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination

有人遇到过这个问题吗?

答案1

你可能没有模块评论在你的内核中编译或者加载。

我复制并粘贴了您的代码,它在我的计算机 debian wheezy 上顺利执行,所以不是一个类型错误。

相关内容