Posted On May 21, 2020

Lubuntu 20.04 – Enable SSH

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Lubuntu 20.04 – Enable SSH
# Install sshd
sudo apt install ssh -y
sudo systemctl enable --now ssh

# Configure firewall to allow ssh
sudo ufw allow ssh

# Check firewall
ufw status verbose
# sudo ufw delete allow ssh # disallow ssh through firewall

# Configure ssh to enable root login - please make sure that root has a password
sudo sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config

# Set gracetime
sudo sed -i 's/#LoginGraceTime 2m/LoginGraceTime 2m/' /etc/ssh/sshd_config

# restart sshd
sudo systemctl restart sshd

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

CentOS 5: Installing XAMPP, and Gallery2

1. Install CentOS 5 - Do not install MySQL, Apache, and FTP - edit /etc/resolv.conf…

Installing VNC on Centos 5.3

Install VNC server package upon server setup, then run in include GNOME desktop environment: #…

Open VPN Client Configuration Fix

OpenVPN client works very well on Windows 7 machines. However, its Windows 10 and Linux…