安装openssh-server
sudo apt update
sudo apt install openssh-server
SSH的启动、关闭、状态命令 一般情况下安装openssh-server后会自动打开SSH 启动命令
sudo systemctl start ssh
关闭命令
sudo systemctl stop ssh
状态命令
sudo systemctl status ssh
UFW的防火墙配置工具打开SSH端口
sudo ufw allow ssh