Is it possible to map ports localhost (127.0.0.1) of the guest Win OS to the host OS?

AaronL3

Bit poster
Hi - I want to access MySQL Server on the host MacOS at 127.0.0.1:3306, is there any easy method to redirect this port on Windows to the host OS?
Rather than use the host's IP and change the project's source configuration for when I need to use it on Parallels.
Thanks!
 
this command works:
netsh interface portproxy add v4tov4 listenaddress=127.0.0.1 listenport=3306 connectaddress=10.211.55.2 connectport=3306
 
Back
Top