虚拟机中Ubuntu IP地址漂移问题解决(为Ubuntu配置固定IP地址)

  • Post author:
  • Post category:其他


背景信息

在Vmware中安装Ubuntu后(NAT方式),使用期间,IP地址会无规则变化(末位加1或减1),导致Xshell连接总是需要重新配置,为此将IP配置为固定IP,使该问题得到解决。

操作步骤

1、使用root用户登录Ubuntu

2、编辑/etc/network/interfaces文件。

完整的配置如下所示:

#配置回环口网卡
auto lo
iface lo inet loopback
#配置ens33
auto ens33
iface ens33 inet static
address 192.168.0.142
gateway 192.168.0.2
netmask 255.255.255.0
dns-nameserver 192.168.0.2   

对于上面的参数不知道原值是多少的化可以通过 nmcli dev show 命令查看

3、重启网络

ifconfig ens33 down

ifconfig ens33 up



版权声明:本文为wiborgite原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。