[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Iptables



Sergio Almenara Fernández escribió::
/lib/modules/2.4.19/kernel/net/ipv4/netfilter/ip_tables.o: unresolved
symbol nf_unregister_sockopt
/lib/modules/2.4.19/kernel/net/ipv4/netfilter/ip_tables.o: unresolved
symbol nf_register_sockopt


Si vemos el archivo /net/netsyms.c dentro de los fuentes del kernel vemos que alli exporta el symbol que necesitas si tienes seteado:
CONFIG_NET=Y
CONFIG_NETFILTER=y


#ifdef CONFIG_NET
EXPORT_SYMBOL(loopback_dev);
EXPORT_SYMBOL(register_netdevice);
[...]
#ifdef CONFIG_NETFILTER
#include <linux/netfilter.h>
EXPORT_SYMBOL(nf_register_hook);
EXPORT_SYMBOL(nf_unregister_hook);
EXPORT_SYMBOL(nf_register_sockopt);
              ^^^^^^^^^^^^^^^^^^^^
EXPORT_SYMBOL(nf_unregister_sockopt);
              ^^^^^^^^^^^^^^^^^^^^^
[...]
#endif /*CONFIG_NETFILTER*/
[...]
#endif  /* CONFIG_NET */


Considerando que tienes el CONFIG_NET=y (99.9999999999% seguro de que es así :-D )

No se me ocurre donde pueda estar el error, aunque por intuición nomás te recomendaría que recompiles sin CONFIG_NETFILTER_DEBUG y pruebes de nuevo, si aún así sigues teniendo problemas manda en un attach tu .config completa que la diffeamos y vemos más en detalle.

Slds !

--
Luciano



Reply to: