无法在 Windows Putty 上连接 Ubuntu Linux

无法在 Windows Putty 上连接 Ubuntu Linux

我无法连接到 Windows Putty 机器上的 ubuntu Linux。我已经从 ifconfig 获取了 ip,并尝试使用相同的 ip 通过 Putty 登录。我收到网络拒绝警告。有人可以帮我解决这个问题吗?

在此处输入图片描述

答案1

openssh-server在 Ubuntu 上安装软件包:

sudo tasksel install openssh-server

或者:

sudo apt install openssh-server 

检查服务状态:

sudo systemctl status ssh.service

或者

sudo service ssh status

或者

sudo systemctl status sshd.service

要启动服务,只需将上述命令替换statusstart

允许port 22通过ufw

sudo ufw allow ssh

相关内容