通过单个 IP 的多个 VPN 连接(多线程)?

发布于 2024-11-18 03:31:20 字数 42 浏览 2 评论 0原文

有没有办法让 C# 中的每个线程连接到单个 VPN? 如果是,怎么办?

Is there a way to make each thread in C# to connect to single VPN?
If yes, how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青丝拂面 2024-11-25 03:31:20

VPN 不是基于线程的,甚至不是基于进程的。它们是模拟网络连接的低级驱动程序。

理论上,您可以同时启动多个 VPN,但它们必须全部配置为允许本地网络,并且每个 VPN 都将路由适当的地址。实际上,由于安全问题,大多数 VPN 配置文件都禁止本地​​网络访问(以及其他 VPN 访问)。此外,大多数 VPN 软件与其他 VPN 软件发生冲突。

VPNs are not thread based or really even process based. They're low level drivers that emulate network connections.

Theoretically you can initiate multiple VPNs at once but they must all be configured to allow local network and each will route the appropriate addresses. In practice, most VPN profiles prohibit local network access (and thus other VPN access) due to security ramifications. Also, most VPN software conflicts with other VPN software.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文