SSH tricks
Posted by jpluimers on 2012/08/24
Recommended reading: SSH tricks
Quote:
SSH is a protocol for authenticating and encrypting remote shell sessions.
But, using SSH for just remote shell sessions ignores 90% of what it can do.
$ ssh home -L 80:reddit.com:80
This article covers less common SSH use cases, such as:
- using passwordless, key-based login;
- setting up local per-host configurations;
- exporting a local service through a firewall;
- accessing a remote service through a firewall;
- executing commands remotely from scripts;
- transfering files to/from remote machines;
- mounting a filesystem through SSH; and
- triggering admin scripts from a phone.
–jeroen
via: SSH tricks.
Leave a Reply