web-dev-qa-db-ja.com

Ubuntu 15.10でのVPN DNSリークを修正

OpenVPNを介してCyber​​ghostを使用する場合、コンピューターは引き続きルーターのDNS設定(この場合はGoogle Public DNS)を使用します。 Ubuntu 15.04では、DNSリークなしでOpenVPNを使用できました。

この記事の後: http://www.ubuntubuzz.com/2015/09/how-to-fix-openvpn-dns-leak-in-linux.html

ターミナル経由でVPNに接続する場合、DNSリークはありません。しかし、Network Manager経由で接続した場合、DNSリークがまだあります。

これを修正する既知の方法はありますか、それともNetwork Managerのバグですか?修正できない場合、DNSサーバーを使用していない場合でも、ISPで追跡できますか?

それが役立つ場合、ここに私のOpenVPN設定があります:

client
remote 4-us.cg-dialup.net 443
dev tun 
proto udp
auth-user-pass


resolv-retry infinite 
redirect-gateway def1
persist-key
persist-tun
nobind
cipher AES-256-CBC
auth MD5
ping 5
ping-exit 60
ping-timer-rem
explicit-exit-notify 2
script-security 2
remote-cert-tls server
route-delay 5
tun-mtu 1500 
fragment 1300
mssfix 1300
verb 4
comp-lzo


ca ca.crt

cert client.crt

key client.key

script-security 2
up /etc/openvpn/update-resolv-conf
down /etc/openvpn/update-resolv-conf
3
SuperSluether

この問題には未解決のバグがあります: https://bugs.launchpad.net/ubuntu/+source/openvpn/+bug/121111

2
Wilhelm Erasmus