web-dev-qa-db-ja.com

OpenVPNを使用したUbuntu 12.04でのDNSの問題

私はこれに従いました ガイド 私のホームネットワークでopenvpnをセットアップしました。

最初に誤ってubuntu 12.10をダウンロードしましたが、気付かずに先に進み、ガイドに従いました...

それから here からいくつかのことを行いました: "redirect-gateway def1" iptablesをプッシュします-t nat -A POSTROUTING -s 10.8.0.0/24 -o eth0 -j MASQUERADE

ブラウジングを有効にします。

OpenVPNは完全に機能していました。

つまり、外部からブラウジングするときに、リモートで(内部サービスにアクセスして)IPをマスクすることができました。

それから、ubuntu 12.04が必要だと気づいたので、新しいインストールで同じプロセスを実行しました。

問題は、DNSが解決しないことです。

Openvpnをダウンロードすると、resolvconfがダウンロードされたので、アンインストールして、手動でこれを実行しようとしました。

ここに私のシステムからのものがあります:

openvpn server.conf:

mode server
tls-server

local 192.168.1.101 ## ip/hostname of server
port 80 ## default openvpn port
proto udp

#bridging directive
dev tap0 ## If you need multiple tap devices, add them here
up "/etc/openvpn/up.sh br0 tap0 1500"
down "/etc/openvpn/down.sh br0 tap0"

persist-key
persist-tun

#certificates and encryption
ca ca.crt
cert server.crt
key server.key  # This file should be kept secret
dh dh1024.pem
tls-auth ta.key 0 # This file is secret

cipher BF-CBC        # Blowfish (default)
comp-lzo

#DHCP Information
ifconfig-pool-persist ipp.txt
server-bridge 192.168.1.10 255.255.255.0 192.168.1.100 192.168.1.110
Push "redirect-gateway def1"
Push "dhcp-option DNS 8.8.8.8"
Push "dhcp-option DNS 8.8.4.4"


#Push "dhcp-option DOMAIN yourdomain.com"
#Push "redirect-gateway local def1"
#Push "dhcp-option DNS 8.8.8.8"
#Push "redirect-gateway def1 bypass-dhcp"
#Push "dhcp-option DNS 192.168.1.1"
#Push "dhcp-option DNS 8.8.8.8"


max-clients 10 ## set this to the max number of clients that should be connected at a time

#log and security
user nobody
group nogroup
keepalive 10 120
status openvpn-status.log
verb 3

/ etc/network/interfaces:

root@ironman:~# cat /etc/network/interfaces 
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
#auto lo
#iface lo inet loopback

# The primary network interface
#auto eth0
#iface eth0 inet dhcp
#############OPEN VPN SETUP###############
## This is the network bridge declaration

## Start these interfaces on boot
auto lo br0

iface lo inet loopback

iface br0 inet static 
  address 192.168.1.101 
  netmask 255.255.255.0
  gateway 192.168.1.1
  bridge_ports eth0
  nameserver 8.8.8.8
iface eth0 inet manual
  up ip link set $IFACE up promisc on
  down ip link set $IFACE down promisc off
  nameserver 8.8.8.8

root@ironman:~# cat /etc/resolv.conf 
nameserver 8.8.8.8
nameserver 192.168.1.1


root@ironman:~# ping google.com
PING google.com (74.125.239.100) 56(84) bytes of data.
64 bytes from nuq05s01-in-f4.1e100.net (74.125.239.100): icmp_req=1 ttl=55 time=22.6 ms
64 bytes from nuq05s01-in-f4.1e100.net (74.125.239.100): icmp_req=2 ttl=55 time=21.7 ms
64 bytes from nuq05s01-in-f4.1e100.net (74.125.239.100): icmp_req=3 ttl=55 time=22.8 ms

助けていただければ幸いです

11
user1048138

これは私のために働く: http://www.softwarepassion.com/solving-dns-problems-with-openvpn-on-ubuntu-box/

重要なステップは、クライアントのopenvpn構成ファイルに次の3行を追加することです。

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

また、このスクリプトはresolvconfパッケージが依存しているため、クライアントにインストールされていることを確認してください。

Openvpnクライアントサービスまたはコマンド(Sudo openvpn youropenvpn.conf)で動作します。

ただし、Ubuntu Network Managerはこの構成では機能しません。これまでのところ問題です: https://bugs.launchpad.net/ubuntu/+source/openvpn/+bug/121111

32
Wenbing Li

12.04を再インストールしたときに、この手順を忘れましたか?

エコー1>/proc/sys/net/ipv4/ip_forward

ソース: https://openvpn.net/index.php/open-source/documentation/miscellaneous/88-1xhowto.html

1
joze