通过ssh隧道安全访问(如防火墙过滤)远程服务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过ssh隧道安全访问(如防火墙过滤)远程服务相关的知识,希望对你有一定的参考价值。

1. Allows encryption between client and server
2. Bypasses filtered port, if any on the standard port for the given service.
  1. # bind mysql standard port (3306) to given port (here: 8000) on localhost
  2.  
  3. ssh -N user@host -L 8000/127.0.0.1/3306
  4.  
  5. # bind vnc standard port (5900) to given port (here 8001) on localhost
  6.  
  7. ssh -N user@host -L 8001/127.0.0.1/5900

以上是关于通过ssh隧道安全访问(如防火墙过滤)远程服务的主要内容,如果未能解决你的问题,请参考以下文章

[原创]SSH 隧道转发

通过 SSH 隧道访问 SQL Server

将 ssh 隧道反向访问公司防火墙后面的系统的最佳方法是啥?

通过 JSch 建立 SSH 隧道

SSH 通过隧道访问远程客户端

ssh隧道 学习总结