|
发表于 2005-2-21 15:15:53
|
显示全部楼层
[quote:3ef4a89920="linuxCN"]
.......
我们不必手工改动这个文件,可以使用adsl-setup这个工具进行配置:
#/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地址
当出现,如果还不清楚,请到windows转到dos用ipconfig/all看看你的dns是多少
>>> 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 重新输入。
4. 测试
当连接成功后,使用命令:
#ifconfig -a
在输出中应该含有关于 ppp0 的一堆信息,其中还绑定了 IP 地址,说明已经从拨号中获得了IP地址。
使用命令
#netstat -nr
查看路由表信息,这时的默认路由应该是上面获得的IP地址。如果没有默认路由,我们可以手动增加:
#route add default gw 上面获得的IP地址
使用命令
#nslookup www.sina.com.cn
如果解析出新浪的IP,说明已经从拨号中正确获得了DNS服务器。
最后,使用命令ping某个域名或IP,如果有响应,表示你已经大功告成了。[/quote]
我照这样设置的,adsl-start后也提示成功连接,但是就是无法ping通外网和打开网页,
我尝试在adsl-start之前用route del default,无法解决问题
ifconfig -a查看
网卡能正确识别,也分配到了动态ip了
route查看路由表信息:
root@slax:~# netstat -r
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
222.77.98.1 * 255.255.255.255 UH 0 0 0 ppp0
loopback * 255.0.0.0 U 0 0 0 lo
再用route add default gw 222.77.98.1
接着又尝试ping www.yahoo.com.cn 以及打开网页,仍然是"Unkonw Server"
我用的是FanX0.2.0 (Slax中文版)
请指点。谢谢。 |
|