环境:RHEL 5
1.安装PPP包(ppp-2.4.4-1.el5.i386.rpm)
# rpm -ivh ppp-2.4.4-1.el5.i386.rpm
2.安装pppoe包(rp-pppoe-3.5-32.1.i386.rpm)
# rpm -ivh rp-pppoe-3.5-32.1.i386.rpm
3.执行拨号程序
# /usr/sbin/adsl-setup
<1>
当出现
>>> Enter your PPPoE user name :
输入ADSL帐号的用户名
<2>
当出现
>>> 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相连的网卡的名字
<3>
当出现
>>> Enter the DNS information here:
输入 server ,这表示使用ADSL拨号自动获得的DNS服务器IP地址
<4>
当出现
>>> Please enter your PPPoE password:
输入ADSL帐号的密码
<5>
当出现
>>> Choose a type of firewall (0-2):
输入 0 ,不使用防火墙
<6>
当出现
>>> Accept these settings and adjust configuration files (y/n)?
如果输入的信息正确,输入 y ,完成配置,否则,输入 n 重新输入。
4.启动PPPOE客户端软件
/usr/sbin/adsl-start 启动PPPOE客户端软件,进行连接,如果成功,将出现
Connected;
/usr/sbin/adsl-stop 关闭和ISP的连接
/usr/sbin/adsl-status 查看当前连接的状态
如果想在Linux系统启动时自动启动ADSL连接,输入以下命令
#chkconfig --add adsl
5.测试
#ifconfig -a
在输出中应该含有关于 ppp0 的一堆信息,其中还绑定了 IP 地址,说明已经从拨号中获
得了IP地址。
使用命令
#netstat -nr
查看路由表信息,这时的默认路由应该是上面获得的IP地址。
如果没有默认路由,我们可以手动增加:
#route add default gw 上面获得的IP地址
使用命令
#nslookup
如果解析出新浪的IP,说明已经从拨号中正确获得了DNS服务器
最后,使用命令ping某个域名或IP,如果有响应,表示你已经大功告成了。
阅读(1013) | 评论(0) | 转发(0) |