添加 3 个虚拟机,统一安装 Ubuntu Server 14.04 LTS
Tips
ifconfig 查看激活的网卡信息
route 查看路由信息
目标
虚拟机和主机连通
虚拟机之间连通
虚拟机可以连接 Internet
网络配置
虚拟机 A
安装 2 块网卡,
eth0 连接方式是 网络地址转换(NAT)
eth1 连接方式是 仅主机(Host-Only)适配器
配置网卡
/etc/networking/interfaces
auto eth0
iface eth0 inet dhcp
auto eth1
iface eth0 inet static
address 192.168.56.100
netmask 255.255.255.0
gateway 192.168.56.1
配置路由
/etc/rc.local
route del default
route add default gw 10.0.2.2 dev eth0
虚拟机 B
设置同虚拟机 A,eth1 IP 地址改成 192.168.56.101
虚拟机 C
设置同虚拟机 A,eth1 IP 地址改成 192.168.56.102
测试
拿虚拟机 A 举例:
ping 192.168.56.1
ping 192.168.56.101
ping baidu.com
这样就搭建好了一个虚拟机的网络,可以在之上做许多事情。