I'm running a virtual machine (VMWare/Fedora 12) on a server(host). The virtual machine has a running webserver on port 80
, is on southpawtech
network domain (different from the one on which the host is) and is also sharing a directory which can be accessed from \\192.168.189.129
from the host by providing the password.
To access to webservice running on the virtual machine on the host machine's network I have setup this on the host machine:
netsh interface portproxy add v4tov4 listenport=1019 listenaddress=host connectport=80 connectaddress=192.168.189.129
But how can I access the directory the virtual machine is sharing (I think using Samba) over the host's network?
Maybe something like specifying the port through which to make the UNC access so that I can use a variation of the above command to route it to the virtual machine, or something else.