Ubuntu启动SSH远程管理功能

运用SSH功能远程管理Linux

  1. 安装openssh-server

    sudo apt update
    
    sudo apt install openssh-server
    
  2. SSH的启动、关闭、状态命令
    一般情况下安装openssh-server后会自动打开SSH
    启动命令

    sudo systemctl start ssh
    

    关闭命令

    sudo systemctl stop ssh
    

    状态命令

    sudo systemctl status ssh
    
  3. UFW的防火墙配置工具打开SSH端口

    sudo ufw allow ssh
    

成功开启SSH服务,利用Putty软件实现远程管理Linux

上一篇:使用服务器远程调试代码:内网Windows主机+内网Windows服务器+ngrok内网穿透+openssh连接+vscode调试代码


下一篇:升级openssh