dnsmasq is not resolving local hostnames

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I have a local Linux server running dnsmasq for my LAN. It has been working without issues for the last several years. I keep the operating system and packages regularly updated. After yesterday's routine update, I am now getting errors from machines on the LAN when they attempt to resolve most local hostnames. I suspect I may have had a working configuration that was in some way flawed, and the update exposed my flaw; I'm not finding reports of this problem after the update, so I assume I have a mistake somewhere.



This is the error I am getting on most of the clients:



# ping myfileserver
ping: myfileserver: Name or service not known


However, if I ping the address of myfileserver, it succeeds:



# ping 192.168.1.2
PING 192.168.1.2 (192.168.1.2) 56(84) bytes of data.
64 bytes from 192.168.1.2: icmp_seq=1 ttl=64 time=0.325 ms
64 bytes from 192.168.1.2: icmp_seq=2 ttl=64 time=0.239 ms


Here is resolv.conf on the clients:



# cat /etc/resolv.conf
# Generated by NetworkManager
search mylan
nameserver 192.168.1.1


192.168.1.1 is the address of my dnsmasq server.



I may be overlooking something obvious, but drill shows that the client is getting a response from the dnsmasq server that contains the proper hostname and local IP address.



# drill myfileserver
;; ->>HEADER<<- opcode: QUERY, rcode: NOERROR, id: 40614
;; flags: qr aa rd ra ; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;; myfileserver. IN A

;; ANSWER SECTION:
myfileserver. 0 IN A 192.168.1.2

;; AUTHORITY SECTION:

;; ADDITIONAL SECTION:

;; Query time: 0 msec
;; SERVER: 192.168.1.1
;; WHEN: Wed Oct 24 00:12:18 2018
;; MSG SIZE rcvd: 41


On the server, systemd shows the dnsmasq process is starting and running normally:



systemctl status dnsmasq.service 
dnsmasq.service - A lightweight DHCP and caching DNS server
Loaded: loaded (/usr/lib/systemd/system/dnsmasq.service; enabled; vendor preset: disabled)
Active: active (running) since Wed 2018-10-24 00:08:13 EDT
Docs: man:dnsmasq(8)
Process: 28230 ExecStartPre=/usr/bin/dnsmasq --test (code=exited, status=0/SUCCESS)
Main PID: 28231 (dnsmasq)
Tasks: 1 (limit: 4915)
Memory: 1.4M
CGroup: /system.slice/dnsmasq.service
└─28231 /usr/bin/dnsmasq -k --enable-dbus --user=dnsmasq --pid-file


Here's the log output from dnsmasq starting up on the server. There are no errors.



Oct 23 01:50:48 mydnsmasqd systemd[1]: Starting A lightweight DHCP and caching DNS server...
Oct 23 01:50:48 mydnsmasqd dnsmasq[768]: dnsmasq: syntax check OK.
Oct 23 01:50:48 mydnsmasqd systemd[1]: Started A lightweight DHCP and caching DNS server.
Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: started, version 2.80 cachesize 5000
Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: compile time options: IPv6 GNU-getopt DBus i18n IDN2 DHCP DHCPv6 no-Lua TFTP conntrack ipset auth DNSSEC loop-detect inotify du>
Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: DBus support enabled: connected to system bus
Oct 23 01:50:48 mydnsmasqd dnsmasq-dhcp[772]: DHCP, IP range 192.168.10.100 -- 192.168.10.200, lease time 1d
Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using local addresses only for domain mylan
Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: reading /etc/resolv-custom.conf
Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using local addresses only for domain mylan
Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using nameserver 8.8.8.8#53
Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using nameserver 8.8.4.4#53
Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: read /etc/hosts - 72 addresses


During troubleshooting, I changed dnsmasq config, and restarted it. The log again shows no errors on starting and my various config changes had no impact on this issue. The dnsmasq configuration was not changed when this problem began. It is a relatively plain vanilla config, but during troubleshooting I simplified it to almost nothing. Here's what I have now (leaving out the interface binding part, which is clearly not relevant):



# grep -v '^#' /etc/dnsmasq.conf
resolv-file=/etc/resolv-custom.conf
dhcp-range=set:eth0,192.168.10.100, 192.168.10.200, 24h
cache-size=5000
no-negcache
conf-dir=/etc/dnsmasq.d,.bak

# cat /etc/resolv-custom.conf
search mylan
domain mylan
nameserver 8.8.8.8
nameserver 8.8.4.4


All machines are running Arch Linux, 4.18.10-arch1-1-ARCH
Dnsmasq version 2.80









share

























    up vote
    0
    down vote

    favorite












    I have a local Linux server running dnsmasq for my LAN. It has been working without issues for the last several years. I keep the operating system and packages regularly updated. After yesterday's routine update, I am now getting errors from machines on the LAN when they attempt to resolve most local hostnames. I suspect I may have had a working configuration that was in some way flawed, and the update exposed my flaw; I'm not finding reports of this problem after the update, so I assume I have a mistake somewhere.



    This is the error I am getting on most of the clients:



    # ping myfileserver
    ping: myfileserver: Name or service not known


    However, if I ping the address of myfileserver, it succeeds:



    # ping 192.168.1.2
    PING 192.168.1.2 (192.168.1.2) 56(84) bytes of data.
    64 bytes from 192.168.1.2: icmp_seq=1 ttl=64 time=0.325 ms
    64 bytes from 192.168.1.2: icmp_seq=2 ttl=64 time=0.239 ms


    Here is resolv.conf on the clients:



    # cat /etc/resolv.conf
    # Generated by NetworkManager
    search mylan
    nameserver 192.168.1.1


    192.168.1.1 is the address of my dnsmasq server.



    I may be overlooking something obvious, but drill shows that the client is getting a response from the dnsmasq server that contains the proper hostname and local IP address.



    # drill myfileserver
    ;; ->>HEADER<<- opcode: QUERY, rcode: NOERROR, id: 40614
    ;; flags: qr aa rd ra ; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;; myfileserver. IN A

    ;; ANSWER SECTION:
    myfileserver. 0 IN A 192.168.1.2

    ;; AUTHORITY SECTION:

    ;; ADDITIONAL SECTION:

    ;; Query time: 0 msec
    ;; SERVER: 192.168.1.1
    ;; WHEN: Wed Oct 24 00:12:18 2018
    ;; MSG SIZE rcvd: 41


    On the server, systemd shows the dnsmasq process is starting and running normally:



    systemctl status dnsmasq.service 
    dnsmasq.service - A lightweight DHCP and caching DNS server
    Loaded: loaded (/usr/lib/systemd/system/dnsmasq.service; enabled; vendor preset: disabled)
    Active: active (running) since Wed 2018-10-24 00:08:13 EDT
    Docs: man:dnsmasq(8)
    Process: 28230 ExecStartPre=/usr/bin/dnsmasq --test (code=exited, status=0/SUCCESS)
    Main PID: 28231 (dnsmasq)
    Tasks: 1 (limit: 4915)
    Memory: 1.4M
    CGroup: /system.slice/dnsmasq.service
    └─28231 /usr/bin/dnsmasq -k --enable-dbus --user=dnsmasq --pid-file


    Here's the log output from dnsmasq starting up on the server. There are no errors.



    Oct 23 01:50:48 mydnsmasqd systemd[1]: Starting A lightweight DHCP and caching DNS server...
    Oct 23 01:50:48 mydnsmasqd dnsmasq[768]: dnsmasq: syntax check OK.
    Oct 23 01:50:48 mydnsmasqd systemd[1]: Started A lightweight DHCP and caching DNS server.
    Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: started, version 2.80 cachesize 5000
    Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: compile time options: IPv6 GNU-getopt DBus i18n IDN2 DHCP DHCPv6 no-Lua TFTP conntrack ipset auth DNSSEC loop-detect inotify du>
    Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: DBus support enabled: connected to system bus
    Oct 23 01:50:48 mydnsmasqd dnsmasq-dhcp[772]: DHCP, IP range 192.168.10.100 -- 192.168.10.200, lease time 1d
    Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using local addresses only for domain mylan
    Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: reading /etc/resolv-custom.conf
    Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using local addresses only for domain mylan
    Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using nameserver 8.8.8.8#53
    Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using nameserver 8.8.4.4#53
    Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: read /etc/hosts - 72 addresses


    During troubleshooting, I changed dnsmasq config, and restarted it. The log again shows no errors on starting and my various config changes had no impact on this issue. The dnsmasq configuration was not changed when this problem began. It is a relatively plain vanilla config, but during troubleshooting I simplified it to almost nothing. Here's what I have now (leaving out the interface binding part, which is clearly not relevant):



    # grep -v '^#' /etc/dnsmasq.conf
    resolv-file=/etc/resolv-custom.conf
    dhcp-range=set:eth0,192.168.10.100, 192.168.10.200, 24h
    cache-size=5000
    no-negcache
    conf-dir=/etc/dnsmasq.d,.bak

    # cat /etc/resolv-custom.conf
    search mylan
    domain mylan
    nameserver 8.8.8.8
    nameserver 8.8.4.4


    All machines are running Arch Linux, 4.18.10-arch1-1-ARCH
    Dnsmasq version 2.80









    share























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have a local Linux server running dnsmasq for my LAN. It has been working without issues for the last several years. I keep the operating system and packages regularly updated. After yesterday's routine update, I am now getting errors from machines on the LAN when they attempt to resolve most local hostnames. I suspect I may have had a working configuration that was in some way flawed, and the update exposed my flaw; I'm not finding reports of this problem after the update, so I assume I have a mistake somewhere.



      This is the error I am getting on most of the clients:



      # ping myfileserver
      ping: myfileserver: Name or service not known


      However, if I ping the address of myfileserver, it succeeds:



      # ping 192.168.1.2
      PING 192.168.1.2 (192.168.1.2) 56(84) bytes of data.
      64 bytes from 192.168.1.2: icmp_seq=1 ttl=64 time=0.325 ms
      64 bytes from 192.168.1.2: icmp_seq=2 ttl=64 time=0.239 ms


      Here is resolv.conf on the clients:



      # cat /etc/resolv.conf
      # Generated by NetworkManager
      search mylan
      nameserver 192.168.1.1


      192.168.1.1 is the address of my dnsmasq server.



      I may be overlooking something obvious, but drill shows that the client is getting a response from the dnsmasq server that contains the proper hostname and local IP address.



      # drill myfileserver
      ;; ->>HEADER<<- opcode: QUERY, rcode: NOERROR, id: 40614
      ;; flags: qr aa rd ra ; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
      ;; QUESTION SECTION:
      ;; myfileserver. IN A

      ;; ANSWER SECTION:
      myfileserver. 0 IN A 192.168.1.2

      ;; AUTHORITY SECTION:

      ;; ADDITIONAL SECTION:

      ;; Query time: 0 msec
      ;; SERVER: 192.168.1.1
      ;; WHEN: Wed Oct 24 00:12:18 2018
      ;; MSG SIZE rcvd: 41


      On the server, systemd shows the dnsmasq process is starting and running normally:



      systemctl status dnsmasq.service 
      dnsmasq.service - A lightweight DHCP and caching DNS server
      Loaded: loaded (/usr/lib/systemd/system/dnsmasq.service; enabled; vendor preset: disabled)
      Active: active (running) since Wed 2018-10-24 00:08:13 EDT
      Docs: man:dnsmasq(8)
      Process: 28230 ExecStartPre=/usr/bin/dnsmasq --test (code=exited, status=0/SUCCESS)
      Main PID: 28231 (dnsmasq)
      Tasks: 1 (limit: 4915)
      Memory: 1.4M
      CGroup: /system.slice/dnsmasq.service
      └─28231 /usr/bin/dnsmasq -k --enable-dbus --user=dnsmasq --pid-file


      Here's the log output from dnsmasq starting up on the server. There are no errors.



      Oct 23 01:50:48 mydnsmasqd systemd[1]: Starting A lightweight DHCP and caching DNS server...
      Oct 23 01:50:48 mydnsmasqd dnsmasq[768]: dnsmasq: syntax check OK.
      Oct 23 01:50:48 mydnsmasqd systemd[1]: Started A lightweight DHCP and caching DNS server.
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: started, version 2.80 cachesize 5000
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: compile time options: IPv6 GNU-getopt DBus i18n IDN2 DHCP DHCPv6 no-Lua TFTP conntrack ipset auth DNSSEC loop-detect inotify du>
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: DBus support enabled: connected to system bus
      Oct 23 01:50:48 mydnsmasqd dnsmasq-dhcp[772]: DHCP, IP range 192.168.10.100 -- 192.168.10.200, lease time 1d
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using local addresses only for domain mylan
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: reading /etc/resolv-custom.conf
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using local addresses only for domain mylan
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using nameserver 8.8.8.8#53
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using nameserver 8.8.4.4#53
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: read /etc/hosts - 72 addresses


      During troubleshooting, I changed dnsmasq config, and restarted it. The log again shows no errors on starting and my various config changes had no impact on this issue. The dnsmasq configuration was not changed when this problem began. It is a relatively plain vanilla config, but during troubleshooting I simplified it to almost nothing. Here's what I have now (leaving out the interface binding part, which is clearly not relevant):



      # grep -v '^#' /etc/dnsmasq.conf
      resolv-file=/etc/resolv-custom.conf
      dhcp-range=set:eth0,192.168.10.100, 192.168.10.200, 24h
      cache-size=5000
      no-negcache
      conf-dir=/etc/dnsmasq.d,.bak

      # cat /etc/resolv-custom.conf
      search mylan
      domain mylan
      nameserver 8.8.8.8
      nameserver 8.8.4.4


      All machines are running Arch Linux, 4.18.10-arch1-1-ARCH
      Dnsmasq version 2.80









      share













      I have a local Linux server running dnsmasq for my LAN. It has been working without issues for the last several years. I keep the operating system and packages regularly updated. After yesterday's routine update, I am now getting errors from machines on the LAN when they attempt to resolve most local hostnames. I suspect I may have had a working configuration that was in some way flawed, and the update exposed my flaw; I'm not finding reports of this problem after the update, so I assume I have a mistake somewhere.



      This is the error I am getting on most of the clients:



      # ping myfileserver
      ping: myfileserver: Name or service not known


      However, if I ping the address of myfileserver, it succeeds:



      # ping 192.168.1.2
      PING 192.168.1.2 (192.168.1.2) 56(84) bytes of data.
      64 bytes from 192.168.1.2: icmp_seq=1 ttl=64 time=0.325 ms
      64 bytes from 192.168.1.2: icmp_seq=2 ttl=64 time=0.239 ms


      Here is resolv.conf on the clients:



      # cat /etc/resolv.conf
      # Generated by NetworkManager
      search mylan
      nameserver 192.168.1.1


      192.168.1.1 is the address of my dnsmasq server.



      I may be overlooking something obvious, but drill shows that the client is getting a response from the dnsmasq server that contains the proper hostname and local IP address.



      # drill myfileserver
      ;; ->>HEADER<<- opcode: QUERY, rcode: NOERROR, id: 40614
      ;; flags: qr aa rd ra ; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
      ;; QUESTION SECTION:
      ;; myfileserver. IN A

      ;; ANSWER SECTION:
      myfileserver. 0 IN A 192.168.1.2

      ;; AUTHORITY SECTION:

      ;; ADDITIONAL SECTION:

      ;; Query time: 0 msec
      ;; SERVER: 192.168.1.1
      ;; WHEN: Wed Oct 24 00:12:18 2018
      ;; MSG SIZE rcvd: 41


      On the server, systemd shows the dnsmasq process is starting and running normally:



      systemctl status dnsmasq.service 
      dnsmasq.service - A lightweight DHCP and caching DNS server
      Loaded: loaded (/usr/lib/systemd/system/dnsmasq.service; enabled; vendor preset: disabled)
      Active: active (running) since Wed 2018-10-24 00:08:13 EDT
      Docs: man:dnsmasq(8)
      Process: 28230 ExecStartPre=/usr/bin/dnsmasq --test (code=exited, status=0/SUCCESS)
      Main PID: 28231 (dnsmasq)
      Tasks: 1 (limit: 4915)
      Memory: 1.4M
      CGroup: /system.slice/dnsmasq.service
      └─28231 /usr/bin/dnsmasq -k --enable-dbus --user=dnsmasq --pid-file


      Here's the log output from dnsmasq starting up on the server. There are no errors.



      Oct 23 01:50:48 mydnsmasqd systemd[1]: Starting A lightweight DHCP and caching DNS server...
      Oct 23 01:50:48 mydnsmasqd dnsmasq[768]: dnsmasq: syntax check OK.
      Oct 23 01:50:48 mydnsmasqd systemd[1]: Started A lightweight DHCP and caching DNS server.
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: started, version 2.80 cachesize 5000
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: compile time options: IPv6 GNU-getopt DBus i18n IDN2 DHCP DHCPv6 no-Lua TFTP conntrack ipset auth DNSSEC loop-detect inotify du>
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: DBus support enabled: connected to system bus
      Oct 23 01:50:48 mydnsmasqd dnsmasq-dhcp[772]: DHCP, IP range 192.168.10.100 -- 192.168.10.200, lease time 1d
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using local addresses only for domain mylan
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: reading /etc/resolv-custom.conf
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using local addresses only for domain mylan
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using nameserver 8.8.8.8#53
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: using nameserver 8.8.4.4#53
      Oct 23 01:50:48 mydnsmasqd dnsmasq[772]: read /etc/hosts - 72 addresses


      During troubleshooting, I changed dnsmasq config, and restarted it. The log again shows no errors on starting and my various config changes had no impact on this issue. The dnsmasq configuration was not changed when this problem began. It is a relatively plain vanilla config, but during troubleshooting I simplified it to almost nothing. Here's what I have now (leaving out the interface binding part, which is clearly not relevant):



      # grep -v '^#' /etc/dnsmasq.conf
      resolv-file=/etc/resolv-custom.conf
      dhcp-range=set:eth0,192.168.10.100, 192.168.10.200, 24h
      cache-size=5000
      no-negcache
      conf-dir=/etc/dnsmasq.d,.bak

      # cat /etc/resolv-custom.conf
      search mylan
      domain mylan
      nameserver 8.8.8.8
      nameserver 8.8.4.4


      All machines are running Arch Linux, 4.18.10-arch1-1-ARCH
      Dnsmasq version 2.80







      hostname dnsmasq lan





      share












      share










      share



      share










      asked 8 mins ago









      MountainX

      4,7752469122




      4,7752469122

























          active

          oldest

          votes











          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f477413%2fdnsmasq-is-not-resolving-local-hostnames%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f477413%2fdnsmasq-is-not-resolving-local-hostnames%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay