ipset v4.5: tipo de conjunto desconhecido

1

Eu compilei ipset na máquina CentOS5 de 32 bits e estou recebendo erros estranhos

Meu kernel:

[root@localhost ipset-4.5]# uname -a
Linux localhost.localdomain 2.6.18-400.1.1.el5 #1 SMP Thu Dec 18 00:58:32 EST 2014 i686 i686 i386 GNU/Linux

versão do ipset:

[root@localhost ipset-4.5]# ipset -V
ipset v4.5, protocol version 4.
Kernel module protocol version 4.

Tente criar hash.

[root@localhost ipset-4.5]# ipset --create test macipmap --network 192.168.10.0/24
ipset v4.5: Unknown set type

Eu verifico man exemplo e estou tentando aqui, mas sem sorte

[root@localhost ipset-4.5]# ipset -N test iphash --probes 2
ipset v4.5: Unknown set type

Regra de iptables:

[root@localhost ipset-4.5]# iptables -A INPUT -m set --set badips src -j DROP
iptables v1.3.5: Couldn't load match 'set':/lib/iptables/libipt_set.so: cannot open shared object file: No such file or directory

Versão do iptables:

[root@localhost ipset-4.5]# iptables -V
iptables v1.3.5

[root@localhost ipset-4.5]# rpm -qa | grep iptables
iptables-1.3.5-9.2.el5_8
    
por Satish 20.11.2015 / 17:25

1 resposta

0

Encontrei a solução por mim mesmo:

precisa carregar o módulo do kernel ip_set_iphash.ko .

# insmod /lib/modules/2.6.18-400.1.1.el5/extra/ip_set_iphash.ko

O iptables v1.3.5 possui a biblioteca libipt_set.so ausente para corrigir o seguinte:

# wget http://ftp.neu.edu.cn/mirrors/CentALT/5/i386/iptables-1.3.5-5.6.1.el5.i386.rpm
# rpm2cpio iptables-1.3.5-5.6.1.el5.i386.rpm | cpio -idmv
# cp lib/iptables/libipt_set.so /lib/iptables/libipt_set.so
    
por 20.11.2015 / 20:42