sudo vim /etc/network/interfaces
修改如下
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto ens33
#配置网络为DHCP模式
#iface ens33 inet dhcp
#配置网络 ens33为静态IP模式
iface ens33 inet static #设置ens33
address 192.168.3.150 # 设置IP地址
netmask 255.255.255.0 #设置子网掩码
gateway 192.168.3.1 #设置网关
保存退出
sudo vim /etc/NetworkManager/NetworkManager.conf
修改如下
[main]
plugins=ifupdown,keyfile,ofono
dns=dnsmasq
[ifupdown]
connect=false
ifconfig
sudo vim /etc/network/interfaces
修改如下
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto ens33
#配置网络为DHCP模式
#iface ens33 inet dhcp
#配置网络 ens33为静态IP模式
#iface ens33 inet static
#address 192.168.3.150
#netmask 255.255.255.0
#gateway 192.168.3.1
service network-manager restart
ifconfig
保存
使用自己创建的网络
在查看自己的网络是否正常