如何使用 Slave ppp0 VPN + 2nd VPN 进行分割隧道?

如何使用 Slave ppp0 VPN + 2nd VPN 进行分割隧道?

网络芬兰(互联网)-PC(瑞典)-Uni(瑞典)。 Uni IP 是固定的。芬兰(互联网)通过 3g-4 连接获得。我需要使用 VPN 提供商来更改我的国家/地区,但 VPN 提供商提供ppp0,不提供分割隧道,也不提供公共 IP。

  1. 通过芬兰 Telia-Sonera 的移动连接获得互联网。
  2. 第一个 VPN 连接允许访问机构资料...但它需要位于瑞典的本地 IP。我给他们我的用户名+密码,但他们的本地 IP 具有额外的安全性。
  3. 将本地 IP 从芬兰更改为瑞典需要第二个 VPN(“从属”),但当前的 VPN 提供商仅提供ppp0,没有动态 IP,也没有分割隧道。
    • (2-3)倍数,因为有多个机构

目标

  • 移动网络。我正在使用位于芬兰的 Telia-Sonera。我不知道你是否可以动态更改运营商的服务器位置。 TODO 向运营商询问。
  • VPN 提供商。找到一个提供动态IP和/或分裂隧道
  • 软件。进行分割隧道。 TODO 怎么做这个?

尝试访问分割隧道失败

  1. VPN - Tor(NordVPN Tor 瑞典)。这是行不通的; uni 连接被拒绝。
  2. ...

系统

问题:VPN 提供商仅提供私人访问ppp0。为此我联系了几家 VPN 提供商。我当前的 VPN 提供商是 NordVPN。他们关于同时拥有多个 VPN 连接的回答,我不相信,因为我认为他们只是在谈论他们的 NordVPN 应用程序,而且他们的技术熟练程度普遍较低

不幸的是,同一台计算机上不可能同时激活多个 VPN 连接。 - - 不,您无法更改分配给您的子网详细信息。 - - NordVPN 通过 VPN 路由您的整个互联网流量,因此两个 VPN 连接的唯一选择是在一台虚拟机上设置一个 VPN 连接。 - - 不,我们不支持分割隧道。

但如果任务需要,我准备更换我的 VPN 提供商。我不确定你是否可以通过软件进行隧道分割。

提议:在芬兰“内部”已建立的连接之上构建第二层 VPN。使用 执行此操作ifconfigopenvpn而不是使用“大众市场 GUI”。 (这里

OS X El-Capitan Tunnelblick 是否支持两个 VPN 连接?

讨论了该线程的一些 OS X 部分这里关于如何使用两个VPN连接的唯一子网? 这是 Tunnelblick 的演示文件,config.ovpn没有任何更改;您只需将其拖放到 Tunnelblick 的 GUI 菜单栏即可安装

##############################################
# Sample client-side OpenVPN 2.0 config file #
# for connecting to multi-client server.     #
#                                            #
# This configuration can be used by multiple #
# clients, however each client should have   #
# its own cert and key files.                #
#                                            #
# On Windows, you might want to rename this  #
# file so it has a .ovpn extension           #
##############################################

# Specify that we are a client and that we
# will be pulling certain config file directives
# from the server.
client

# Use the same setting as you are using on
# the server.
# On most systems, the VPN will not function
# unless you partially or fully disable
# the firewall for the TUN/TAP interface.
;dev tap
dev tun

# Windows needs the TAP-Win32 adapter name
# from the Network Connections panel
# if you have more than one.  On XP SP2,
# you may need to disable the firewall
# for the TAP adapter.
;dev-node MyTap

# Are we connecting to a TCP or
# UDP server?  Use the same setting as
# on the server.
;proto tcp
proto udp

# The hostname/IP and port of the server.
# You can have multiple remote entries
# to load balance between the servers.
remote my-server-1 1194
;remote my-server-2 1194

# Choose a random host from the remote
# list for load-balancing.  Otherwise
# try hosts in the order specified.
;remote-random

# Keep trying indefinitely to resolve the
# host name of the OpenVPN server.  Very useful
# on machines which are not permanently connected
# to the internet such as laptops.
resolv-retry infinite

# Most clients don't need to bind to
# a specific local port number.
nobind

# Downgrade privileges after initialization (non-Windows only)
;user nobody
;group nobody

# Try to preserve some state across restarts.
persist-key
persist-tun

# If you are connecting through an
# HTTP proxy to reach the actual OpenVPN
# server, put the proxy server/IP and
# port number here.  See the man page
# if your proxy server requires
# authentication.
;http-proxy-retry # retry on connection failures
;http-proxy [proxy server] [proxy port #]

# Wireless networks often produce a lot
# of duplicate packets.  Set this flag
# to silence duplicate packet warnings.
;mute-replay-warnings

# SSL/TLS parms.
# See the server config file for more
# description.  It's best to use
# a separate .crt/.key file pair
# for each client.  A single ca
# file can be used for all clients.
ca ca.crt
cert client.crt
key client.key

# Verify server certificate by checking
# that the certicate has the nsCertType
# field set to "server".  This is an
# important precaution to protect against
# a potential attack discussed here:
#  http://openvpn.net/howto.html#mitm
#
# To use this feature, you will need to generate
# your server certificates with the nsCertType
# field set to "server".  The build-key-server
# script in the easy-rsa folder will do this.
;ns-cert-type server

# If a tls-auth key is used on the server
# then every client must also have the key.
;tls-auth ta.key 1

# Select a cryptographic cipher.
# If the cipher option is used on the server
# then you must also specify it here.
;cipher x

# Enable compression on the VPN link.
# Don't enable this unless it is also
# enabled in the server config file.
comp-lzo

# Set log file verbosity.
verb 3

# Silence repeating messages
;mute 20

乌班图16.04

如果需要的话我也可以在这里开始测试。如果上述 OpenVPN 解决方案能够在两个系统中运行,那就太好了。


如何使用 OpenVPN 建立这样的隧道?

答案1

这个设置没有什么特别错误的地方。首先,您将使用 PPTP 客户端连接到瑞典的 VPN 提供商。然后通过该连接路由所有流量。当它工作时,启动第二个VPN客户端——我相信你说它是OpenVPN?

如果您使用不同的 VPN 协议,这将更容易跟踪,但并没有本质上的不同。但需要注意的是,PPTP 客户端会有所不同,具体取决于您使用的是 Linux 还是 BSD。

NAT 表和路由的棘手部分仅在瑞典 VPN 的服务器上处理。如果您使用的是外部提供商,那么我们已经为您处理好了。

答案2

我还没有设法用莱德的答案完成解决方案。我目前的理解是,您只能按照描述使用虚拟机才能达到目标这里关于如何为主 VPN 模仿从属 VPN 的位置?经过克拉诺马斯

  1. 创建一个新的 VM 外壳并将其附加到此 NAT 网络。
  2. 在此虚拟机中安装熟悉的操作系统(例如 OS X 10.9-10.11)
  3. 在系统偏好设置 -> 网络的 VPN 中,在虚拟机中设置与瑞典学校 VPN 服务器的 VPN 连接,关闭虚拟机并退出管理程序。
  4. 在非虚拟化操作系统中连接到 NordVPN
  5. 启动虚拟机
  6. 在虚拟化操作系统中连接到学校的 VPN 服务器。

相关内容