How to configure dns for subnets in Ubuntu LTS 18.04 using bind9?












0















I need to configure a DNS to the next network design:



172.0.0.2 DHCP.technology.com
172.0.0.3 DNS.technology.com
172.0.1.0 DB1.technology.com
172.0.2.0 APP1.technology.com


I have this configuration:



named.conf.local



zone "technology.com" IN {
type master;
file "/etc/bind/forward.technology.com";
};


zone "0.0.172.in-addr.arpa" IN {
type master;
file "/etc/bind/reverse.technology.com";
};


forward.technology.com



; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA dns.technology.com. root.dns.technology.com. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS dns.technology.com.
@ IN A 172.0.0.3
dns IN A 172.0.0.3
dhcp IN A 172.0.0.2
db1 IN A 172.0.1.0
app1 IN A 172.0.2.0


My problem is:



how can i add the db1 and app1 reverse to the reverse configuration?.



Because i added twice a 0 for an PTR (db1 and app1), this is my file:



reverse.technology.com



    ; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA dns.technology.com. root.dns.technology.com. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS dns.technology.com.
@ IN PTR technology.com.
dns IN A 172.0.0.3
dhcp IN A 172.0.0.2
db1 IN A 172.0.1.0
app1 IN A 172.0.2.0
3 IN PTR dns.example.com.
2 IN PTR dhcp.example.com.
0 IN PTR db1.technology.com.
0 IN PTR app1.technology.com.









share|improve this question





























    0















    I need to configure a DNS to the next network design:



    172.0.0.2 DHCP.technology.com
    172.0.0.3 DNS.technology.com
    172.0.1.0 DB1.technology.com
    172.0.2.0 APP1.technology.com


    I have this configuration:



    named.conf.local



    zone "technology.com" IN {
    type master;
    file "/etc/bind/forward.technology.com";
    };


    zone "0.0.172.in-addr.arpa" IN {
    type master;
    file "/etc/bind/reverse.technology.com";
    };


    forward.technology.com



    ; BIND data file for local loopback interface
    ;
    $TTL 604800
    @ IN SOA dns.technology.com. root.dns.technology.com. (
    2 ; Serial
    604800 ; Refresh
    86400 ; Retry
    2419200 ; Expire
    604800 ) ; Negative Cache TTL
    ;
    @ IN NS dns.technology.com.
    @ IN A 172.0.0.3
    dns IN A 172.0.0.3
    dhcp IN A 172.0.0.2
    db1 IN A 172.0.1.0
    app1 IN A 172.0.2.0


    My problem is:



    how can i add the db1 and app1 reverse to the reverse configuration?.



    Because i added twice a 0 for an PTR (db1 and app1), this is my file:



    reverse.technology.com



        ; BIND data file for local loopback interface
    ;
    $TTL 604800
    @ IN SOA dns.technology.com. root.dns.technology.com. (
    2 ; Serial
    604800 ; Refresh
    86400 ; Retry
    2419200 ; Expire
    604800 ) ; Negative Cache TTL
    ;
    @ IN NS dns.technology.com.
    @ IN PTR technology.com.
    dns IN A 172.0.0.3
    dhcp IN A 172.0.0.2
    db1 IN A 172.0.1.0
    app1 IN A 172.0.2.0
    3 IN PTR dns.example.com.
    2 IN PTR dhcp.example.com.
    0 IN PTR db1.technology.com.
    0 IN PTR app1.technology.com.









    share|improve this question



























      0












      0








      0








      I need to configure a DNS to the next network design:



      172.0.0.2 DHCP.technology.com
      172.0.0.3 DNS.technology.com
      172.0.1.0 DB1.technology.com
      172.0.2.0 APP1.technology.com


      I have this configuration:



      named.conf.local



      zone "technology.com" IN {
      type master;
      file "/etc/bind/forward.technology.com";
      };


      zone "0.0.172.in-addr.arpa" IN {
      type master;
      file "/etc/bind/reverse.technology.com";
      };


      forward.technology.com



      ; BIND data file for local loopback interface
      ;
      $TTL 604800
      @ IN SOA dns.technology.com. root.dns.technology.com. (
      2 ; Serial
      604800 ; Refresh
      86400 ; Retry
      2419200 ; Expire
      604800 ) ; Negative Cache TTL
      ;
      @ IN NS dns.technology.com.
      @ IN A 172.0.0.3
      dns IN A 172.0.0.3
      dhcp IN A 172.0.0.2
      db1 IN A 172.0.1.0
      app1 IN A 172.0.2.0


      My problem is:



      how can i add the db1 and app1 reverse to the reverse configuration?.



      Because i added twice a 0 for an PTR (db1 and app1), this is my file:



      reverse.technology.com



          ; BIND data file for local loopback interface
      ;
      $TTL 604800
      @ IN SOA dns.technology.com. root.dns.technology.com. (
      2 ; Serial
      604800 ; Refresh
      86400 ; Retry
      2419200 ; Expire
      604800 ) ; Negative Cache TTL
      ;
      @ IN NS dns.technology.com.
      @ IN PTR technology.com.
      dns IN A 172.0.0.3
      dhcp IN A 172.0.0.2
      db1 IN A 172.0.1.0
      app1 IN A 172.0.2.0
      3 IN PTR dns.example.com.
      2 IN PTR dhcp.example.com.
      0 IN PTR db1.technology.com.
      0 IN PTR app1.technology.com.









      share|improve this question
















      I need to configure a DNS to the next network design:



      172.0.0.2 DHCP.technology.com
      172.0.0.3 DNS.technology.com
      172.0.1.0 DB1.technology.com
      172.0.2.0 APP1.technology.com


      I have this configuration:



      named.conf.local



      zone "technology.com" IN {
      type master;
      file "/etc/bind/forward.technology.com";
      };


      zone "0.0.172.in-addr.arpa" IN {
      type master;
      file "/etc/bind/reverse.technology.com";
      };


      forward.technology.com



      ; BIND data file for local loopback interface
      ;
      $TTL 604800
      @ IN SOA dns.technology.com. root.dns.technology.com. (
      2 ; Serial
      604800 ; Refresh
      86400 ; Retry
      2419200 ; Expire
      604800 ) ; Negative Cache TTL
      ;
      @ IN NS dns.technology.com.
      @ IN A 172.0.0.3
      dns IN A 172.0.0.3
      dhcp IN A 172.0.0.2
      db1 IN A 172.0.1.0
      app1 IN A 172.0.2.0


      My problem is:



      how can i add the db1 and app1 reverse to the reverse configuration?.



      Because i added twice a 0 for an PTR (db1 and app1), this is my file:



      reverse.technology.com



          ; BIND data file for local loopback interface
      ;
      $TTL 604800
      @ IN SOA dns.technology.com. root.dns.technology.com. (
      2 ; Serial
      604800 ; Refresh
      86400 ; Retry
      2419200 ; Expire
      604800 ) ; Negative Cache TTL
      ;
      @ IN NS dns.technology.com.
      @ IN PTR technology.com.
      dns IN A 172.0.0.3
      dhcp IN A 172.0.0.2
      db1 IN A 172.0.1.0
      app1 IN A 172.0.2.0
      3 IN PTR dns.example.com.
      2 IN PTR dhcp.example.com.
      0 IN PTR db1.technology.com.
      0 IN PTR app1.technology.com.






      server






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited yesterday







      Victor Alvarado

















      asked yesterday









      Victor AlvaradoVictor Alvarado

      10517




      10517






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "89"
          };
          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: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          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/3.0/"u003ecc by-sa 3.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%2faskubuntu.com%2fquestions%2f1123513%2fhow-to-configure-dns-for-subnets-in-ubuntu-lts-18-04-using-bind9%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 Ask Ubuntu!


          • 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%2faskubuntu.com%2fquestions%2f1123513%2fhow-to-configure-dns-for-subnets-in-ubuntu-lts-18-04-using-bind9%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

          Category:香港粉麵

          List *all* the tuples!

          Channel [V]