Securing Your Asterisk Server, Part 2
Why Remote Administration?

Carla Schroder
Wednesday, July 26, 2006 11:26:39 AM
If you're wondering why you can't just sit down at your Asterisk server to do all your command-line chores, the answer is you can. So, if you don't need SSH access, you should turn it off entirely. Use the chkconfig command to do this:
# /sbin/chkconfig --del sshd
This doesn't turn off a running SSH session, but only prevents it from starting up at boot, so you need to shut it down:
# /etc/init.d/sshd stop
Next: Securing AMP Traffic »