Last active
March 23, 2023 01:11
-
-
Save petergi/ebfd3ce72d5183800906d9d41b263f17 to your computer and use it in GitHub Desktop.
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
| ```bash | |
| # To ssh via pem file (which normally needs 0600 permissions): | |
| ssh -i <pemfile> <user>@<host> | |
| # To connect on a non-standard port: | |
| ssh -p <port> <user>@<host> | |
| # To connect and forward the authentication agent: | |
| ssh -A <user>@<host> | |
| # To execute a command on a remote server: | |
| ssh -t <user>@<host> 'the-remote-command' | |
| # To connect to a host with a specific key exchange algorithm: | |
| # Full list of available algorithms : man ssh_config | |
| ssh -oKeXAlgorithms=+diffie-hellman-group-exchange-sha1 <user>@<server> | |
| # To tunnel an x session over SSH: | |
| ssh -X <user>@<host> | |
| # Redirect traffic with a tunnel between local host (port 8080) and a remote | |
| # host (remote.example.com:5000) through a proxy (personal.server.com): | |
| ssh -f -L 8080:remote.example.com:5000 [email protected] -N | |
| # To launch a specific x application over SSH: | |
| ssh -X -t <user>@<host> 'chromium-browser' | |
| # To create a SOCKS proxy on localhost and <port>: | |
| ssh -qND <port> <user>@<host> | |
| # To tunnel an ssh session over the SOCKS proxy on localhost and port 9999: | |
| ssh -o "ProxyCommand nc -x 127.0.0.1:9999 -X 4 %h %p" <user>@<host> | |
| # -X use an xsession, -C compress data, "-c blowfish" use the encryption blowfish: | |
| ssh <user>@<host> -C -c blowfish -X | |
| # For more information, see: | |
| # http://unix.stackexchange.com/q/12755/44856 | |
| # To copy files and folders through ssh from remote host to pwd with tar.gz | |
| # compression when there is no rsync command available: | |
| ssh <user>@<host> "cd /var/www/Shared/; tar zcf - asset1 asset2" | tar zxf - | |
| # To mount folder/filesystem through SSH | |
| # Install SSHFS from https://github.com/libfuse/sshfs | |
| # Will allow you to mount a folder securely over a network. | |
| sshfs <user>@<host>:/path/to/folder /path/to/mount/point | |
| # Emacs can read file through SSH | |
| # Doc: http://www.gnu.org/software/emacs/manual/html_node/emacs/Remote-Files.html | |
| emacs /ssh:<user>@<host>:<file> | |
| ``` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment