vmware 服务器双网卡,可以将虚拟机分别桥接在两块网卡上,桥接方法为:
1、在使用桥接之前,先在真机的'更改适配器设置中'禁用vmnet1和vmnet8。
2、在VMware中定义一个桥接器。
3、设置这个Linux虚拟机使用前一个步骤定义的桥接器--进入桥接器选择界面。
4、设置这个Linux虚拟机使用前一个步骤定义的桥接器--选择网络桥接器。
5、设置这个Linux虚拟机的网卡--或者通过这里自动获取IP,这一步非常重要。
6、设置这个Linux虚拟机的网卡--进入网卡设置路径。
7、设置这个Linux虚拟机的网卡--自动获取IP即可桥接完成。
VM Server 已经配置好了多个网卡,可以连接多个不同的IP段,但是创建的VM如果配置了多个网卡,只能有一个网卡连能ping通。
国内的百度搜了不少的答案根本没有用,Google到了这篇文章解决了我的问题:
https://stackoverflow.com/questions/14583984/multiple-ip-configuration-on-multiple-nic-on-same-server
简略说重点:
1) edit the file "/etc/sysctl.conf"
change the value from 1 to 2 in the following line:
net.ipv4.conf.default.rp_filter = 1
2)Add this line:
net.ipv4.conf.all.rp_filter = 2
After edit, it should look like this:
net.ipv4.conf.default.rp_filter = 2
net.ipv4.conf.all.rp_filter = 2
3)reload the configuration by typing
sysctl -p
Now you should be able to ping both IPs
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)