0

I'm using a custom Ubuntu and I can't seem to use a DNS resolver. I updated my /etc/resolv.conf file so it would contain the line nameserver 8.8.8.8:

# cat /etc/resolv.conf
nameserver 8.8.8.8

but that doesn't seem to help:

# ping google.com
ping: bad address 'google.com'
# ping google
ping: bad address 'google'
# ping www.google.com
ping: bad address 'www.google.com'

Accessing 8.8.8.8 as it is works:

# ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8): 56 data bytes
64 bytes from 8.8.8.8: seq=0 ttl=118 time=53.386 ms
64 bytes from 8.8.8.8: seq=1 ttl=118 time=53.398 ms
64 bytes from 8.8.8.8: seq=2 ttl=118 time=53.265 ms
64 bytes from 8.8.8.8: seq=3 ttl=118 time=53.293 ms
64 bytes from 8.8.8.8: seq=4 ttl=118 time=53.339 ms

I've tried looking for answers here but most of the suggestions were irrelevant, as I don't have /etc/resolvconf/resolv.conf.d/, /etc/network/interfaces or /etc/dhcp3/dhclient.conf.

  1. Could it be that I have another network configuration file that disables my /etc/resolv.conf (The Linux I run had many programmers touching it along the years, and no one actually knows what exactly happens anymore...)?
  2. How actually ping is executed? If I could understand when ping checks /etc/resolv.conf, maybe I could pinpoint why it isn't working

This is my /etc/nsswitch.conf:

#  cat /etc/nsswitch.conf
    passwd:     files  rf
    shadow:     files
    group:      files
    hosts:      files   dns
    services:   files
    networks:   files
    protocols:  files
    rpc:        files
    ethers:     files
    netmasks:   files
    netgroup:   files
    automount:  files
    aliases:    files
    bootparams:  [NOTFOUND=return] files

ps auxc | grep -i dns OR ps auxc | grep -i resolv

BusyBox v1.11.2 () multi-call binary

Usage: ps

Report process status

Options:
        w       Wide output

1 Answers1

1

I am noob but I faced this issue just few day ago! I think you should recreate your resolve.conf file.

Use this command for recreation.

sudo resolvconf -u.

May be this helps!