I have this configuration in my server in the Network Manager connection:
/etc/NetworkManager/system-connections/wired-connection
[connection]
id=wired-connection
uuid=0c501f08acc5497cb7...
type=8023ethernet
[8023ethernet]
[ipv4]
method=manual
dns=8.8.8.8;
address1=192.168.1.250/24,192.168.1.1
[ipv6]
method=auto
ip6privacy=0
/etc/NetworkManager/NetworkManager.conf
[main]
plugins=ifupdown,keyfile,ofono
dns=dnsmasq
[ifupdown]
managed=true
But my file /etc/resolv.conf
(symbolic link) is not overwritten by the Network Manager. If I add manually the line nameserver 8.8.8.8
to the file it works well, but it is only a temporal solution. If I open the IP configuration, in the interface of Kubuntu, I see the DNS fields empty.
I also tried with this command, but it didn't work
dpkg-reconfigure resolvconf
The route of my original configuration file is in /run/resolvconf/resolv.conf
And I found this file, it belongs to an old configuration /etc/resolvconf/resolv.conf.d/original
nameserver 213.60.205.175
nameserver 213.60.205.174
nameserver 212.51.33.110
Should I remove or edit this file to make it work?
I can access only remotely to the server, due to this I would like to be sure that's going to work. If not I could break the connection
Thanks in advance
Update 03/08/15. Output of /usr/share/resolvconf/dump-debug-info
###### Start of debugging information for resolvconf ######
### ls -l /etc/resolvconf
total 16
-rw-r--r-- 1 root root 172 dic 13 2012 interface-order
drwxr-xr-x 2 root root 4096 jul 8 18:33 resolv.conf.d
drwxr-xr-x 2 root root 4096 jul 8 18:33 update.d
drwxr-xr-x 2 root root 4096 jul 8 19:11 update-libc.d
### cat /etc/resolvconf/interface-order
# interface-order(5)
lo.inet*
lo.dnsmasq
lo.pdnsd
lo.!(pdns|pdns-recursor)
lo
tun*
tap*
hso*
em+([0-9])?(_+([0-9]))*
p+([0-9])p+([0-9])?(_+([0-9]))*
eth*
ath*
wlan*
ppp*
*
### ls -l /etc/resolvconf/resolv.conf.d
total 8
-rw-r--r-- 1 root root 0 dic 13 2012 base
-rw-r--r-- 1 root root 151 dic 13 2012 head
-rw-r--r-- 1 root root 77 jul 8 18:21 original
-rw-r--r-- 1 root root 0 jul 8 18:26 tail
### cat /etc/resolvconf/resolv.conf.d/base
### cat /etc/resolvconf/resolv.conf.d/head
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
### cat /etc/resolvconf/resolv.conf.d/original
nameserver 213.60.205.175
nameserver 213.60.205.174
nameserver 212.51.33.110
### cat /etc/resolvconf/resolv.conf.d/tail
### ls -l /etc/resolvconf/run
ls: no se puede acceder a /etc/resolvconf/run: No existe el archivo o el directorio
### ls -l /run/resolvconf
total 4
-rw-r--r-- 1 root root 0 jul 29 10:10 enable-updates
drwxr-xr-x 2 root root 40 jul 29 10:10 interface
-rw-r--r-- 1 root root 151 ago 3 09:40 resolv.conf
### cat /run/resolvconf/enable-updates
### cat /run/resolvconf/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
### ls -l /run/resolvconf/interface
total 0
### ls -l /etc/resolv.conf
lrwxrwxrwx 1 root root 29 jul 24 12:59 /etc/resolv.conf -> ../run/resolvconf/resolv.conf
### lsattr /etc/resolv.conf
lsattr: La operación no está soportada Mientras se leían las banderas en /etc/resolv.conf
### cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
### cat /etc/NetworkManager/NetworkManager.conf
[main]
plugins=ifupdown,keyfile,ofono
dns=dnsmasq
[ifupdown]
managed=true
###### End of debugging information for resolvconf ######
I'm using Kubuntu 14.04 by the way
dns-search=8.8.4.4;
looks wrong. The elements of the DNS search list should be domain names, not IP addresses. – jdthood Jul 30 '15 at 14:21/usr/share/resolvconf/dump-debug-info
in my system – ChesuCR Jul 31 '15 at 09:30resolvconf
package installed. – jdthood Jul 31 '15 at 13:20i resolvconf - name server information handler
– ChesuCR Jul 31 '15 at 17:00