错误:iptables:没有该名称的链/目标/匹配

错误:iptables:没有该名称的链/目标/匹配

我正在尝试使用 Squid 和 iptables 在 RHEL Server 6.5 上配置代理服务器。以下是我执行的命令及其显示的错误消息:

vzlptest01 root [root] > iptables -A INPUT -i eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables: No chain/target/match by that name.

更多细节:

vzlptest01 root [root] > cat /proc/net/ip_tables_matches
limit
state
length
ttl
tcpmss
multiport
multiport
tos
tos
dscp
icmp
udplite
udp
tcp

vzlptest01 root [root] > cat /proc/net/ip_tables_targets
DNAT
SNAT
LOG
TOS
TOS
DSCP
TCPMSS
REJECT
ERROR

编辑:

vzlptest01 root [root] > iptables -S
-P INPUT ACCEPT
-P FORWARD ACCEPT
-P OUTPUT ACCEPT

如何处理这个问题?

相关内容