Ubuntu启动SSH远程管理功能
作者:互联网
运用SSH功能远程管理Linux
-
安装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
成功开启SSH服务,利用Putty软件实现远程管理Linux
标签:openssh,sudo,systemctl,ssh,远程管理,Ubuntu,SSH 来源: https://blog.csdn.net/Jarsionge_Chen/article/details/122069714