亚洲成精品动漫久久精久,九九在线精品视频播放,黄色成人免费观看,三级成人影院,久碰久,四虎成人欧美精品在永久在线

掃一掃
關(guān)注微信公眾號(hào)

理解VMware虛擬機(jī)下網(wǎng)絡(luò)連接的三種模式
2007-09-21   賽迪網(wǎng) 

很多朋友都用vmware來測(cè)試不同的系統(tǒng),我結(jié)合自己的經(jīng)驗(yàn)談一下對(duì)網(wǎng)絡(luò)設(shè)置的理解,不對(duì)的地方請(qǐng)指正。

◆bridge:

screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://bbs.chinaunix.net/forum/uploadfile/bridged_1.gif');}" src="http://bbs.chinaunix.net/forum/uploadfile/bridged_1.gif" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>

這種方式最簡(jiǎn)單,直接將虛擬網(wǎng)卡橋接到一個(gè)物理網(wǎng)卡上面,和linux下一個(gè)網(wǎng)卡 綁定兩個(gè)不同地址類似,實(shí)際上是將網(wǎng)卡設(shè)置為混雜模式,從而達(dá)到偵聽多個(gè)IP的能力。

在此種模式下,虛擬機(jī)內(nèi)部的網(wǎng)卡(例如linux下的eth0)直接連到了物理網(wǎng)卡所在的網(wǎng)絡(luò)上,可以想象為虛擬機(jī)和host機(jī)處于對(duì)等的地位,在網(wǎng)絡(luò)關(guān)系上是平等的,沒有誰在誰后面的問題。

使用這種方式很簡(jiǎn)單,前提是你可以得到1個(gè)以上的地址。對(duì)于想進(jìn)行種種網(wǎng)絡(luò)實(shí)驗(yàn)的朋友 不太適合,因?yàn)槟銦o法對(duì)虛擬機(jī)的網(wǎng)絡(luò)進(jìn)行控制,它直接出去了。

◆nat方式:

screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://bbs.chinaunix.net/forum/uploadfile/nat_1.gif');}" src="http://bbs.chinaunix.net/forum/uploadfile/nat_1.gif" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>

這種方式下host內(nèi)部出現(xiàn)了一個(gè)虛擬的網(wǎng)卡vmnet8(默認(rèn)情況下),如果你有過 做nat服務(wù)器的經(jīng)驗(yàn),這里的vmnet8就相當(dāng)于連接到內(nèi)網(wǎng)的網(wǎng)卡,而虛擬機(jī)本身則相當(dāng)于運(yùn) 行在內(nèi)網(wǎng)上的機(jī)器,虛擬機(jī)內(nèi)的網(wǎng)卡(eth0)則獨(dú)立于vmnet8。

你會(huì)發(fā)現(xiàn)在這種方式下,vmware自帶的dhcp會(huì)默認(rèn)地加載到vmnet8界面上,這樣虛擬機(jī)就可以使用dhcp服務(wù)。更為重要的是,vmware自帶了nat服務(wù),提供了從vmnet8到外網(wǎng)的地址轉(zhuǎn) 換,所以這種情況是一個(gè)實(shí)實(shí)在在的nat服務(wù)器在運(yùn)行,只不過是供虛擬機(jī)用的。

很顯然,如果你只有一個(gè)外網(wǎng)地址,此種方式很合適。

◆hostonly:

screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://bbs.chinaunix.net/forum/uploadfile/host-only_1.gif');}" src="http://bbs.chinaunix.net/forum/uploadfile/host-only_1.gif" onload="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" border=0>

這應(yīng)該是最為靈活的方式,有興趣的話可以進(jìn)行各種網(wǎng)絡(luò)實(shí)驗(yàn)。和nat唯一的不同的是,此 種方式下,沒有地址轉(zhuǎn)換服務(wù),因此,模認(rèn)情況下,虛擬機(jī)只能到主機(jī)訪問,這也是hostonly的名字的意義。

默認(rèn)情況下,也會(huì)有一個(gè)dhcp服務(wù)加載到vmnet1上。這樣連接到vmnet1上的虛擬機(jī)仍然可以設(shè)置成dhcp,方便系統(tǒng)的配置.

是不是這種方式就沒有辦法連接到外網(wǎng)呢,當(dāng)然不是,事實(shí)上,這種方式更為靈活,你可以使用自己的方式,從而達(dá)到最理想的配置,例如:

a、使用自己dhcp服務(wù):首先停掉vmware自帶的dhcp服務(wù),使dhcp服務(wù)更為統(tǒng)一。

b、使用自己的nat,方便加入防火墻。windows host可以做nat的方法很多,簡(jiǎn)單的如windows xp的internet共享,復(fù)雜的如windows server里的nat服務(wù)。

c、使用自己的防火墻。因?yàn)槟憧梢酝耆刂苬mnet1,你可以加入(或試驗(yàn))防火墻在vmnet1和外網(wǎng)的網(wǎng)卡間。

從以上可以看出,hostonly這種模式和普通的nat server帶整個(gè)內(nèi)網(wǎng)上網(wǎng)的情形類似,因此你可以方便的進(jìn)行與之有關(guān)的實(shí)驗(yàn),比如防火強(qiáng)的設(shè)置等。

熱詞搜索:

上一篇:防火墻的來歷及應(yīng)用現(xiàn)狀(3)
下一篇:安全措施大升級(jí) 補(bǔ)丁管理走向自動(dòng)化

分享到: 收藏