On Sunday 2008-06-22 10:02, isabela dinarsari wrote: >i need to insert module ipt_ipaddr match using insmod, >but there's an error: > >ipt_ipaddr: Unknown symbol xt_register_match >ipt_ipaddr: Unknown symbol xt_unregister_match > >could you explain to me how to solve this problem? >thank you insmod does not automatically load dependencies, only modprobe does. But modprobe does not take a filename, which makes the situation a bit awkward. So what's left is that one loads the dependencies with modprobe before: modprobe x_tables modprobe xtables_compat insmod xt_ipaddr.ko Note that ipt_ipaddr has been "replaced" by xt_ipaddr (you know ipaddr is just a test module anyway); the new doc is at http://jengelh.medozas.de/documents/Netfilter_Modules.pdf -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html