Ubuntu9.04中怎样设置dsl
发布网友
发布时间:2023-10-19 20:38
我来回答
共2个回答
热心网友
时间:2024-12-13 05:23
ubuntu9.04宽带连接换局域网2009年04月10日 星期五 下午 07:18我建了宽带连接后就不能使用路由器了,在网上查了半天也没有得到答案
只得到相关的网络配置文件如下:
/etc/ppp/peers/provider
/etc/ppp/pap-secrets
/etc/ppp/chap-secrets
/etc/network/interfaces
大概的意思是:用户名应该在/etc/ppp/peers/provider里边, /etc/ppp/pap-secrets和 /etc/ppp/chap-secrets这两文件保存密码,设定自动连接的话在 /etc/network/interfaces。
配置就是/etc/network/interfaces,如果建立了宽带连接会有一个备份/etc/network/interfaces.bak-0
原来的配置如下:
# 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
# The primary network interface
auto eth0
iface eth0 inet dhcp
使用pppoe之后的配置如下:
# 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
# The primary network interface
auto eth0
#iface eth0 inet dhcp
auto dsl-provider
iface dsl-provider inet ppp
pre-up /sbin/ifconfig eth0 up # line maintained by pppoeconf
provider dsl-provider
iface eth0 inet manual
我把pppoe卸载之后重新登录就好了,不过图形界面的那个东东显示没有链接。
另外的方法(未测试)
取消pppoe启动时自动拔号的设置方法
sudo gedit /etc/network/interfaces
auto dsl-provider 改成 #auto dsl-provider
此外还将所有跟dsl相关的语句注释,重启,ok。
设置静态ip的方法:
Ubuntu的网络参数保存在文件 /etc/network/interfaces中,默认设置使用dhcp,内容如下:
# The primary network interface
auto eth0
iface eth0 inet dhcp
设置静态ip的方法如下:
(1)编辑 /etc/network/interfaces
1.1)将dhcp 一行屏蔽
# The primary network interface
auto eth0
#iface eth0 inet dhcp
1.2)添加和静态ip有关的参数
# The primary network interface
iface eth0 inet static
address 192.168.0.10
netmask 255.255.255.0
gateway 192.168.0.1
(2)编辑 /etc/resolv.conf,设置dns
nameserver 202.96.134.133
nameserver 202.106.0.20
(3)执行下面两个命令,启用新设置
$sudo ifdown eth0
$sudo ifup eth0
热心网友
时间:2024-12-13 05:23
还是自己找到了 , 在终端输入 sudo pppoeconf 下面的是中文自己就看的懂了