To enable SSH login for a root user on Debian Linux system you need to first configure SSH server. Open /etc/ssh/sshd_config and change the following line: FROM: PermitRootLogin without-password TO: PermitRootLogin yes
/etc/init.d/ssh restart
oppure service sshd restart Nello stesso file di configurazione si può modificare la porta standard da 22 a quello che si desidera (superiore alla 1024) Poi per connettersi basta dare il comando ssh classico con le dovute options:
ssh USER@IP -p PORT