Difference between revisions of "OpenSuse Leap 15 Configure bind for IPv4 recursive lookup"

From Notes_Wiki
(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...")
 
m
 
Line 1: Line 1:
<yambe:breadcrumb self="Configure bind for IPv4 recursive lookup">OpenSuse_Leap_15_DNS_configuration|DNS configuration</yambe:breadcrumb>
[[Main Page|Home]] > [[Suse]] > [[OpenSuse Leap 15]] > [[OpenSuse Leap 15 DNS configuration|DNS configuration]] > [[OpenSuse Leap 15 Configure bind for IPv4 recursive lookup|Configure bind for IPv4 recursive lookup]]
=OpenSuse Leap 15 Configure bind for IPv4 recursive lookup=


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




<yambe:breadcrumb self="Configure bind for IPv4 recursive lookup">OpenSuse_Leap_15_DNS_configuration|DNS configuration</yambe:breadcrumb>
 
[[Main Page|Home]] > [[Suse]] > [[OpenSuse Leap 15]] > [[OpenSuse Leap 15 DNS configuration|DNS configuration]] > [[OpenSuse Leap 15 Configure bind for IPv4 recursive lookup|Configure bind for IPv4 recursive lookup]]

Latest revision as of 03:22, 6 April 2022

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