jort
16th March 2005, 01:04 PM
Hello,
I'm trying to disable direct root login via SSH. There are lots of tutorials available via Google how to disable direct root login.
The tutorial:
1. SSH into your server as 'admin' and gain root access by su
2. Copy and paste this line to edit the file for SSH logins
pico -w /etc/ssh/sshd_config
3. Find the line
Protocol 2, 1
4. Uncomment it and change it to look like
Protocol 2
5. Next, find the line
PermitRootLogin yes
6. Uncomment it and make it look like PermitRootLogin no
7. Save the file Ctrl+X then Y then enter
8. Now you can restart SSH
/etc/rc.d/init.d/sshd restart
But when I open a shell (terminal) and type ssh -l jort MY-IP-ADDRESS, I get no response. What do I have to do?
I'm trying to disable direct root login via SSH. There are lots of tutorials available via Google how to disable direct root login.
The tutorial:
1. SSH into your server as 'admin' and gain root access by su
2. Copy and paste this line to edit the file for SSH logins
pico -w /etc/ssh/sshd_config
3. Find the line
Protocol 2, 1
4. Uncomment it and change it to look like
Protocol 2
5. Next, find the line
PermitRootLogin yes
6. Uncomment it and make it look like PermitRootLogin no
7. Save the file Ctrl+X then Y then enter
8. Now you can restart SSH
/etc/rc.d/init.d/sshd restart
But when I open a shell (terminal) and type ssh -l jort MY-IP-ADDRESS, I get no response. What do I have to do?