Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用 paramiko 来实现它。但我发现 paramiko 只能启动将 localhost:lport 重定向到 remoteip:rport 的隧道,就像“ssh -L”一样。
所以我想知道如何使用 paramiko 或使用其他库来实现它。
谢谢你的帮助。
与转发特定端口的-Lor选项不同,它为应用程序级端口转发建立SOCKS代理。-Rssh -D
-L
-R
ssh -D
假设这就是你想要的,那么根据这个答案,有几个 Python 模块可以实现 SOCKS 客户端/代理,例如PySocks和SocksiPy。不幸的是,我从未探索过这些选项中的任何一个,也不能保证其中任何一个。