How to configure dns for subnets in Ubuntu LTS 18.04 using bind9?
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
add a comment |
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
add a comment |
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
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
server
edited yesterday
Victor Alvarado
asked yesterday
Victor AlvaradoVictor Alvarado
10517
10517
add a comment |
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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