快捷搜索:   nginx

Ubuntu ADSL(PPPOE)接入指南

Ubuntu Linux是自带拨号网络(PPPOE调制解调器)支持的,但是没有Windows下拨号那么方便。其实Ubuntu下上网也并不是很 难,目前在中国ADSL家庭用户居多,在此就以Ubuntu 7.04 (Feisty Fawn) 为例,介绍一下Ubuntu下ADSL(PPPOE)拨号的方法。

目录
1 配置 ADSL
2 防止 ADSL 掉线
3 ADSL命令
4 如何设置动态域名(可选)


配置 ADSL
打开应用程序菜单,依次选择附件 - 终端。
sudo pppoeconf依照步骤提示进行,在输入用户名的时候注意把username清空後输入,否则可能会出现usernameXXXXX的现象。

防止 ADSL 掉线
在终端内
sudo   gedit /etc/network/interfaces复制下面内容完全复盖即可

# /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
mapping hotplug
script grep
map eth1

# The primary network interface
iface eth1 inet static
address 10.0.0.139
netmask 255.255.255.0
network 10.0.0.0
broadcast 10.0.0.255
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 211.162.32.1 211.162.32.20dns-nameservers 是你的dns服务器地址,如果有路由器的同志可以打开路由器设置看看,把路由器上的默认dns服务器贴上。

ADSL命令
注意:以下命令不是设置步骤,只是教你如何进行adsl拨号的日常操作

拨号 ADSL
sudo pon dsl-provider断开 ADSL
sudo poff查看拨号日志
sudo plog对于 拨号 ADSL 和 断开 ADSL 可以在菜单编辑器中依照以上命令行建立相应的快捷方式以方便拨号。

如何设置动态域名(可选)
#首先去 申请一个动态域名
#然後修改 /etc/ppp/ip-up 增加拨号时更新域名指令
sudo gedit /etc/ppp/ip-up
#在最後增加如下行
w3m -no-cookie -dump 'http://username:[email protected]/dyndns/update?system=dyndns&hostname=yourdns.3322.org'
将username:password按格式替换为你的用户名和密码 hostname替换为你的域名,其他不必更改。以上设置将在拨号时自动将动态域名解析挂载好。

顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论