Code: Select all
#rc-update add net.eth0 default
#rc Code: Select all
config_eth0= ( "dhcp" ) Code: Select all
dhcpcd (!!) 
Code: Select all
#rc-update add net.eth0 default
#rc Code: Select all
config_eth0= ( "dhcp" ) Code: Select all
dhcpcd (!!) 

already thank you guys! i was unable to answer quicker because i have emerged gnome and it took me 26 hours, so sorry!WarMachine wrote:DSL (or at least any that I have encountered) does not use DHCP. You should set eth0=up
then dorc-update add rp-pppoe default
Code: Select all
modules=( "iproute2" )
config_eth0=("adsl" "10.1.1.3/8")
adsl_user_eth0="<<ISP USERNAME HERE>>"
hey darktama thank you very very much! i have figured it out that way!d4rk74m4 wrote:Perhaps the rp-pppoe init script was deprecated, I don't have it either. Instead, my /etc/conf.d/net looks likeNow when /etc/init.d/net.eth0 is started, it'll bring up the adsl connection on ppp0 (setup with adsl-setup), and also assign eth0 the address 10.1.1.3.Code: Select all
modules=( "iproute2" ) config_eth0=("adsl" "10.1.1.3/8") adsl_user_eth0="<<ISP USERNAME HERE>>"
The adsl_user_eth0 value is used to lookup the PAP password in /etc/ppp/pap-secrets, this is setup for you when you run adsl-setup.
Hope this helps
-darktama