OpenSuse Leap 15 Configure bind for IPv4 recursive lookup

From Notes_Wiki

Home > Suse > OpenSuse Leap 15 > DNS configuration > 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



Home > Suse > OpenSuse Leap 15 > DNS configuration > Configure bind for IPv4 recursive lookup