简单区分Vmware的三种网络连接模式(bridged、NAT、host-only)
from?https://www.slyar.com/blog/vmware-bridged-nat-hostonly.html
Vmware在安裝時(shí)默認(rèn)安裝了兩塊虛擬網(wǎng)卡,VMnet1和VMnet8,另外還有VMnet0。這些虛擬網(wǎng)卡的配置都是由Vmware虛擬機(jī)自動(dòng)生成的,一般來(lái)說(shuō)不需要用戶自行設(shè)置。
Vmware提供了三種網(wǎng)絡(luò)連接模式,分別為
1、bridged(橋接模式):默認(rèn)使用VMnet0,不提供DHCP服務(wù)
在橋接模式下,虛擬機(jī)和宿主計(jì)算機(jī)處于同等地位,虛擬機(jī)就像是一臺(tái)真實(shí)主機(jī)一樣存在于局域網(wǎng)中。因此在橋接模式下,我們就要像對(duì)待其他真實(shí)計(jì)算機(jī)一樣為其配置IP、網(wǎng)關(guān)、子網(wǎng)掩碼等等。
當(dāng)我們可以自由分配局域網(wǎng)IP時(shí),使用橋接模式就可以虛擬出一臺(tái)真實(shí)存在的主機(jī)。
2、NAT(網(wǎng)絡(luò)地址轉(zhuǎn)換模式):默認(rèn)使用VMnet8,提供DHCP服務(wù)
在NAT模式下,宿主計(jì)算機(jī)相當(dāng)于一臺(tái)開(kāi)啟了DHCP功能的路由器,而虛擬機(jī)則是內(nèi)網(wǎng)中的一臺(tái)真實(shí)主機(jī),通過(guò)路由器(宿主計(jì)算機(jī))DHCP動(dòng)態(tài)獲得網(wǎng)絡(luò)參數(shù)。因此在NAT模式下,虛擬機(jī)可以訪問(wèn)外部網(wǎng)絡(luò),反之則不行,因?yàn)樘摂M機(jī)屬于內(nèi)網(wǎng)。
使用NAT模式的方便之處在于,我們不需要做任何網(wǎng)絡(luò)設(shè)置,只要宿主計(jì)算機(jī)可以連接到外部網(wǎng)絡(luò),虛擬機(jī)也可以。
NAT模式通常也是大學(xué)校園網(wǎng)Vmware最普遍采用的連接模式,因?yàn)槲覀円话阒荒軗碛幸粋€(gè)外部IP。很顯然,在這種情況下,非常適合使用NAT模式。
3、Host-only(主機(jī)模式):默認(rèn)使用VMnet1,提供DHCP服務(wù)
在Host-only模式下,相當(dāng)于虛擬機(jī)通過(guò)雙絞線和宿主計(jì)算機(jī)直連,而宿主計(jì)算機(jī)不提供任何路由服務(wù)。因此在Host-only模式下,虛擬機(jī)可以和宿主計(jì)算機(jī)互相訪問(wèn),但是虛擬機(jī)無(wú)法訪問(wèn)外部網(wǎng)絡(luò)。
當(dāng)你想組成一個(gè)與物理網(wǎng)絡(luò)相隔離的虛擬網(wǎng)絡(luò)時(shí),無(wú)疑非常適合使用Host-only模式。
?
?
?
Host-only only permits network operations with the Host OS.
?
NAT mode will mask all network activity as if it came from your Host OS, although the VM can access external resources.
?
Bridged mode replicates another node on the physical network and your VM will receive it's own IP address if DHCP is enabled in the network.
?
Host-Only: The VM will be assigned one IP, but it's only accessible by the box VM is running on. No other computers can access it.
NAT: Just like your home network with a wireless router, the VM will be assigned in a separate subnet, like?192.168.6.1?is your host computer, and VM is?192.168.6.3, then your VM can access outside network like your host, but no outside access to your VM directly, it's protected.
Bridged: Your VM will be in the same network as your host, if your host IP is?172.16.120.45then your VM will be like?172.16.120.50. It can be accessed by all computers in your host network.
?
轉(zhuǎn)載于:https://www.cnblogs.com/tureno/articles/6039394.html
總結(jié)
以上是生活随笔為你收集整理的简单区分Vmware的三种网络连接模式(bridged、NAT、host-only)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: HDU 5936 Difference
- 下一篇: java播放背景音乐的几种方式