Possible Duplicate:
How to setup virtual PC with php and access it from PC host ?

I would like to access Virtual PC URL from Host PC. I am able to access host computer from virtual PC. But not able to access the Virtual PC from Host PC.

I have tried below instruction no luck.

http://blog.flexuous.com/2007/02/04/virtual-pc-ip-routing-enabling-vpc-nat-loopback-connector-at-the-same-time/

link|improve this question
feedback

migrated from stackoverflow.com Oct 1 '10 at 19:14

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by Sathya, Diago Oct 1 '10 at 22:57

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

A virtual machine should have its own local IP address on the network.

You can run IPCONFIG in your virtual machine to get this IP address.

For example, I'm currently in a virtual machine and can see that its IP address is 192.168.2.31. If I direct a web browser in my host machine to http://192.168.2.31:8080/ I'm successfully served the website I have bound to this port.

link|improve this answer
feedback