IPTABLES 评论:没有该名称的链/目标/匹配

IPTABLES 评论:没有该名称的链/目标/匹配

使用“comment”添加新规则时遇到错误:

# iptables -I INPUT 1 --source 66.***.***.78 -j REJECT -m comment --comment "Some"
iptables: No chain/target/match by that name.

没有评论 - 正常工作。

使用中央操作系统6.5,内核2.6.32

但相同的命令适用于具有相同操作系统的其他机器。

两者都有相同的模块:

# cat /proc/net/ip_tables_matches
icmp
state
udplite
udp
tcp

 # lsmod | grep ip
nf_conntrack_ipv4       9506  8
nf_defrag_ipv4          1483  1 nf_conntrack_ipv4
iptable_filter          2793  1
ip_tables              17831  1 iptable_filter
ipt_LOG                 5845  0
ipt_REJECT              2351  5
ip6t_REJECT             4628  2
nf_conntrack_ipv6       8337  2
nf_defrag_ipv6         11156  1 nf_conntrack_ipv6
nf_conntrack           79758  3 nf_conntrack_ipv4,nf_conntrack_ipv6,xt_state
ip6table_filter         2889  1
ip6_tables             18732  1 ip6table_filter
ipv6                  318183  17 ip6t_REJECT,nf_conntrack_ipv6,nf_defrag_ipv6

答案1

检查系统是否在您正在配置的端口上分配了 IP。简单的方法是删除网络配置 ( ifcfg-eth*) 文件并重新配置,以便解决问题。

相关内容