ubuntu 静态网络配置

1、网络配置

     配置文件:/etc/network/interfaces

#auto lo
#iface lo inet loopback

auto ens33
iface ens33 inet static
address 10.100.16.193
gateway 10.100.16.254
netmask 255.255.254.0
dns-nameserver 223.5.5.5

 

2、启动网络

/etc/init.d/networking restart

ystemctl restart networking

网络重启失败的话,尝试重启系统

reboot

你可能感兴趣的:(linux,ubuntu)