Ubuntu设置静态IP
程序员文章站
2022-07-03 18:47:19
...
Ubuntu设置静态IP
Ubuntu 16.04静态IP
1.首先确认虚拟机上面这几个设置;
虚拟机左侧->对应虚拟机系统->右键->设置
2.设置interfaces即可
sudo vi /etc/network/interfaces
修改如下:
# interfaces(5) file used by ifup(8) and ifdown(8)
#auto lo
#iface lo inet loopback
auto ens33
#设置静态
iface ens33 inet static
#设置IP地址
address 192.168.0.135
#设置子网掩码
netmask 255.255.255.0
#设置网关
gateway 192.168.0.1
#设置DNS
dns-nameserver 114.114.114.114
重启网关或者重启虚拟机:
sudo /etc/init.d/networking restart
待更新!!