Port forwarding in Windows 8
One of the drawbacks of Hyper-V on Windows 8 Pro, is that lack of NAT. Luckily Windows 8’s networking supports port proxies in netsh.
1 2 3 4 |
Host ip = 192.168.1.25 Guest ip = 192.168.137.147 netsh interface portproxy add v4tov4 listenport=22 listenaddress=192.168.1.25 connectport=22 connectaddress=192.168.137.147 |
Source: http://technet.microsoft.com/en-us/library/cc776297(v=ws.10).aspx
Reply