vm下linux设置固定ip

1、打开vm虚拟网络编辑器,关闭使用本地DHCP服务

2、vi  /etc/sysconfig/network-script/ifcfg-eth 

        添加 IPADDR=192.168.106.128

                NETMASK=255.255.255.0

                GATEWAY=192.168.106.1(网关)

                BOOTPROTO=static

3、vi /etc/resolv.conf

      添加 nameserver 192.168.106.1(网关)

4、service network restart

ping不通外网需要加 nameserver 8.8.8.8,然后添加路由  route add default gw 192.168.5.1



你可能感兴趣的:(vm下linux设置固定ip)