How to do port forwarding on VMWare Player 14.1.2 (Ubuntu 18.04 guest, Windows 10 host)?

后端 未结 2 1203
没有蜡笔的小新
没有蜡笔的小新 2020-12-16 07:06

I have a VMWare Player (14.1.2 build-8497320) running a Ubuntu 18.04 guest on a Windows 10 host. The Ubuntu guest has a LAMP stack that runs a few web applications. I am usi

2条回答
  •  旧巷少年郎
    2020-12-16 07:46

    VMWare Player supports port forwarding over NAT natively:

    In the file C:\ProgramData\VMware\vmnetnat.conf put under section [incomingtcp] a line like:

    80 = 192.168.80.128:80
    

    Then restart the VMWare NAT Service :

    net stop "VMWare NAT Service"
    net start "VMWare NAT Service"
    


    Source/credits: https://hitchhikingtheweb.wordpress.com/2014/09/02/portforwarding-with-vmware-player-and-nat/

    Also: VMWare documentation of this

提交回复
热议问题