Pad*_*add 3 ssh remote-debugging visual-studio-code vscode-remote
我正在尝试使用 Remote-SSH 扩展来编辑 Debian 服务器上的文件。SSH 连接已正确建立,但随后我收到一条错误消息:
Failed to connect to the remote extension host server
Run Code Online (Sandbox Code Playgroud)
和日志:
[13:19:04.182] Remote server is listening on port 51569
[13:19:04.182] Parsed server configuration: {"agentPort":51569,"osReleaseId":"debian","arch":"x86_64","webUiAccessToken":"","sshAuthSock":"","tmpDir":"/tmp"}
[13:19:04.184] Starting forwarding server. localPort 59828 -> socksPort 59825 -> remotePort 51569
[13:19:04.185] Forwarding server listening on 59828
[13:19:04.185] Waiting for ssh tunnel to be ready
[13:19:04.186] Tunneled remote port 51569 to local port 59828
[13:19:04.186] Resolved "ssh-remote+home-debian.web-data.host" to "127.0.0.1:59828"
[13:19:04.187] [Forwarding server 59828] Got connection 0
[13:19:04.195] ------
[13:19:04.208] [Forwarding server 59828] Got connection 1
[13:19:04.208] [Forwarding server 59828] Got connection 2
[13:19:04.217] Failed to set up socket for dynamic port forward to remote port 51569: Socket closed. Is the remote port correct?
[13:19:04.227] > channel 3: open failed: administratively prohibited: open failed
[13:19:04.235] Failed to set up socket for dynamic port forward to remote port 51569: Socket closed. Is the remote port correct?
[13:19:04.237] Failed to set up socket for dynamic port forward to remote port 51569: Socket closed. Is the remote port correct?
[13:19:04.241] > channel 4: open failed: administratively prohibited: open failed
> channel 5: open failed: administratively prohibited: open failed
Run Code Online (Sandbox Code Playgroud)
我在其他几台服务器上使用远程 ssh 连接,但从未出现过此错误。我已经测试了从网上收集的一些东西,但到目前为止没有任何效果。
有人能告诉我问题的原因或可能的解决方案吗?谢谢 !
小智 18
按着这些次序
sshd_config主机中的文件。按照此命令
nano /etc/ssh/sshd_config然后设置AllowTcpForwarding为yessudo systemctl restart ssh.vscode-server主机内的rm -rf /home/<user_name>/.vscode-serverAle*_*eau 13
确保AllowTcpForwarding yes在远程主机的文件中进行设置/etc/ssh/sshd_config。
您可以使用 sshd 以普通用户身份运行并使用不同的配置,从而允许 vscode 创建转发端口。
目标是启动一个用户控制的 sshd 服务器AllowTcpForwarding yes,然后使用 ssh 的 ProxyCommand 连接到该服务器。
执行此操作的步骤是:
UsePAM nomkdir ${HOME}/custom_ssh
ssh-keygen -f ${HOME}/custom_ssh/ssh_host_rsa_key -N '' -t rsa
ssh-keygen -f ${HOME}/custom_ssh/ssh_host_dsa_key -N '' -t dsa
cat << EOF > ${HOME}/custom_ssh/sshd_config
Port 2222
HostKey ${HOME}/custom_ssh/ssh_host_rsa_key
HostKey ${HOME}/custom_ssh/ssh_host_dsa_key
AuthorizedKeysFile .ssh/authorized_keys
ChallengeResponseAuthentication no
PubkeyAuthentication yes
PasswordAuthentication yes
UsePAM yes
X11Forwarding yes
Subsystem sftp /usr/lib/ssh/sftp-server
PidFile ${HOME}/custom_ssh/sshd.pid"
EOF
/usr/bin/sshd -f ${HOME}/custom_ssh/sshd_config
echo "----- Process ID : ${HOME}/custom_ssh/sshd.pid -------"
Run Code Online (Sandbox Code Playgroud)
~/.ssh/config:Host RemoteHost
HostName 127.0.0.1
Port 2222
User user
ForwardAgent yes
ForwardX11 yes
ProxyCommand ssh user@RemoteHostIp netcat %h %p
Run Code Online (Sandbox Code Playgroud)
RemoteHost主机生成的 ssh 路径如下:
interactive ssh <= stdio => ProxyCommand's ssh <= network => JumpHost's sshd <= stdio => netcat <= network => RemoteHost
Run Code Online (Sandbox Code Playgroud)
另请参阅: https: //www.cyberciti.biz/faq/linux-unix-ssh-proxycommand-passing-through-one-host-gateway-server/
小智 11
Delete '~/.vscode-server' folder on your server, and try reconnect.
Run Code Online (Sandbox Code Playgroud)
不确定 Debian 服务器,但这适用于 Ubuntu 18.04
[13:19:04.227] > channel 3: open failed: administratively prohibited: open failed
Run Code Online (Sandbox Code Playgroud)
The remote server that you're connecting to is refusing to perform port forwards for you. Assuming the remote server is OpenSSH, there are two places on the remote server where this might be configured:
| 归档时间: |
|
| 查看次数: |
12841 次 |
| 最近记录: |