Skip to content

SSH Install and Setup

  1. Run the following command to install OpenSSH Server:
sudo apt install openssh-server
  1. Enable the SSH service:
sudo systemctl enable ssh
  1. Allow SSH traffic (port 22) through the built-in firewall:
sudo ufw allow ssh