Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I setup an openvpn service on my vps server (ubuntu 12.04) and it wroks good. but the server cannot resolve domain name anymore. see:

root@spr:~# ping www.google.com
ping: unknown host www.google.com
root@spr:~# ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_req=1 ttl=57 time=1.96 ms
64 bytes from 8.8.8.8: icmp_req=2 ttl=57 time=1.91 ms
64 bytes from 8.8.8.8: icmp_req=3 ttl=57 time=1.78 ms

see openvpn config file /etc/openvpn/server.conf:

local 72.19.154.137
port 8081
proto udp
dev tun
ca /etc/openvpn/easy-rsa/2.0/keys/ca.crt
cert /etc/openvpn/easy-rsa/2.0/keys/server.crt
key /etc/openvpn/easy-rsa/2.0/keys/server.key
dh /etc/openvpn/easy-rsa/2.0/keys/dh1024.pem
ifconfig-pool-persist ipp.txt

server 10.168.1.0 255.255.255.0

push "redirect-gateway def1"

push "dhcp-option DNS 8.8.8.8"
push "dhcp-option DNS 8.8.4.4"
client-to-client

;duplicate-cn

keepalive 20 60

comp-lzo

this is networking info:

# ifconfig -a
eth0  Link encap:Ethernet  HWaddr aa:00:00:13:9a:89  
      inet addr:72.19.154.137  Bcast:71.19.154.255  Mask:255.255.255.0
      inet6 addr: 2605:2700:0:3::4713:9a89/64 Scope:Global
      inet6 addr: fe80::a800:ff:fe13:9a89/64 Scope:Link
      UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
      RX packets:19550 errors:0 dropped:0 overruns:0 frame:0
      TX packets:10 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000 
      RX bytes:1408611 (1.4 MB)  TX bytes:688 (688.0 B)
      Interrupt:27 

lo    Link encap:Local Loopback  
      inet addr:127.0.0.1  Mask:255.0.0.0
      inet6 addr: ::1/128 Scope:Host
      UP LOOPBACK RUNNING  MTU:16436  Metric:1
      RX packets:192 errors:0 dropped:0 overruns:0 frame:0
      TX packets:192 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:0 
      RX bytes:16448 (16.4 KB)  TX bytes:16448 (16.4 KB)

tun0  Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00  
      inet addr:10.168.1.1  P-t-P:10.168.1.2  Mask:255.255.255.255
      UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  Metric:1
      RX packets:0 errors:0 dropped:0 overruns:0 frame:0
      TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:100 
      RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

this is syslog:

root@perfectspr:~# grep -i eth /var/log/syslog | tail
Aug 31 01:39:24 perfectspr kernel: [    0.040625] i2c-core: driver [aat2870] using legacy suspend method
Aug 31 01:39:24 perfectspr kernel: [    0.040625] i2c-core: driver [aat2870] using legacy resume method
Aug 31 01:39:24 perfectspr kernel: [    0.522701] Initialising Xen virtual ethernet driver.
Aug 31 01:39:24 perfectspr kernel: [    3.555669] ADDRCONF(NETDEV_UP): eth0: link is not ready

and /etc/resolv.conf is empty. It seems that eth0 is never working.

root@spr:~# sudo service networking restart
sudo: unable to resolve host my.host.name.com
stop: Unknown instance: 
networking stop/waiting
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.