Last active
May 11, 2018 16:03
-
-
Save brunneis/a7c768a9b96274384f452a51b771e030 to your computer and use it in GitHub Desktop.
Create SSH proxy (SOCKS)
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
# f -> Requests ssh to go to background just before command execution | |
# C -> Requests compression of all data | |
# q -> Quiet mode | |
# N -> Do not execute a remote command | |
# p -> Port to connect to on the remote host | |
sudo ssh -D 1984 -f -C -q -N -p 22 username@servername |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment