DNS OpenVPN के साथ Ubuntu 12.04 पर जारी करता है


11

मैंने अपने होम नेटवर्क पर ओपनवीएनएन सेटअप करने के लिए इस गाइड का पालन ​​किया ।

मैंने गलती से ubuntu 12.10 को पहली बार डाउनलोड किया और बिना किसी सूचना के, मैं आगे बढ़ा और गाइड का पालन किया ...

फिर मैंने यहां से कुछ सामान किया : "रीडायरेक्ट-गेटवे डिफ 1" को पुश करें- iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o eth0 -j MASQUERADE

ब्राउज़िंग सक्षम करने के लिए।

OpenVPN पूरी तरह से कार्य कर रहा था।

इसका मतलब है कि, मैं बाहर से ब्राउज़ करते समय रिमोट (आंतरिक सेवाओं तक पहुंच) और अपने आईपी को मास्क करने में सक्षम था।

तब मुझे एहसास हुआ कि मैं 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 / नेटवर्क / इंटरफेस:

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

किसी भी सहायता की सराहना की जाएगी


क्या आप कच्चे आईपी को पिंग कर सकते हैं? मुझे इसी तरह की समस्या थी और यह पता चला कि डीएनएस पाया गया था, लेकिन मेरा फ़ायरवॉल सब कुछ रोक रहा था। जब मैंने इसे अक्षम किया और / या एक नियम जोड़ा, OpenVPN ने काम किया।
सेरिन

जवाबों:


32

यह मेरे लिए काम करता है: http://www.softwarepassion.com/solve-dns-problems-with-openvpn-on-ubuntu-box/

महत्वपूर्ण कदम आपके क्लाइंट ओपनवीएनएन कॉन्फिगर फाइल में तीन लाइनों को जोड़ रहा है:

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

यह भी सुनिश्चित करें कि resolvconfपैकेज क्लाइंट पर स्थापित है क्योंकि यह स्क्रिप्ट इस पर निर्भर करता है।

यह ओपेनवोन क्लाइंट सर्विस या कमांड ( sudo openvpn youropenvpn.conf) के साथ काम करता है ।

हालाँकि, उबंटू नेटवर्क प्रबंधक इस विन्यास के लिए काम नहीं करता है। यह अब तक का एक मुद्दा है: https://bugs.launchpad.net/ubuntu/+source/openvpn/+bug/1211110


काश, इस उत्तर के लिए आपको 1K स्कोर देने का एक तरीका होता जो हर जगह गायब लगता है!
नोबह

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.