如何使用PUTTY设置端口路由


0

我需要做什么 ?我有带有Netbeans的Windows 8.1的电脑。我还有一个带有PHP 7.0和xdebug的VPS。我需要的最后一件事是在计算机和VPS之间创建路由。

当我执行:netstat - ao:

 TCP    [::]:9000              lap:0               LISTENING       18596

在Putty中我创建了一个隧道:

L9000    127.0.0.1:9000

我使用Putty登录VPS所以隧道应该定义,如何检查?

在VPS中:

[root@da1000 ~]# netstat -tln  | grep 9000
tcp        0      0 127.0.0.1:9000              0.0.0.0:*                   LIST                                                            EN
tcp        0      0 ::1:9000                    :::*                        LIST                                                            EN

我在VPS上的xdebug设置:

xdebug.remote_enable = On
xdebug.profiler_enable = On
xdebug.profiler_enable_trigger = On
xdebug.show_local_vars=0

xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_autostart=0
xdebug.remote_connect_back=0

如何检查问题在哪里?


“如何检查问题所在?” - 什么问题?问题没有提到 任何 通过隧道连接尝试;我只能猜你试图连接 不知何故 ,它失败了,这就是问题所在。你是如何以及尝试连接的?任何错误消息或日志?我希望这种连接尝试成为 some_address_of_windows_computer:9000。是来自另一个(外部)主机的Windows本身吗?您是否尝试过Windows端的其他端口?喜欢 L9876 127.0.0.1:9000
Kamil Maciorowski
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.