ubuntu下使用ADSL(pppoe)
打开应用程序菜单,依次选择附件 - 终端。
sudo pppoeconf
依照步骤提示进行,在输入用户名的时候注意把username清空後输入,否则可能会出现usernameXXXXX的现象。
防止 ADSL 掉线在终端内
sudo gedit /etc/network/interfaces
复制下面内容完全复盖即可
# /etc/network/interfaces# This file describes network interfaces available on your system# and how to activate m. For more information, see interfaces(5).# The loopback network interfaceauto loiface lo inet loopback# This is a list of hotpluggable network interfaces.# They will be activated automatically by the hotplug subsystem.mapping hotplugscript grepmap eth1# The primary network interfaceiface eth1 inet staticaddress 10.0.0.139netmask 255.255.255.0network 10.0.0.0broadcast 10.0.0.255# dns-* options are implemented by the resolvconf package, if installeddns-nameservers 211.162.32.1 211.162.32.20
dns-nameservers 是你的dns服务器地址,如果有路由器的同志可以打开路由器设置看看,把路由器上的默认dns服务器贴上。
ADSL命令
注意:以下命令不是设置步骤,只是教你如何进行adsl拨号的日常操作
拨号 ADSL
sudo pon dsl-provider
断开 ADSL
sudo poff
查看拨号日志
sudo plog
对于 拨号 ADSL 和 断开 ADSL 可以在菜单编辑器中依照以上命令行建立相应的快捷方式以方便拨号。
- 最新评论