OpenSuse Leap 15 Configure bind for IPv4 recursive lookup

From Notes_Wiki
Revision as of 03:47, 27 January 2019 by Saurabh (talk | contribs) (Created page with "<yambe:breadcrumb self="Configure bind for IPv4 recursive lookup">OpenSuse_Leap_15_DNS_configuration|DNS configuration</yambe:breadcrumb> =OpenSuse Leap 15 Configure bind for...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<yambe:breadcrumb self="Configure bind for IPv4 recursive lookup">OpenSuse_Leap_15_DNS_configuration|DNS configuration</yambe:breadcrumb>

OpenSuse Leap 15 Configure bind for IPv4 recursive lookup

To configure IPv4 recursive lookup DNS using bind use following steps:

  1. Start bind and verify recursive lookup is working
    systemctl start named
    systemctl enable named
    systemctl status named
    nslookup www.google.co.in 127.0.0.1
  2. Edit /etc/sysconfig/named and set
    NAMED_RUN_CHROOTED="no"
    NAMED_ARGS="-4"
  3. Edit /etc/named.conf and append
    filter-aaaa-on-v4 yes;
    at end of options{} section
  4. Verify that IPv6 lookup has stopped using:
    systemctl restart named
    nslookup www.google.co.in 127.0.0.1
  5. In wireless settings of configured networks DNS can be changed from automatic to 127.0.0.1 if the network will allow full outgoing DNS access via UDP/TCP port 53



<yambe:breadcrumb self="Configure bind for IPv4 recursive lookup">OpenSuse_Leap_15_DNS_configuration|DNS configuration</yambe:breadcrumb>