问题描述
伙计们,一直敲我的头几个小时的服务台(而不是MAC)。我在Parallels虚拟机上运行VS 2008。我可以在VM访问开发服务器如果使用本地主机,如果我使用指定IP的虚拟机或者尝试访问它外部不工作。所有的防火墙关闭,我核实,我可以从外部访问IIS。
Guys, been knocking my head against the desk (instead of the mac) for hours. I'm running VS 2008 in a parallels VM. I can access the development server in the VM if local host is used, if I use the designated ip for the VM or try to access it externally it does not work. All firewalls are off and I verified that I can access iis externally.
任何想法可能是错误的?
Any Ideas what could be wrong?
推荐答案
我遇到了同样的问题,并正在使用TCP隧道绕过它。下载的Java应用程序和放大器;只是隧道流量返回。与IIS没有搞乱必要的!
I ran into this same problem and am using a TCP tunnel to bypass it. Download this Java app & just tunnel the traffic back. No messing with IIS necessary!
http://jcbserver.uwaterloo.ca/cs436/software/tgui/tcpTunnelGUI.shtml
在命令提示符下,你会再运行Java应用程序像这样...让我们假设你想在80端口的外部访问和标准的调试环境在端口1088上运行...
In command prompt, you'd then run the java app like this... Let's assume you want external access on port 80 and your standard debug environment runs on port 1088...
java -jar tunnel.jar 80 localhost 1088
这篇关于访问ASP。网络开发服务器外部VM的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!