w***a 发帖数: 313 | 1 以前用过,后来忘了怎么用的了。
静态的好办,就是你在A(linux)机上,用ssh到一个jumpbox机器上后,你想访问B的
1521数据库端口。
自然你可以
$ssh -L 11521:B_IP:1521 jumpbox_IP , 然后就可以在本机A上用本地端口11521来访
问B的1521了。
动态的的是,直接ssh到jumpbox, 然后按`什么的,然后L 11521:B:1521就建立了
Tunnel, 一次类推可以建立到C,D。。。等等主机的tunnel,非常方便,我好久没用了
,忘了组合键了。
谁记得怎么用的?告诉一下,谢先。 |
z**r 发帖数: 17771 | 2 还能这样动态?知道了告诉大家一声,俺发包子
【在 w***a 的大作中提到】 : 以前用过,后来忘了怎么用的了。 : 静态的好办,就是你在A(linux)机上,用ssh到一个jumpbox机器上后,你想访问B的 : 1521数据库端口。 : 自然你可以 : $ssh -L 11521:B_IP:1521 jumpbox_IP , 然后就可以在本机A上用本地端口11521来访 : 问B的1521了。 : 动态的的是,直接ssh到jumpbox, 然后按`什么的,然后L 11521:B:1521就建立了 : Tunnel, 一次类推可以建立到C,D。。。等等主机的tunnel,非常方便,我好久没用了 : ,忘了组合键了。 : 谁记得怎么用的?告诉一下,谢先。
|
m**k 发帖数: 290 | 3 ssh escape character is "~"
$ ~?
Supported escape sequences:
~. - terminate connection (and any multiplexed sessions)
~B - send a BREAK to the remote system
~C - open a command line
~R - Request rekey (SSH protocol 2 only)
~^Z - suspend ssh
~# - list forwarded connections
~& - background ssh (when waiting for connections to terminate)
~? - this message
~~ - send the escape character by typing it twice
(Note that escapes are only recognized immediately after newline.)
$ ~C
ssh> help
Commands:
-L[bind_address:]port:host:hostport Request local forward
-R[bind_address:]port:host:hostport Request remote forward
-D[bind_address:]port Request dynamic forward
-KR[bind_address:]port Cancel remote forward
【在 z**r 的大作中提到】 : 还能这样动态?知道了告诉大家一声,俺发包子
|
j*a 发帖数: 14423 | 4 有意思。thankx
【在 m**k 的大作中提到】 : ssh escape character is "~" : $ ~? : Supported escape sequences: : ~. - terminate connection (and any multiplexed sessions) : ~B - send a BREAK to the remote system : ~C - open a command line : ~R - Request rekey (SSH protocol 2 only) : ~^Z - suspend ssh : ~# - list forwarded connections : ~& - background ssh (when waiting for connections to terminate)
|
w***a 发帖数: 313 | 5 握手!!!
就是这个~(shift`) , 好久没用记差了。我一直记得是`,
搞定了,我给你5个包子! 版主不妨也给几个~ 和和。
这个的确非常有用,因为prod机子基本都需要用jumpbox, 如果没有这个动态fowarding
, 每次要重新建立一个链接非常麻烦。
【在 m**k 的大作中提到】 : ssh escape character is "~" : $ ~? : Supported escape sequences: : ~. - terminate connection (and any multiplexed sessions) : ~B - send a BREAK to the remote system : ~C - open a command line : ~R - Request rekey (SSH protocol 2 only) : ~^Z - suspend ssh : ~# - list forwarded connections : ~& - background ssh (when waiting for connections to terminate)
|
w***a 发帖数: 313 | 6 等包子呢:)
【在 z**r 的大作中提到】 : 还能这样动态?知道了告诉大家一声,俺发包子
|
w****g 发帖数: 206 | 7 mark!
【在 m**k 的大作中提到】 : ssh escape character is "~" : $ ~? : Supported escape sequences: : ~. - terminate connection (and any multiplexed sessions) : ~B - send a BREAK to the remote system : ~C - open a command line : ~R - Request rekey (SSH protocol 2 only) : ~^Z - suspend ssh : ~# - list forwarded connections : ~& - background ssh (when waiting for connections to terminate)
|