Port forwarding on Windows 7

后端 未结 5 1825
悲哀的现实
悲哀的现实 2021-02-03 12:04

How do I redirect an incomming request on port xxx to localhost:yyy on windows 7?

Development Server (vs 2008) only allow access from localhost which isnt good enough. I

5条回答
  •  执笔经年
    2021-02-03 12:59

    On the command prompt.

    $> netsh
    $> interface portproxy
    $> add v4tov4 listenport=xxx connectaddress=127.0.0.1 connectport=yyy protocol=tcp
    

    See: http://technet.microsoft.com/en-us/library/cc776297%28WS.10%29.aspx#BKMK_1

提交回复
热议问题