Docker Bind Reverse DNS ignoring out-of-zone dataSetup of DNS zone with secure zone updatesDNS zone fallback...

Tear out when plate making w/ a router

Is there a basic list of ways in which a low-level Rogue can get advantage for sneak attack?

How can I protect myself in case of a human attack like the murders of the hikers Jespersen and Ueland in Morocco?

Are there any instances of members of different Hogwarts houses coupling up and marrying each other?

Is the space of Radon measures a Polish space or at least separable?

Seized engine due to being run without oil

Could the government trigger by-elections to regain a majority?

Writing a love interest for my hero

Has any object launched from Earth gone into the Sun?

Why does F + F' = 1?

What is going on: C++ std::move on std::shared_ptr increases use_count?

Guitar beginner - What does this card show?

What are the advantages and disadvantages of Preprints.org compared with arXiv?

How can "life" insurance prevent the cheapening of death?

Why would thermal imaging be used to locate the Chandrayaan-2 lander?

Do any aircraft carry boats?

What is this dollar sign ($) icon in my Menu Bar?

Is there a star over my head?

2.5 year old daughter refuses to take medicine

Usage of Offrir and Donner

Does the word “uzi” need to be capitalized?

How to progress with CPLEX/Gurobi

Gas pipes - why does gas burn "outwards?"

Character theory and Quantum Chemistry



Docker Bind Reverse DNS ignoring out-of-zone data


Setup of DNS zone with secure zone updatesDNS zone fallback filezone delegation in Bindreverse slave DNS server zone file not transferredGenerate IPv6 reverse PTR records for /64 subnetBind DNS slave for all zonenamed-checkzone displays “ignoring out-of-zone” dataBIND Reverse DNS Ignoring out-of-zone dataHave unexpected hostname and IPBIND9 DNS zone file check reveals “ignoring out-of-zone data”






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















I recently created a BIND docker container, I want to make it become my test environment DNS server which can resolve multiple domains include rDNS. However, my reverse DNS settings always complain out-of-zone.



Network information:



Host: 
vboxnet0: 192.168.56.1/24
docker1: 172.16.0.1/16

DNS Docker Container:
eth0: 172.16.0.2/16


named.conf



zone "box.com." IN {
type master;
file "/etc/bind/box.com.zone";
allow-update {none;};
};

zone "56.168.192-IN-ADDR.ARPA." IN {
type master;
file "/etc/bind/box.com.rr.zone";
allow-update {none;};
};

zone "drive.com." IN {
type master;
file "/etc/bind/drive.com.zone";
allow-update {none;};
};

zone "16.172-IN-ADDR.ARPA." IN {
type master;
file "/etc/bind/drive.com.rr.zone";
allow-update {none;};
};


box.com.zone



$ORIGIN box.com.
$TTL 86400
@ IN SOA ns1.drive.com. hostmaster.drive.com. (
20190829 ; Serial
21600 ; Refresh after 6hrs
3600 ; Retry after 1hr
604800 ; Expire after 1w
86400) ; minTTL of 1d
@ IN NS ns1.drive.com.
;
@ IN A 192.168.56.20
mail IN A 195.168.56.20
box.com. IN MX 10 mail.box.com.


box.com.rr.zone



$ORIGIN 56.168.192.IN-ADDR-ARPA.
$TTL 86400
@ IN SOA ns1.drive.com. hostmaster.drive.com. (
20180829 ; Serial
21600 ; Refresh after 6hrs
3600 ; Retry after 1h
604800 ; Expire after 1w
86400 ) ; MinTTL of 1d
;
;
56.168.192.IN-ADDR.ARPA. IN NS ns1.drive.com.
20 IN PTR mail.box.com.


drive.com.zone



$ORIGIN drive.com.
$TTL 86400
@ IN SOA ns1.drive.com. hostmaster.drive.com. (
20190829 ; Serial
21600 ; Refresh after 6hrs
3600 ; Retry after 1hr
604800 ; Expire after 1w
86400) ; minTTL of 1d
NS ns1.drive.com.
ns1 A 172.16.0.2
;
mail A 172.16.10.1
@ MX 10 mail.drive.com.


drive.com.rr.zone



$TTL 86400
$ORIGIN 16.172.IN-ADDR.ARPA.
@ IN SOA ns1.drive.com. hostmaster.drive.com. (
20180829 ; Serial
21600 ; Refresh after 6hrs
3600 ; Retry after 1h
604800 ; Expire after 1w
86400 ) ; MinTTL of 1d
;
;
IN NS ns1.drive.com.
2.0 IN PTR ns1.drive.com.
1.10 IN PTR mail.drive.com.


Bind Log:



...omitted...
09-Sep-2019 21:26:45.506 none:103: 'max-cache-size 90%' - setting to 14312MB (out of 15903MB)
09-Sep-2019 21:26:45.508 configuring command channel from '/etc/bind/rndc.key'
09-Sep-2019 21:26:45.508 couldn't add command channel 127.0.0.1#953: file not found
09-Sep-2019 21:26:45.508 configuring command channel from '/etc/bind/rndc.key'
09-Sep-2019 21:26:45.508 couldn't add command channel ::1#953: file not found
09-Sep-2019 21:26:45.508 not using config file logging statement for logging due to -g option
09-Sep-2019 21:26:45.508 managed-keys-zone: loaded serial 0
09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:3: ignoring out-of-zone data (16.172.IN-ADDR.ARPA)
09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:3: ignoring out-of-zone data (56.168.192.IN-ADDR-ARPA)
09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:12: ignoring out-of-zone data (2.0.16.172.IN-ADDR.ARPA)
09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:13: ignoring out-of-zone data (1.10.16.172.IN-ADDR.ARPA)
09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:11: ignoring out-of-zone data (56.168.192.IN-ADDR.ARPA)
09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:12: ignoring out-of-zone data (20.56.168.192.IN-ADDR-ARPA)
09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: has 0 SOA records
09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: has no NS records
09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: not loaded due to errors.
09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: has 0 SOA records
09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: has no NS records
09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: not loaded due to errors.
09-Sep-2019 21:26:45.514 zone box.com/IN: loaded serial 20190829
09-Sep-2019 21:26:45.514 zone drive.com/IN: loaded serial 20190829
09-Sep-2019 21:26:45.514 all zones loaded
09-Sep-2019 21:26:45.515 running


named-checkzone



$ named-checkzone box.com box.com.zone 
zone box.com/IN: loaded serial 20190829
OK

$ named-checkzone drive.com drive.com.zone
zone drive.com/IN: loaded serial 20190829
OK

$ named-checkzone 56.168.192.IN-ADDR-ARPA box.com.rr.zone
box.com.rr.zone:11: ignoring out-of-zone data (56.168.192.IN-ADDR.ARPA)
zone 56.168.192.IN-ADDR-ARPA/IN: has no NS records
zone 56.168.192.IN-ADDR-ARPA/IN: not loaded due to errors.

$ named-checkzone 16.172.IN-ADDR.ARP drive.com.rr.zone
drive.com.rr.zone:3: ignoring out-of-zone data (16.172.IN-ADDR.ARPA)
drive.com.rr.zone:12: ignoring out-of-zone data (2.0.16.172.IN-ADDR.ARPA)
drive.com.rr.zone:13: ignoring out-of-zone data (1.10.16.172.IN-ADDR.ARPA)
zone 16.172.IN-ADDR.ARP/IN: has 0 SOA records
zone 16.172.IN-ADDR.ARP/IN: has no NS records
zone 16.172.IN-ADDR.ARP/IN: not loaded due to errors.









share|improve this question































    0















    I recently created a BIND docker container, I want to make it become my test environment DNS server which can resolve multiple domains include rDNS. However, my reverse DNS settings always complain out-of-zone.



    Network information:



    Host: 
    vboxnet0: 192.168.56.1/24
    docker1: 172.16.0.1/16

    DNS Docker Container:
    eth0: 172.16.0.2/16


    named.conf



    zone "box.com." IN {
    type master;
    file "/etc/bind/box.com.zone";
    allow-update {none;};
    };

    zone "56.168.192-IN-ADDR.ARPA." IN {
    type master;
    file "/etc/bind/box.com.rr.zone";
    allow-update {none;};
    };

    zone "drive.com." IN {
    type master;
    file "/etc/bind/drive.com.zone";
    allow-update {none;};
    };

    zone "16.172-IN-ADDR.ARPA." IN {
    type master;
    file "/etc/bind/drive.com.rr.zone";
    allow-update {none;};
    };


    box.com.zone



    $ORIGIN box.com.
    $TTL 86400
    @ IN SOA ns1.drive.com. hostmaster.drive.com. (
    20190829 ; Serial
    21600 ; Refresh after 6hrs
    3600 ; Retry after 1hr
    604800 ; Expire after 1w
    86400) ; minTTL of 1d
    @ IN NS ns1.drive.com.
    ;
    @ IN A 192.168.56.20
    mail IN A 195.168.56.20
    box.com. IN MX 10 mail.box.com.


    box.com.rr.zone



    $ORIGIN 56.168.192.IN-ADDR-ARPA.
    $TTL 86400
    @ IN SOA ns1.drive.com. hostmaster.drive.com. (
    20180829 ; Serial
    21600 ; Refresh after 6hrs
    3600 ; Retry after 1h
    604800 ; Expire after 1w
    86400 ) ; MinTTL of 1d
    ;
    ;
    56.168.192.IN-ADDR.ARPA. IN NS ns1.drive.com.
    20 IN PTR mail.box.com.


    drive.com.zone



    $ORIGIN drive.com.
    $TTL 86400
    @ IN SOA ns1.drive.com. hostmaster.drive.com. (
    20190829 ; Serial
    21600 ; Refresh after 6hrs
    3600 ; Retry after 1hr
    604800 ; Expire after 1w
    86400) ; minTTL of 1d
    NS ns1.drive.com.
    ns1 A 172.16.0.2
    ;
    mail A 172.16.10.1
    @ MX 10 mail.drive.com.


    drive.com.rr.zone



    $TTL 86400
    $ORIGIN 16.172.IN-ADDR.ARPA.
    @ IN SOA ns1.drive.com. hostmaster.drive.com. (
    20180829 ; Serial
    21600 ; Refresh after 6hrs
    3600 ; Retry after 1h
    604800 ; Expire after 1w
    86400 ) ; MinTTL of 1d
    ;
    ;
    IN NS ns1.drive.com.
    2.0 IN PTR ns1.drive.com.
    1.10 IN PTR mail.drive.com.


    Bind Log:



    ...omitted...
    09-Sep-2019 21:26:45.506 none:103: 'max-cache-size 90%' - setting to 14312MB (out of 15903MB)
    09-Sep-2019 21:26:45.508 configuring command channel from '/etc/bind/rndc.key'
    09-Sep-2019 21:26:45.508 couldn't add command channel 127.0.0.1#953: file not found
    09-Sep-2019 21:26:45.508 configuring command channel from '/etc/bind/rndc.key'
    09-Sep-2019 21:26:45.508 couldn't add command channel ::1#953: file not found
    09-Sep-2019 21:26:45.508 not using config file logging statement for logging due to -g option
    09-Sep-2019 21:26:45.508 managed-keys-zone: loaded serial 0
    09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:3: ignoring out-of-zone data (16.172.IN-ADDR.ARPA)
    09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:3: ignoring out-of-zone data (56.168.192.IN-ADDR-ARPA)
    09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:12: ignoring out-of-zone data (2.0.16.172.IN-ADDR.ARPA)
    09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:13: ignoring out-of-zone data (1.10.16.172.IN-ADDR.ARPA)
    09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:11: ignoring out-of-zone data (56.168.192.IN-ADDR.ARPA)
    09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:12: ignoring out-of-zone data (20.56.168.192.IN-ADDR-ARPA)
    09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: has 0 SOA records
    09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: has no NS records
    09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: not loaded due to errors.
    09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: has 0 SOA records
    09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: has no NS records
    09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: not loaded due to errors.
    09-Sep-2019 21:26:45.514 zone box.com/IN: loaded serial 20190829
    09-Sep-2019 21:26:45.514 zone drive.com/IN: loaded serial 20190829
    09-Sep-2019 21:26:45.514 all zones loaded
    09-Sep-2019 21:26:45.515 running


    named-checkzone



    $ named-checkzone box.com box.com.zone 
    zone box.com/IN: loaded serial 20190829
    OK

    $ named-checkzone drive.com drive.com.zone
    zone drive.com/IN: loaded serial 20190829
    OK

    $ named-checkzone 56.168.192.IN-ADDR-ARPA box.com.rr.zone
    box.com.rr.zone:11: ignoring out-of-zone data (56.168.192.IN-ADDR.ARPA)
    zone 56.168.192.IN-ADDR-ARPA/IN: has no NS records
    zone 56.168.192.IN-ADDR-ARPA/IN: not loaded due to errors.

    $ named-checkzone 16.172.IN-ADDR.ARP drive.com.rr.zone
    drive.com.rr.zone:3: ignoring out-of-zone data (16.172.IN-ADDR.ARPA)
    drive.com.rr.zone:12: ignoring out-of-zone data (2.0.16.172.IN-ADDR.ARPA)
    drive.com.rr.zone:13: ignoring out-of-zone data (1.10.16.172.IN-ADDR.ARPA)
    zone 16.172.IN-ADDR.ARP/IN: has 0 SOA records
    zone 16.172.IN-ADDR.ARP/IN: has no NS records
    zone 16.172.IN-ADDR.ARP/IN: not loaded due to errors.









    share|improve this question



























      0












      0








      0








      I recently created a BIND docker container, I want to make it become my test environment DNS server which can resolve multiple domains include rDNS. However, my reverse DNS settings always complain out-of-zone.



      Network information:



      Host: 
      vboxnet0: 192.168.56.1/24
      docker1: 172.16.0.1/16

      DNS Docker Container:
      eth0: 172.16.0.2/16


      named.conf



      zone "box.com." IN {
      type master;
      file "/etc/bind/box.com.zone";
      allow-update {none;};
      };

      zone "56.168.192-IN-ADDR.ARPA." IN {
      type master;
      file "/etc/bind/box.com.rr.zone";
      allow-update {none;};
      };

      zone "drive.com." IN {
      type master;
      file "/etc/bind/drive.com.zone";
      allow-update {none;};
      };

      zone "16.172-IN-ADDR.ARPA." IN {
      type master;
      file "/etc/bind/drive.com.rr.zone";
      allow-update {none;};
      };


      box.com.zone



      $ORIGIN box.com.
      $TTL 86400
      @ IN SOA ns1.drive.com. hostmaster.drive.com. (
      20190829 ; Serial
      21600 ; Refresh after 6hrs
      3600 ; Retry after 1hr
      604800 ; Expire after 1w
      86400) ; minTTL of 1d
      @ IN NS ns1.drive.com.
      ;
      @ IN A 192.168.56.20
      mail IN A 195.168.56.20
      box.com. IN MX 10 mail.box.com.


      box.com.rr.zone



      $ORIGIN 56.168.192.IN-ADDR-ARPA.
      $TTL 86400
      @ IN SOA ns1.drive.com. hostmaster.drive.com. (
      20180829 ; Serial
      21600 ; Refresh after 6hrs
      3600 ; Retry after 1h
      604800 ; Expire after 1w
      86400 ) ; MinTTL of 1d
      ;
      ;
      56.168.192.IN-ADDR.ARPA. IN NS ns1.drive.com.
      20 IN PTR mail.box.com.


      drive.com.zone



      $ORIGIN drive.com.
      $TTL 86400
      @ IN SOA ns1.drive.com. hostmaster.drive.com. (
      20190829 ; Serial
      21600 ; Refresh after 6hrs
      3600 ; Retry after 1hr
      604800 ; Expire after 1w
      86400) ; minTTL of 1d
      NS ns1.drive.com.
      ns1 A 172.16.0.2
      ;
      mail A 172.16.10.1
      @ MX 10 mail.drive.com.


      drive.com.rr.zone



      $TTL 86400
      $ORIGIN 16.172.IN-ADDR.ARPA.
      @ IN SOA ns1.drive.com. hostmaster.drive.com. (
      20180829 ; Serial
      21600 ; Refresh after 6hrs
      3600 ; Retry after 1h
      604800 ; Expire after 1w
      86400 ) ; MinTTL of 1d
      ;
      ;
      IN NS ns1.drive.com.
      2.0 IN PTR ns1.drive.com.
      1.10 IN PTR mail.drive.com.


      Bind Log:



      ...omitted...
      09-Sep-2019 21:26:45.506 none:103: 'max-cache-size 90%' - setting to 14312MB (out of 15903MB)
      09-Sep-2019 21:26:45.508 configuring command channel from '/etc/bind/rndc.key'
      09-Sep-2019 21:26:45.508 couldn't add command channel 127.0.0.1#953: file not found
      09-Sep-2019 21:26:45.508 configuring command channel from '/etc/bind/rndc.key'
      09-Sep-2019 21:26:45.508 couldn't add command channel ::1#953: file not found
      09-Sep-2019 21:26:45.508 not using config file logging statement for logging due to -g option
      09-Sep-2019 21:26:45.508 managed-keys-zone: loaded serial 0
      09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:3: ignoring out-of-zone data (16.172.IN-ADDR.ARPA)
      09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:3: ignoring out-of-zone data (56.168.192.IN-ADDR-ARPA)
      09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:12: ignoring out-of-zone data (2.0.16.172.IN-ADDR.ARPA)
      09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:13: ignoring out-of-zone data (1.10.16.172.IN-ADDR.ARPA)
      09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:11: ignoring out-of-zone data (56.168.192.IN-ADDR.ARPA)
      09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:12: ignoring out-of-zone data (20.56.168.192.IN-ADDR-ARPA)
      09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: has 0 SOA records
      09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: has no NS records
      09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: not loaded due to errors.
      09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: has 0 SOA records
      09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: has no NS records
      09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: not loaded due to errors.
      09-Sep-2019 21:26:45.514 zone box.com/IN: loaded serial 20190829
      09-Sep-2019 21:26:45.514 zone drive.com/IN: loaded serial 20190829
      09-Sep-2019 21:26:45.514 all zones loaded
      09-Sep-2019 21:26:45.515 running


      named-checkzone



      $ named-checkzone box.com box.com.zone 
      zone box.com/IN: loaded serial 20190829
      OK

      $ named-checkzone drive.com drive.com.zone
      zone drive.com/IN: loaded serial 20190829
      OK

      $ named-checkzone 56.168.192.IN-ADDR-ARPA box.com.rr.zone
      box.com.rr.zone:11: ignoring out-of-zone data (56.168.192.IN-ADDR.ARPA)
      zone 56.168.192.IN-ADDR-ARPA/IN: has no NS records
      zone 56.168.192.IN-ADDR-ARPA/IN: not loaded due to errors.

      $ named-checkzone 16.172.IN-ADDR.ARP drive.com.rr.zone
      drive.com.rr.zone:3: ignoring out-of-zone data (16.172.IN-ADDR.ARPA)
      drive.com.rr.zone:12: ignoring out-of-zone data (2.0.16.172.IN-ADDR.ARPA)
      drive.com.rr.zone:13: ignoring out-of-zone data (1.10.16.172.IN-ADDR.ARPA)
      zone 16.172.IN-ADDR.ARP/IN: has 0 SOA records
      zone 16.172.IN-ADDR.ARP/IN: has no NS records
      zone 16.172.IN-ADDR.ARP/IN: not loaded due to errors.









      share|improve this question














      I recently created a BIND docker container, I want to make it become my test environment DNS server which can resolve multiple domains include rDNS. However, my reverse DNS settings always complain out-of-zone.



      Network information:



      Host: 
      vboxnet0: 192.168.56.1/24
      docker1: 172.16.0.1/16

      DNS Docker Container:
      eth0: 172.16.0.2/16


      named.conf



      zone "box.com." IN {
      type master;
      file "/etc/bind/box.com.zone";
      allow-update {none;};
      };

      zone "56.168.192-IN-ADDR.ARPA." IN {
      type master;
      file "/etc/bind/box.com.rr.zone";
      allow-update {none;};
      };

      zone "drive.com." IN {
      type master;
      file "/etc/bind/drive.com.zone";
      allow-update {none;};
      };

      zone "16.172-IN-ADDR.ARPA." IN {
      type master;
      file "/etc/bind/drive.com.rr.zone";
      allow-update {none;};
      };


      box.com.zone



      $ORIGIN box.com.
      $TTL 86400
      @ IN SOA ns1.drive.com. hostmaster.drive.com. (
      20190829 ; Serial
      21600 ; Refresh after 6hrs
      3600 ; Retry after 1hr
      604800 ; Expire after 1w
      86400) ; minTTL of 1d
      @ IN NS ns1.drive.com.
      ;
      @ IN A 192.168.56.20
      mail IN A 195.168.56.20
      box.com. IN MX 10 mail.box.com.


      box.com.rr.zone



      $ORIGIN 56.168.192.IN-ADDR-ARPA.
      $TTL 86400
      @ IN SOA ns1.drive.com. hostmaster.drive.com. (
      20180829 ; Serial
      21600 ; Refresh after 6hrs
      3600 ; Retry after 1h
      604800 ; Expire after 1w
      86400 ) ; MinTTL of 1d
      ;
      ;
      56.168.192.IN-ADDR.ARPA. IN NS ns1.drive.com.
      20 IN PTR mail.box.com.


      drive.com.zone



      $ORIGIN drive.com.
      $TTL 86400
      @ IN SOA ns1.drive.com. hostmaster.drive.com. (
      20190829 ; Serial
      21600 ; Refresh after 6hrs
      3600 ; Retry after 1hr
      604800 ; Expire after 1w
      86400) ; minTTL of 1d
      NS ns1.drive.com.
      ns1 A 172.16.0.2
      ;
      mail A 172.16.10.1
      @ MX 10 mail.drive.com.


      drive.com.rr.zone



      $TTL 86400
      $ORIGIN 16.172.IN-ADDR.ARPA.
      @ IN SOA ns1.drive.com. hostmaster.drive.com. (
      20180829 ; Serial
      21600 ; Refresh after 6hrs
      3600 ; Retry after 1h
      604800 ; Expire after 1w
      86400 ) ; MinTTL of 1d
      ;
      ;
      IN NS ns1.drive.com.
      2.0 IN PTR ns1.drive.com.
      1.10 IN PTR mail.drive.com.


      Bind Log:



      ...omitted...
      09-Sep-2019 21:26:45.506 none:103: 'max-cache-size 90%' - setting to 14312MB (out of 15903MB)
      09-Sep-2019 21:26:45.508 configuring command channel from '/etc/bind/rndc.key'
      09-Sep-2019 21:26:45.508 couldn't add command channel 127.0.0.1#953: file not found
      09-Sep-2019 21:26:45.508 configuring command channel from '/etc/bind/rndc.key'
      09-Sep-2019 21:26:45.508 couldn't add command channel ::1#953: file not found
      09-Sep-2019 21:26:45.508 not using config file logging statement for logging due to -g option
      09-Sep-2019 21:26:45.508 managed-keys-zone: loaded serial 0
      09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:3: ignoring out-of-zone data (16.172.IN-ADDR.ARPA)
      09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:3: ignoring out-of-zone data (56.168.192.IN-ADDR-ARPA)
      09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:12: ignoring out-of-zone data (2.0.16.172.IN-ADDR.ARPA)
      09-Sep-2019 21:26:45.508 /etc/bind/drive.com.rr.zone:13: ignoring out-of-zone data (1.10.16.172.IN-ADDR.ARPA)
      09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:11: ignoring out-of-zone data (56.168.192.IN-ADDR.ARPA)
      09-Sep-2019 21:26:45.508 /etc/bind/box.com.rr.zone:12: ignoring out-of-zone data (20.56.168.192.IN-ADDR-ARPA)
      09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: has 0 SOA records
      09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: has no NS records
      09-Sep-2019 21:26:45.508 zone 16.172-IN-ADDR.ARPA/IN: not loaded due to errors.
      09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: has 0 SOA records
      09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: has no NS records
      09-Sep-2019 21:26:45.508 zone 56.168.192-IN-ADDR.ARPA/IN: not loaded due to errors.
      09-Sep-2019 21:26:45.514 zone box.com/IN: loaded serial 20190829
      09-Sep-2019 21:26:45.514 zone drive.com/IN: loaded serial 20190829
      09-Sep-2019 21:26:45.514 all zones loaded
      09-Sep-2019 21:26:45.515 running


      named-checkzone



      $ named-checkzone box.com box.com.zone 
      zone box.com/IN: loaded serial 20190829
      OK

      $ named-checkzone drive.com drive.com.zone
      zone drive.com/IN: loaded serial 20190829
      OK

      $ named-checkzone 56.168.192.IN-ADDR-ARPA box.com.rr.zone
      box.com.rr.zone:11: ignoring out-of-zone data (56.168.192.IN-ADDR.ARPA)
      zone 56.168.192.IN-ADDR-ARPA/IN: has no NS records
      zone 56.168.192.IN-ADDR-ARPA/IN: not loaded due to errors.

      $ named-checkzone 16.172.IN-ADDR.ARP drive.com.rr.zone
      drive.com.rr.zone:3: ignoring out-of-zone data (16.172.IN-ADDR.ARPA)
      drive.com.rr.zone:12: ignoring out-of-zone data (2.0.16.172.IN-ADDR.ARPA)
      drive.com.rr.zone:13: ignoring out-of-zone data (1.10.16.172.IN-ADDR.ARPA)
      zone 16.172.IN-ADDR.ARP/IN: has 0 SOA records
      zone 16.172.IN-ADDR.ARP/IN: has no NS records
      zone 16.172.IN-ADDR.ARP/IN: not loaded due to errors.






      linux dns bind






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 3 hours ago









      NeilWangNeilWang

      1012 silver badges11 bronze badges




      1012 silver badges11 bronze badges

























          0






          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',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          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%2f539893%2fdocker-bind-reverse-dns-ignoring-out-of-zone-data%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes

















          draft saved

          draft discarded



















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f539893%2fdocker-bind-reverse-dns-ignoring-out-of-zone-data%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Hudson River Historic District Contents Geography History The district today Aesthetics Cultural...

          The number designs the writing. Feandra Aversely Definition: The act of ingrafting a sprig or shoot of one...

          Ayherre Geografie Demografie Externe links Navigatiemenu43° 23′ NB, 1° 15′ WL43° 23′ NB, 1°...