虚拟机ubuntu 设置静态ip 桥接模式与宿主机通信

默认情况下 是nat地址转换方式上网,但是宿主机和 虚拟机不能相互通信,所以一般设置静态ip,用桥接方式上网,这样就能宿主机和虚拟机相互通信了。

1. 设置虚拟机的网络方式 为桥接


2. 打开终端 运行 vim /etc/network/interfaces

编辑 IP 地址 和宿主机一个网段,网关也和宿主机一样,

# interfaces(5) file used by ifup(8) and ifdown(8)

auto lo

iface lo inet loopback


auto enp0s3

iface enp0s3 inet static

address 192.168.189.88

netmask 255.255.255.0

gateway 192.168.189.1



dns-nameservers 192.168.189.1


3. 运行  /etc/init.d/network  restart  配置生效

4. vim /etc/resolv.conf

输入dns

nameserver 192.168.189.1


5. sudo /etc/init.d/networking restart  配置生效



 

你可能感兴趣的:(虚拟机ubuntu 设置静态ip 桥接模式与宿主机通信)