首页 > 代码库 > ubuntu配置上网

ubuntu配置上网

 

编辑配置文件:

#sudo vim /etc/network/interfaces
 
auto ens33       #没有这句网卡不能启动
iface ens33 inet static
address 192.168.100.16
netmask 255.255.255.0
gateway 192.168.100.1
 
设置dns
#sudo vim /etc/resolv.conf 
nameserver 114.114.114.114
#注意是nameserver 不是servername
 
 
重启网卡: 
#sudo /etc/init.d/networking restart
 
 
 
 

ubuntu配置上网