module and modules.conf

Anthony Liu anthony@nexus-online.com
Sun, 14 Oct 2001 02:59:05 +0800


On Sun, Oct 07, 2001 at 06:57:40PM +0200, LuisMi wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> I want to load ip_conntrack_ftp with modules.conf, but I donī have any
> idea how to do that.
> At this momment I am loading it manually with 'modprobe ip_conntrack_ftp'
> 
> Can anyone explain me the changes I need to do in modules.conf?

Humm not an for you but I also have problems loading the
ip_conntrack_irc module, here is the script:

	local MODIR="/lib/modules/`uname -r`/kernel/net/ipv4/netfilter/"
	for module in $(ls -1 $MODIR | sed 's/\.o$//'); do
		modprobe $module
	done

It won't load the ip_conntrack_irc module either...
anyone know what is the correct loading sequence??