我使用带有 Remote-SSH 扩展的 Visual-Studio-Code,我不想在登录后多次进行身份验证。所以我用 ssh_config 搜索 ControlMater 选项来设置。
连接后,我收到以下错误消息。
无法连接到 Leo-OA:无法访问或无法访问 Linux x86_64(packet_write_poll:连接到 UNKNOWN 端口 -1:权限被拒绝)
我的环境:
Client:
Visual Studio Code 1.35 Stable
Windows 10 1803
Server:
Ubuntu 16.04 LTS
下面是我的设置文件
# Read more about SSH config files: https://linux.die.net/man/5/ssh_config
Host STONE-OA
HostName 10.32.21.123
User rock
Host Leo-OA
HostName 10.32.21.123
User root
Port 60001
Host *
ControlMaster auto
ControlPath ~/.ssh/sockets/%r@%h-%p
ControlPersist 600
我想知道主要问题是什么以及如何解决。谢谢大家。