Accessing host machine IIS from a guest OS in VMWare

iisvmware

How can I access a site configured in IIS 7 on the host machine from a guest OS in VMWare (Fedora 10). I have configured the VM to use "NAT"

Best Answer

Depends on your network configuration of vmware product you are using (player, server, workstation). If it is set for a bridged mode, then you can do it as any other machine - by host machine's IP. If it is a "host only" or NAT mode - check what is the gateway IP for the guest (/sbin/route), and try using it:

# /sbin/route
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface

default         10.x.y.z        0.0.0.0         UG    0      0        0 eth0

In this case, 10.x.y.z is the ip of the host machine.

Related Topic