What are the valid reasons why you need to use SSH on a shared server?
feedback
|
migrated from stackoverflow.com May 5 '10 at 5:06
This question came from our site for professional and enthusiast programmers.
|
I've never heard anyone lamenting encrypting their login data. SSH encrypts login-data as well as all traffic, so there's no disadvantage to using it; failing to do so gives anyone with access to the network's traffic access to your login data. | |||||
feedback
|
|
Personally, I like to have the ability to set up a git repository to use for my web apps instead of that hideous other thing... what do you guys call it? Oh, FTP. Another use: setting up crontab for daily maintenance tasks. | |||
|
feedback
|
And the list goes on and on. You need SSH access if you're doing anything beyond the basic FTP php files to a folder. | ||||
|
feedback
|
|
The other alternative to ssh is telnet which, by default, does not encrypt the network traffic sent over the connection and is thus vulnerable to packet sniffing. So it is better to use ssh for remote logins. | |||||
feedback
|