通过 linux jumphost 的 SSH 网关

SSH gateway throught linux jumphost

从具有 Windows 服务器 2019 的主机,您需要通过 http 和 rdp 连接到另一个网络上的主机。是否可以使用标准 Windows 工具通过可以访问目标网络的 ssh 网关建立连接?不是对一台主机,而是对子网上的所有主机。

批处理文件开始然后用户登录:

@echo off
Reg Add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /d socks=127.0.0.1:8888 /f
Reg Add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 00000001 /f
ssh -D 8888 %username%@ip.ssh.tun.nel