Ubuntu 20.04 上的 ssh 无法正常工作

Ubuntu 20.04 上的 ssh 无法正常工作

我想从我的 Windows 10 通过 ssh 连接到 ubuntu 服务器。

我是安装 ssh 的新手。

我按照教程操作,但是没有效果。我这里遗漏了什么?

任何帮助都将不胜感激。

顺便说一句:ubuntu 上没有防火墙。

我在 ubuntu 上安装了 ssh:

sudo apt update
sudo apt install openssh-server
sudo ufw allow ssh

我检查了 IP 地址,使用以下命令: wget -qO- ifconfig.co

我检查了状态:

sudo service ssh status
● ssh.service - OpenBSD Secure Shell server
     Loaded: loaded (/lib/systemd/system/ssh.service; enabled; vendor preset: enabled)
     Active: active (running) since Tue 2022-03-08 18:07:03 IST; 23min ago
       Docs: man:sshd(8)
             man:sshd_config(5)
   Main PID: 119478 (sshd)
      Tasks: 1 (limit: 38400)
     Memory: 1.0M
     CGroup: /system.slice/ssh.service
             └─119478 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups

Mar 08 18:07:03 dianne-H270-HD3 systemd[1]: Stopping OpenBSD Secure Shell server...
Mar 08 18:07:03 dianne-H270-HD3 systemd[1]: ssh.service: Succeeded.
Mar 08 18:07:03 dianne-H270-HD3 systemd[1]: Stopped OpenBSD Secure Shell server.
Mar 08 18:07:03 dianne-H270-HD3 systemd[1]: Starting OpenBSD Secure Shell server...
Mar 08 18:07:03 dianne-H270-HD3 sshd[119478]: Server listening on 0.0.0.0 port 22.
Mar 08 18:07:03 dianne-H270-HD3 sshd[119478]: Server listening on :: port 22.
Mar 08 18:07:03 dianne-H270-HD3 systemd[1]: Started OpenBSD Secure Shell server.

但我无法通过 ssh 退出 ubuntu 或进入 ubuntu。我从 windows 获得 ssh: connect to host xxx port 22: Connection timed out

和 ubuntu 一样

ssh: connect to host yyy port 22: Connection timed out

相关内容