Linux ubuntu16.04配置网络

静态网络配置:

1.进入interfaces配置
sudo vi /etc/network/interfaces

2.配置
auto lo
iface lo inet loopback

auto 网卡(输入ip link查看,如enp2s0)
iface 网卡 inet static

address 192.168.0.78
network 255.255.255.0
gateway 192.168.0.1

dns-nameservers 192.168.0.1
dns-search user

保存退出(shift+q,输入wq回车)
重启网络
sudo /etc/init.d/networking restart

猜你喜欢

转载自blog.csdn.net/weixin_43202599/article/details/84068687