为什么 iptables 使用 --src-range 时会出错

为什么 iptables 使用 --src-range 时会出错

我正在使用 iptables v 1.4.8 并使用以下命令,但在终端上收到一条错误消息

# iptables -A INPUT -m iprange --src-range 10.0.4.92-10.0.4.99  -j DROP

modprobe: module 'ip_tables' not found

然后在此之后当我使用

iptables-save 

然后也看到同样的错误。

使用时

iptables -L

终端出现了相同的错误iptables -L,我正在考虑使用该--src-range选项,但它却出现了这个错误,因为我尝试了其他命令,但没有出现这个错误。

但它运行正常,但我能弄清楚为什么这个错误会出现在终端。

请给出一些解决方案

答案1

您当前的内核没有构建 iptables 支持 ( CONFIG_IP_NF_IPTABLES),或者该模块已被删除。

相关内容