Created
August 31, 2013 10:28
-
-
Save jbonney/6397413 to your computer and use it in GitHub Desktop.
SSH tips and tricks from http://www.itworld.com/it-managementstrategy/261500/16-ultimate-openssh-hacks?page=0,2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Tunnel: allow to use localhost:2525 as if it was server.com:25 | |
| ssh -f user@server.com -L 2525:server.com:25 -N | |
| # SOCKS Proxy: configure web browser to use SOCKS proxy on localhost:8080 | |
| ssh -D 8080 -C user@server.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment