SSH 客户端连接无法正常工作到远程服务器无法正常工作

SSH 客户端连接无法正常工作到远程服务器无法正常工作

我无法从我的一台服务器连接到其他计算机。

以下是详细输出(IP、域、端口被屏蔽。OpenSSH 版本信息已删除):

$ ssh -vvv [email protected] -p yyyy
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to example.com [xxx.xxx.xxx.xxx] port yyyy.
ssh: connect to host example.com port yyyy: Connection timed out

我最初做的是尝试克隆我们的 git 存储库之一。然后我发现这个系统没有发出 SSH 连接。

我尝试通过 ssh 连接到不同的服务器。所有这些服务器都可以从我的本地计算机完美连接。所以这意味着问题出在这个特定的系统上。

是否有任何步骤可以诊断 SSH 连接无法从系统发出的原因?是否有任何特定配置阻止与远程计算机建立 SSH 连接?

我检查了 /etc/ssh/ssh_configure,其中只有这些配置处于活动状态:

Host *
        GSSAPIAuthentication yes
# If this option is set to yes then remote X11 clients will have full access
# to the original X11 display. As virtually no X11 client supports the untrusted
# mode correctly we set this to yes.
        ForwardX11Trusted yes
# Send locale-related environment variables
        SendEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES 
        SendEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT 
        SendEnv LC_IDENTIFICATION LC_ALL LANGUAGE
        SendEnv XMODIFIERS

相关内容