VMWARE下LINUX的网络

Rabbit

饿人谷支部书记
注册
2002-02-01
消息
35,035
荣誉分数
37
声望点数
0
装的时候说ETH0 FAILED,NO LINK PRESENT, CHECK CABLE?
我用的是BRIDGED NETWORK,咋回事呢?HOST OS上网一点问题都没有 :confused:
 
redhat里面网络设置是DHCP.

装好以后到windows 2000的VMWARE程序组里运行
"manage virtual networks",
然后在"Host virtual Adapters"里把所有的虚拟网卡都disable.

然后到"Automatic Bridging" check 那个选项
再启动你的linux就行了
 
最初由 人在天涯 发布
redhat里面网络设置是DHCP.

装好以后到windows 2000的VMWARE程序组里运行
"manage virtual networks",
然后在"Host virtual Adapters"里把所有的虚拟网卡都disable.

然后到"Automatic Bridging" check 那个选项
再启动你的linux就行了

AUTOMATIC BRIDGING 是选中的,怎么DISABLE虚拟网卡阿
 
里面有VM1和VM8都DISABLE了,还一样 :confused:
 
你的机子要是装有VNC,我可以友情远程进去帮你看看,
或者你明天准备再吹一次,我上门YDFR.:blink:
 
最初由 人在天涯 发布
你的机子要是装有VNC,我可以友情远程进去帮你看看,
或者你明天准备再吹一次,我上门YDFR.:blink:

Netmeeting 也有remote access,不过估计TT也不知道怎么设,明天你吹的时候,我也可以...:blink: :blink:
 
兔子不会又装了三个网卡吧?看看VMNET0连到哪个网卡上了,物理网卡的线连了吗?
 
最初由 safari 发布
兔子不会又装了三个网卡吧?看看VMNET0连到哪个网卡上了,物理网卡的线连了吗?

网卡就一个 :D 线当然连了,要不怎么来灌水阿 :D
 
Did you install vmware-tools on your Linux guest OS?
 
装那个TOOL了,要不连分辨率都只能640,480,不知道怎么回事,回家再试试 :(
 
The answer to this one is buried in the VMWare site. You have to find all copies of ifcfg-eth0 and add the lines:
check_link_down() {
return 1;
}
That fools the device into thinking the vmWare NIC is giving it a link up signal, which it doesn't.
Hope this helps, it works everytime for me. Good luck.

要是问题解决了,别忘了些我呀。
 
最初由 LaoSong 发布
The answer to this one is buried in the VMWare site. You have to find all copies of ifcfg-eth0 and add the lines:
check_link_down() {
return 1;
}
That fools the device into thinking the vmWare NIC is giving it a link up signal, which it doesn't.
Hope this helps, it works everytime for me. Good luck.

要是问题解决了,别忘了些我呀。

我总共有IFCFG-ETH0三个文件,内容是一致的,就是下面这些

DEVICE=eth0
BOOTPROTO=dhcp
ONBOOT=yes
USERCTL=no
PEERDNS=yes
TYPE=Ethernet

这也能家CHECK-LINK-DOWN吗 :confused:
 
Yes. you need to change them all theoretically. But I just changed one file and other two files were also changed automatically. Probably they have links among them. Give them a shout before you fire it up.

But my file
PEERDNS=no (not yes, like yours. I don't know what that means anyway)
==============================================
DEVICE=eth0
BOOTPROTO=dhcp
ONBOOT=yes
USERCTL=no
PEERDNS=no
TYPE=Ethernet

check_link_down() {
return 1;
}
================================================

It should work. If it doesn't, very possibly you screwed up 虚拟网卡 configuration.
Let me know if it works or not.
 
后退
顶部