/ Published in: Bash
- Allows encryption between client and server
- Bypasses filtered port, if any on the standard port for the given service.
Expand |
Embed | Plain Text
# bind mysql standard port (3306) to given port (here: 8000) on localhost ssh -N user@host -L 8000/127.0.0.1/3306 # bind vnc standard port (5900) to given port (here 8001) on localhost ssh -N user@host -L 8001/127.0.0.1/5900
You need to login to post a comment.
