vmware中的VMnet
VMware Workstation是个人比较常用的虚拟化软件。其中,某台虚拟机设置的网络适配器部分,对于网络组件/网络连接部分,可以有以下几种。
- 桥接(bridged)
最简单的方式。使用桥接网络VMnet0。有线无线都支持。VM就好像外部网络中独立的一台机器。
自动的话,会桥接到所有活动的网络连接,牛。
实现方式是这样的:
- NAT
新建VM向导使用的默认方式。使用网络VMnet8
实现方式:
- 仅主机(host-only)
使用网络VMnet1。VM完全在主机之内,默认与外界网络隔绝。
实现方式:
而如果要访问外界,需要做一些额外的设置:
If you install the proper routing or proxy software on the host system, you can establish a connection between the host virtual network adapter and a physical network adapter on the host system to connect the virtual machine to a Token Ring or other non-Ethernet network.
On a Windows host computer, you can use host-only networking in combination with the Internet Connection Sharing feature in Windows to allow a virtual machine to use the dial-up networking adapter or other connection to the Internet on the host system.
使用ipconfig没有发现VMnet0,不知道是不是因为安装了VirtualBox的原因
route print
===========
接口列表
15...74 86 e2 21 6d 0c ......Realtek PCIe GbE Family Controller
13...0a 00 27 00 00 0d ......VirtualBox Host-Only Ethernet Adapter 192.168.56.1
10...50 c2 e8 ab df 13 ......Realtek 8821CE Wireless LAN 802.11ac PCI-E NIC
6...00 ff 51 d8 82 9a ......TAP-Windows Adapter V9
51...00 50 56 c0 00 01 ......VMware Virtual Ethernet Adapter for VMnet1 192.168.26.1
53...00 50 56 c0 00 08 ......VMware Virtual Ethernet Adapter for VMnet8 192.168.74.1
7...50 c2 e8 ab df 44 ......Bluetooth Device (Personal Area Network)
1...........................Software Loopback Interface 1
============
最后一个,复杂网络配置,就是除了上面3种典型网络配置之外,做复杂的自定义配置,比如:
这个例子不完美的地方,就是没有详细说明VMnet2和VMnet3如何在虚拟网络编辑器里建立起来,选择什么类型,但是我们可以推断:
- 不会是NAT模式,因为仅可将一个网络设置为NAT。这个已经有了,就是VMnet8
- 不会是桥接模式。原因一个是因为桥接的效果是直接将VM放到外部网络上,这个在复杂网络结构中,不会过多使用,只会在出口处使用。二个是桥接默认是Auto,这种方式下无法再新建一个桥接网络,因为Auto会桥接到所有可用网络适配器,没有空余了。当然,是可以改到具体某个网络适配器的。
- 所以剩下一个就是真相,VMnet2和VMnet3都是仅主机的模式类型。
参考:Docs / VMware Workstation Pro / 使用 VMware Workstation Pro / 配置网络连接
https://docs.vmware.com/cn/VMware-Workstation-Pro/16.0/com.vmware.ws.using.doc/GUID-0CE1AE01-7E79-41BB-9EA8-4F839BE40E1A.html
- 点赞
- 收藏
- 关注作者
评论(0)