Skip to content

SSH Install and Setup

  1. Run the following command to install OpenSSH Server:

    sudo apt install openssh-server
    
  2. Enable the SSH service:

    sudo systemctl enable ssh
    
  3. Allow SSH traffic (port 22) through the built-in firewall:

    sudo ufw allow ssh