透過 IPv6 連接時 OpenVPN 無連接

透過 IPv6 連接時 OpenVPN 無連接

我在 Ubuntu 14.04 VPS 上安裝了具有 IPv6 存取權限的 OpenVPN。我希望有一個正確的雙堆疊配置工作。我可以連接到我的 OpenVPN 伺服器的公共 IPv4 位址:取得分配給我的私人 IPv4 和公用 IPv6,並透過 VPN 實現完整的 IPv4 和 IPv6 連線(透過檢查測試ipv6.com)。

問題是,如果我連接到伺服器的 IPv6 位址(我的 ISP 連接上有 IPv6),我能夠成功連接到它並獲得分配的 IPv4 和 IPv6 位址,但無法獲得任何類型的連接,甚至無法 ping 通任何內部或外部IP 或主機,包括隧道中伺服器的私有IPv4 位址。我已在 /etc/sysctl.conf 中啟用 IPv4 和 IPv6 轉送。

我不確定發生了什麼事。非常感謝您的幫忙。

謝謝。

IP資訊(屏蔽):

  • VPS IPv4 位址(設備:eth0):107.xxx.xxx.xxx
  • VPS IPv6 子網路(設備:he-ipv6):2001:xxx:xxxx::/48
  • OpenVPN IPv4 子網路:10.8.0.0/24
  • OpenVPN IPv4 私有位址:10.8.0.1
  • OpenVPN IPv4 用戶端位址:10.8.0.2、10.8.0.3、[...]
  • OpenVPN IPv6 子網路:2001:xxx:xxxx:xxx::/64
  • OpenVPN IPv6 伺服器位址:2001:xxx:xxxx:xxx::1/64
  • OpenVPN IPv6 用戶端位址:2001:xxx:xxxx:xxx::1000/64、2001:xxx:xxxx:xxx::1001/64、[...]

/etc/openvpn/server.conf內容:

port 443
proto tcp6
dev tun
sndbuf 0
rcvbuf 0
ca ca.crt
cert server.crt
key server.key
dh dh.pem
tls-auth ta.key 0
topology subnet
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option DNS 8.8.8.8"
push "dhcp-option DNS 8.8.4.4"
keepalive 10 120
cipher AES-128-CBC
comp-lzo
user nobody
group nogroup
persist-key
persist-tun
status openvpn-status.log
verb 3
crl-verify crl.pem
tun-ipv6
push tun-ipv6
server-ipv6 2001:xxx:xxxx:xxx::/64
push "redirect-gateway-ipv6 def1 bypass-dhcp-ipv6"
push "route-ipv6 2001:xxx:xxxx:xxx::/64"
push "route-ipv6 2000::/3"

客戶端.ovpn內容:

client
dev tun
sndbuf 0
rcvbuf 0
;remote 107.xxx.xxx.xxx 443 tcp # IPv4 (disabled; full IPv4 and IPv6 connectivity when connected)
remote 2001:xxx:xxxx:xxx::1 443 tcp6 # IPv6 (enabled; no connectivity when connected)
resolv-retry infinite
nobind
persist-key
persist-tun
remote-cert-tls server
cipher AES-128-CBC
comp-lzo
setenv opt block-outside-dns
key-direction 1
verb 3
<ca>
</ca>
<cert>
</cert>
<key>
</key>
<tls-auth>
</tls-auth>

答案1

在我意識到我可以在我的 Android 手機上使用「 Android 版 OpenVPN 應用程式運行相同的 2.4 版本。我運行的是 2.3.10 版本。

解決了。

相關內容