通过 SSH 从 EC2 进入 Linux 机器

通过 SSH 从 EC2 进入 Linux 机器

我似乎无法从我的 ubuntu EC2 服务器通过 SSH 连接到我的工作 Linux 机器。从我的工作 Linux 机器,我可以通过以下方式通过 SSH 连接到我自己 ssh -p <my listening ssh port> <user>@<my ip>

同样的命令在我的 EC2 服务器上不起作用。使用详细选项时,我看到以下消息:

Applying options for *
ssh_connect: needpriv 0
Connecting to <work ip> port< my ssh port>

在我的 Linux 机器上,我使用以下命令检查开放端口netstat -a

Proto | Recv-Q | Send-Q | Local Address | Foreign Address | State       
tcp | 0 | 0 *:<my ssh port> | *:* | LISTEN    

一切似乎都很好。我尝试在 /etc/ssh/sshd_config 中更改我的工作 ssh 端口,但没有成功。EC2 是否需要额外操作?

相关内容