我正在运行 OpenSSH_7.6p1,我发现 ProxyJump 功能非常方便(例如 -J )
是否可以绑定本地主机上映射到可通过跳转访问的远程 ssh 会话的端口?
例如我想:
ssh -J user1@jump1,user2@jump2:port2 remote_host@username
然后做
telnet localhost <specific_port>
为了访问 remote_host
答案1
-L
中的本地端口转发选项ssh
应与跳转配合使用。附加以下选项
-L localhost:<specific_port>:localhost:<specific_port_on_remote_machine>