Mark Knecht wrote: > How can I keep net.eth0 off unless I turn it on by hand? I am not > loading forcedeth explicitly but it's getting loaded anyway.
Set the following variable in /etc/conf.d/rc: RC_PLUG_SERVICES="!net.*" This will disable hotplugging for all network interfaces. If you only want to disable hotplugging for net.eth0, use the following: RC_PLUG_SERVICES="!net.eth0" HTH. -- Remy Remove underscore and suffix in reply address for a timely response. -- [email protected] mailing list

