Created
December 26, 2019 08:23
-
-
Save rdyv/16f1b6cee2d4ab5ccf4170a4c1351364 to your computer and use it in GitHub Desktop.
SSH Tunneling
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
# Local port forwarding | |
# Forward all the requests on localhost:8000 to restricted-domain.com:80 via remote-server.com | |
ssh -L 8000:restricted-domain.com:80 [email protected] | |
# Remote port forwarding | |
# Forward all requests to remote-server.com:8000 to your localhost:3000 | |
ssh -R 8000:localhost:3000 [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment