User How-To'sNavigationUser loginSpam?See spam posts on this site? If so, please don't reply to the spam! Instead, just report the URL to the webmaster. |
Basic SSHJust basic shh information. Secure SHell allows a user to securely login to a remote machine from a terminal and execute commands as if sitting at the rhost's keyboard. To login to a remote machine: ////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////// The connection data is encrypted so ssh can be used over an insecure network (read the internet). You can of course be more secure by not running the sshd at all if you never plan to use it or not allowing password only login's (by using keys). Or setting up your firewall to only accept connections on that port/protocol from specific hosts, MAC addresses or IP address that you would like to use ssh from. For sshd exposed to the internet: 1. Use a non standard port since port 22 is obviously targeted. To see if ssh is running: 4036 ? 00:00:00 ssh-agent sshd is the daemon ////////////////////////////////////////////////////////////////////// *
|