This article will guide you on how to #SSH remote Linux servers using #OpenSSH utility. We have also discussed some basic configurations that you may find useful when connecting via SSH. Now you can easily manage remote #Linux servers for administration and troubleshooting.To Enable #root login over SSH:1. As root, edit the sshd_config file in /etc/ssh/sshd_config : nano /etc/ssh/sshd_config.2. Add a line in the Authentication section of the file that says PermitRootLogin yes.3. Save the updated /etc/ssh/sshd_config file.4. Restart the SSH server: service sshd restart.