OpenSSH Server

OpenSSH Server #

  1. Install the OpenSSH server
    sudo apt update
    sudo apt install ssh
    
  2. Start and enable the SSH service
    sudo systemctl start ssh
    sudo systemctl enable ssh
    sudo systemctl status ssh
    
  3. SSH configuration
    sudo vi /etc/ssh/sshd_config
    sudo systemctl restart ssh