欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

ubuntu16.0.4 设置固定ip地址的方法

程序员文章站 2022-04-05 08:09:49
由于ubuntu重启之后,ip很容易改变,可以用以下方式固定ip地址 1.设置ip地址 vi /etc/network/interface # the loo...

由于ubuntu重启之后,ip很容易改变,可以用以下方式固定ip地址

1.设置ip地址

vi /etc/network/interface
# the loopback network interface
auto lo
iface lo inet loopback
# the primary network interface
auto ens32
iface ens32 inet static
address 192.168.159.130
netmask 255.255.255.0
gateway 192.168.2.1

2.设置dns

 vi /etc/resolvconf/resolv.conf.d/base
nameserver 8.8.8.8
nameserver 8.8.4.4

3.刷新配置文件

resolvconf -u

4.重启网络服务

/etc/init.d/networking restart

如果上述命令重启网卡失败,可以手动关闭网卡,再打开网卡,这是ip已经改过来了,变成你设置的固定的ip了

总结

以上所述是小编给大家介绍的ubuntu16.0.4 设置固定ip地址的方法,希望对大家有所帮助