ssh_config 在 ngrok 下不起作用

ssh_config 在 ngrok 下不起作用

我正在尝试通过 ssh 连接到我的家庭服务器恩格罗克,使用默认ssh_config和默认sshd_config设置,所以我尝试:

ssh -vT localhost

然后注意到获取到的认证方法是:

debug1: Authentications that can continue: publickey,password

所以我输入密码就可以了!!

但是当我尝试连接 ngrok 时

ssh -vT [email protected]

得到

debug1: Authentications that can continue: publickey

并且失败,即使设置公钥不起作用,由于某种原因,当尝试连接不同于本地主机的主机时,配置会发生变化

答案1

为了使其工作,我必须添加 ngrok 提供给我的端口号,因此我尝试:

ssh -p 14592 -v [email protected]

然后它会要求输入密码并且可以成功登录。

相关内容