Windows 7 - OpenVPN - 使用第二个网络接口

Windows 7 - OpenVPN - 使用第二个网络接口

是否可以使用不同的网络接口配置 Windows 7 连接到 OpenVPN 服务器。

我的设置:1. LAN -> 公共 IP 2. LAN -> 公共 IP 3. Tun -> 私有 VPN

现在我希望 lan1 用于正常浏览,lan2 用于隧道。

这可以配置吗?

答案1

VPN 网关的路由与其他所有东西一样。您只需添加指向 VPN 网关的路由,引出首选 NIC。

route add <VPN gateway IP> mask 255.255.255.255 <default gateway IP> metric 1 if <interface number>

需要<default gateway IP>是所讨论 NIC 的本地默认网关,您<interface number>可以使用 获取。当无法从其他 NIC 访问默认网关时,route print您可以省略。if <interface number>

相关内容