Skip to content

Instantly share code, notes, and snippets.

@luodin007
luodin007 / 高级 SSH 速查表.md
Last active April 14, 2018 11:03
高级 SSH 速查表 #ssh

所有人都知道 SSH 是一种远程登录工具,然而它也有许多其他用途。

创建一个 SOCKS 代理来浏览网页(也就是翻墙啦):

ssh -D <port> <remote_host>

设置 localhost: 作为你浏览器的代理

连接一个堡垒机后的 Windows RDP 主机:

ssh -L <port>:<target_host>:3389 <bastion_server>