linux中 iptables遇到iptables: Protocol wrong type for socket
发布:smiling 来源: PHP粉丝网 添加日期:2015-04-21 10:35:50 浏览: 评论:0
想在linode vps centos 6.4上iptables加入限制ip连接数不能超过100的规则:
iptables -A INPUT -p tcp --syn --dport 80 -m connlimit --connlimit-above 100 -j REJECT
出现错误:iptables: Protocol wrong type for socket.问过Linode客服,说是内核与connlimit模块不兼容,iptables版本太旧了,需要升级.
查看iptables版本:
- [root@linode ~]# iptables -V
- iptables v1.4.7
查看iptables安装包:
- [root@linode ~]# rpm -qa | grep iptables
- iptables-1.4.7-9.el6.x86_64
- iptables-ipv6-1.4.7-9.el6.x86_64
按以下方法解决问题,但注意iptables再也不能使用yum来管理:
- yum update
- rpm -e --nodeps iptables-1.4.7-9.el6.x86_64
- rpm -e --nodeps iptables-ipv6-1.4.7-9.el6.x86_64
- yum groupinstall 'Development Tools'
- wget http://www.netfilter.org/projects/iptables/files/iptables-1.4.19.tar.bz2
- tar jxf iptables-1.4.19.tar.bz2 --phpfensi.com
- cd iptables-1.4.19
- LDFLAGS="-L$PWD/libiptc/.libs" ./configure --prefix=/usr --exec-prefix= --bindir=/usr/bin --with-xtlibdir=/lib/xtables --with-pkgconfigdir=/usr/lib/pkgconfig --enable-libipq --enable-devel
- make
- make install
查看iptables版本:
- [root@linode ~]# iptables -V
- iptables v1.4.19
- [root@linode iptables-1.4.19]# iptables -A INPUT -p tcp --syn --dport 80 -m connlimit --connlimit-above 100 -j REJECT
- [root@linode iptables-1.4.19]# iptables -L
- Chain INPUT (policy ACCEPT)
- REJECT tcp -- anywhere anywhere tcp dpt:http flags:FIN,SYN,RST,ACK/SYN #conn src/32 > 100 reject-with icmp-port-unreachable
可以看到上面已经有一条规则了.
Tags: iptables iptables:Protocol wrong
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)