O que preciso fazer? Eu tenho computador com o Windows 8.1 com o NetBeans. Também tenho um VPS com PHP 7.0 e xdebug. A última coisa que preciso é criar roteamento entre o computador e o VPS.
Quando executo: netstat - ao:
TCP [::]:9000 lap:0 LISTENING 18596
No Putty eu crio um túnel:
L9000 127.0.0.1:9000
Eu faço o login no VPS usando o Putty para que o túnel seja definido. Como verificar isso?
No 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
Minha configuração do xdebug no VPS:
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
Como verificar onde está o problema?