设置IP转发提示iptables: No chain/target/match by that name错误的解决方法

iptables的的指令可以用,但是当我要加入规则时,却出现以下的错误讯息。

[root@server ~]# /sbin/iptables -I FORWARD -d 0.0.0.0/0 -p tcp --dport 443 -m string --string "chinabank.com.cn" --algo bm -j REJECT
iptables: No chain/target/match by that name.
[root@server ~]# 

谷歌了一下,有反应说是因为没有iptables的的模块,
一开始觉得怎么可能,因为都可以使用指令了,为什么会没有包含此模块,

结果lsmod的看了一下,还真的没有。


[root@server ~]# lsmod
Module                  Size  Used by

试着做以下指令,结果还真的没有此模块,
[root@server ~]# modprobe iptables
FATAL: Module iptables not found.
[root@server ~]# 
既然这样,只好重新编译内核了。



你可能感兴趣的:(系统运维)