通过ssh隧道安全访问(如防火墙过滤)远程服务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过ssh隧道安全访问(如防火墙过滤)远程服务相关的知识,希望对你有一定的参考价值。
1. Allows encryption between client and server2. Bypasses filtered port, if any on the standard port for the given service.
# 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
以上是关于通过ssh隧道安全访问(如防火墙过滤)远程服务的主要内容,如果未能解决你的问题,请参考以下文章