Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/windows/14.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用VMware player 6.0公开访问Ubuntu 13.10上的虚拟windows server 2008 R2?_Windows_Ubuntu_Vmware Player - Fatal编程技术网

如何使用VMware player 6.0公开访问Ubuntu 13.10上的虚拟windows server 2008 R2?

如何使用VMware player 6.0公开访问Ubuntu 13.10上的虚拟windows server 2008 R2?,windows,ubuntu,vmware-player,Windows,Ubuntu,Vmware Player,我在虚拟windows server 2008 R2上使用Ubuntu 13.10和VMware player 6.0。我必须在SharePoint 2010中检查一些内容。主人和客人都可以上网。现在我想通过internet上的其他计算机访问SharePoint。意味着来宾虚拟windows server 2008 R2服务器必须在internet上公开可见。请告诉我怎么做 附言:我使用的是ADSL互联网,完全可以控制它的配置。我在Ubuntu中的http服务器已经可以公开访问了 提前谢谢 以下

我在虚拟windows server 2008 R2上使用Ubuntu 13.10和VMware player 6.0。我必须在SharePoint 2010中检查一些内容。主人和客人都可以上网。现在我想通过internet上的其他计算机访问SharePoint。意味着来宾虚拟windows server 2008 R2服务器必须在internet上公开可见。请告诉我怎么做

附言:我使用的是ADSL互联网,完全可以控制它的配置。我在Ubuntu中的http服务器已经可以公开访问了


提前谢谢

以下是我在Ubuntu服务器13.04上运行VirtualBox以托管windows虚拟机所做的工作。我相信这将类似于您的场景

首先,确保您正在为虚拟机使用PCNet以太网

下一步修改您的网络:

nano/etc/网络/接口

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto br0
iface br0 inet static
address 192.168.2.98 #<- Change this to the internal IP address of your Ubuntu box
netmask 255.255.255.0
network 192.168.2.0 #<- Change this to the internal network
broadcast 192.168.2.255 #<- Change this to the internal IP address of your Windows VM
gateway 192.168.2.1 #<- Change this to your gateway
bridge_ports eth0
bridge_stp off
bridge_maxwait 5
#此文件描述系统上可用的网络接口
#以及如何激活它们。有关更多信息,请参见接口(5)。
#环回网络接口
自动lo
iface lo inet环回
#主网络接口
自动br0
iface br0 inet静态
地址192.168.2.98#