openEuler关闭防火墙以及vscode远程SSH链接
本文讨论了在使用VSCode Remote SSH连接openEuler虚拟机时遇到的问题。作者尝试了关闭防火墙和修改SSH配置来解决问题,但最终放弃了。对于想要使用VSCode连接SSH的读者,可以参考文章提供的方法和注意事项。
目前 vscode ssh 链接 openEuler 始终连不上。openEuler 是安装在 Parallels Desktop 里面的。
暂时放弃。
# 查看目前的防火墙状态
systemctl status firewalld
1
# 关闭防火墙
sudo service firewalld stop
1
# SSH
VSCode Remote SSH
需要在 VSCode 中安装插件 Remote SSH
或者直接安装 Remote Development
,这样就可以在 VSCode 中使用 SSH 了。
修改 openEuler 虚拟机内部的 /etc/ssh/sshd_config
,启用如下设置:
AllowAgentForwarding yes
AllowTcpForwarding yes
GatewayPorts yes
1
2
3
2
3
刷新 sshd 服务状态:
sudo systemctl restart sshd.service
1
编辑 (opens new window)
上次更新: 2024/06/13, 11:48:21