Linux配置ADSL拨号上网

安装

1
yum install rp-pppoe.x86_64

配置PPPOE客户端软件

安装完软件包后,必须配置pppoe的配置文件/etc/ppp/pppoe.conf,从而让ADSL拨号时使用配置文件中的用户名、密码等参数。使用adsl-setup进行配置:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/usr/sbin/adsl-setup
>>> Enter your PPPoE user name :
# 输入ADSL帐号的用户名
>>> Enter the Ethernet interface connected to the ADSL modem
For Solaris, this is likely to be something like /dev/hme0.
For Linux, it will be ethn, where ‘n’ is a number.
(default eth0):
# 输入 eth0 ,这是ADSL相连的网卡的名字。
>>> Enter the demand value (default no):
# 输入 no
>>> Enter the DNS information here:
# 输入 server,这表示使用ADSL拨号自动获得的DNS服务器IP地址
>>> Please enter your PPPoE password:
# 输入ADSL帐号的密码
>>> Choose a type of firewall (0-2):
# 输入 0 ,不使用防火墙
>>> Accept these settings and adjust configuration files (y/n)?
# 如果输入的信息正确,输入 y ,完成配置,否则,输入 n 重新输入。

启动PPPOE客户端软件

1
2
3
4
5
6
7
8
9
10
11
12
/usr/sbin/adsl-start
# 启动PPPOE客户端软件,进行连接
# 如果成功,将出现Connected;如果不成功,请检查网线、ADSL MODEM等物理设备,并查看 /var/log/messages中的信息

/usr/sbin/adsl-stop
# 关闭和ISP的连接

/usr/sbin/adsl-status
# 查看当前连接的状态

chkconfig --add adsl
# 将在当前的运行级下加入ADSL的自启动脚本。

测试

1
2
3
4
5
6
7
ifconfig -a
# 在输出中应该含有关于 ppp0 的一堆信息,其中还绑定了 IP 地址,说明已经从拨号中获得了IP地址。

netstat -nr
# 查看路由表信息,这时的默认路由应该是上面获得的IP地址。
# 如果没有默认路由,我们可以手动增加:
route add default gw 上面获得的IP地址

维护

添加计划任务定时拨号

1
6 7 * * * root /usr/sbin/adsl-stop /etc/ppp/pppoe-eth1.conf;/usr/sbin/adsl-start /etc/ppp/pppoe-eth1.conf > /dev/null 2>&1
有钱任性,请我吃包辣条
0%