|
发表于 2010-1-31 10:34:41
|
显示全部楼层
1.做一个ppp0的软链接
ln -sv /etc/init.d/net.lo /etc/init.d/net.ppp0
2.在 /etc/conf.d/net 中添加下列几行- config_ppp0=( "ppp" )
- link_ppp0="eth0" # PPPoE requires an ethernet interface
- plugins_ppp0="pppoe" # Required plugin for PPPoE
- username_ppp0='你的账号'
- password_ppp0='你的密码'
- routes_ppp0=( "default dev ppp0" )
复制代码
3. emerge ppp |
|