Allowing root login over SSH is commonly considered a poor security practice throughout the tech industry. Instead, you could perform sensitive administrative tasks by connecting with a user account and executing commands using sudo.
Disable Root Access
View the contents of the SSH configuration file using the following command.
cat /etc/ssh/sshd_config
In this file, you will find the following line:
#PermitRootLogin no
Uncomment the line using your desired editor. Then, restart the SSH service for the changes to take effect.
/etc/init.d/ssh restart
Please note that login to the root account will still be possible via the AKLWEB HOST console.
Restrict Root Access By IP Address
As previously mentioned, a good security practice is not to allow root access via SSH at all. However, if root access is necessary, you can restrict it by IP address.
To restrict root access to a specific IP address add the following line to the sshd_config file (substitute xxx.xxx.xxx.xxx for the IP address).
AllowUsers root@xxx.xxx.xxx.xxx
Restart the SSH service for the changes to take effect.
/etc/init.d/ssh restart