服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Linux - iptables: Unknown error 4294967295问题解决方法

iptables: Unknown error 4294967295问题解决方法

2019-10-21 17:24服务器之家 Linux

这篇文章主要介绍了iptables: Unknown error 4294967295问题解决方法,需要的朋友可以参考下

今天买了个腾讯云,想添加几个限制连接数的规则,没想到iptables老是报错iptables: Unknown error 4294967295,我还以为没有加载模块,停止iptables,执行modprobe -r ipt_recent,然后启动iptables,再添加规则还是报错,最后终于找到解决办法了.如下:
 

复制代码

代码如下:


cat >> /etc/modprobe.conf <<EOF
options ipt_recent ip_pkt_list_tot=200
EOF


停止iptables后,重新加载recent模块:

复制代码

代码如下:


modprobe -r ipt_recent


再来添加规则

复制代码

代码如下:


iptables -A INPUT -p tcp --dport 80 -m recent --name BAD_HTTP_ACCESS --update --seconds 60 --hitcount 100 -j REJECT
iptables -A INPUT -p tcp --dport 80 -m recent --name BAD_HTTP_ACCESS --set -j ACCEPT</p> <p>service iptables save


保存后没有再报错了,好了,问题解决.

延伸 · 阅读

精彩推荐