fishtail wrote:Shit.
Code: Select all
# rc-update add net.eth1 default * /sbin/rc-update: /etc/init.d/net.eth1 not found; aborting
Code: Select all
# ln /etc/init.d/net.eth0 /etc/init.d/net.eth1
# rc-update add net.eth1 default
fishtail wrote:Shit.
Code: Select all
# rc-update add net.eth1 default * /sbin/rc-update: /etc/init.d/net.eth1 not found; aborting
Code: Select all
# ln /etc/init.d/net.eth0 /etc/init.d/net.eth1
# rc-update add net.eth1 default

Code: Select all
# rc-update del net.eth0Code: Select all
# cp /etc/init.d/net.eth0 /etc/init.d/net.eth1Add new script to boot# nano /etc/conf.d/net
Change iface_eth0="dhcp" to iface_eth1="dhcp"
Code: Select all
# rc-update add net.eth1 defaultRodent, it's better to link net.eth1 to net.eth0 than to copy it. If it is linked, and net.eth0 is updated for any reason later on, net.eth1 will automatically be updated also. With copy it will not update, and could be cause of a hard to find problem.Rodent wrote:<snip>Heres the quick and dirty on the boot script, well its not so dirty.
Stop eth0 script from loadingCopy script for new nameCode: Select all
# rc-update del net.eth0<snip>Code: Select all
# cp /etc/init.d/net.eth0 /etc/init.d/net.eth1