ubuntu系统利用路由器上网设置

通过路由器上网时需要配置IP自动获取,方法如下。
1、修改Interfaces文件,设置IP自动获取,网卡设置DHCP自动获取IP地址。
 sudo vim /etc/network/interfaces
 添加如下设置,若存在,则修改
 # The loopback network interface(配置环回口) 
 auto lo                                       # 开机自动激lo接口 
 iface lo inet loopback                        # 配置lo接口为环回口 
 # The primary network interface (配置主网络接口) 
 auto eth0                                     #开机自动激活eth0接口 
 iface eth0 inet dhcp                          #配置eth0接口为DHCP自动获取 (关键是这句)
2、重启网络,实在不行就重启电脑
sudo /etc/init.d/networking restart    

检查:利用ifconfig 或ping baidu.com 命令检测网络情况

你可能感兴趣的:(你好)