Install To install the openssh-server, you need to install the openssh-server package: sudo dnf install -y openssh-server; Start To start the sshd daemon (openssh-server) in the current session: sudo systemctl start sshd.service; Stop To stop the active (if any) sshd daemon in the current session: sudo systemctl stop sshd.service; Enable…
Recently, we've setup an Ubuntu server behind CloudFlare that needed to listen for SSH connections. Unfortunately, CloudFlare does not allow connections to the default SSH port which is 22. So, to achieve what it was needed we either had to change the port that the SSH service was listening to…