dnscache does not return PTR recordsSetting up a DNS name server for a mass virtual host with Bind9List all...
"You've called the wrong number" or "You called the wrong number"
Extension of 2-adic valuation to the real numbers
How to not starve gigantic beasts
Betweenness centrality formula
a sore throat vs a strep throat vs strep throat
How to pronounce 'c++' in Spanish
Re-entry to Germany after vacation using blue card
How to denote matrix elements succinctly?
How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?
How to stop co-workers from teasing me because I know Russian?
How much cash can I safely carry into the USA and avoid civil forfeiture?
How did Captain America manage to do this?
Is there any official lore on the Far Realm?
What is the philosophical significance of speech acts/implicature?
What happens to Mjolnir (Thor's hammer) at the end of Endgame?
can anyone help me with this awful query plan?
I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?
A Note on N!
Why does Mind Blank stop the Feeblemind spell?
Don’t seats that recline flat defeat the purpose of having seatbelts?
How come there are so many candidates for the 2020 Democratic party presidential nomination?
Multiple options vs single option UI
Map of water taps to fill bottles
Are there physical dangers to preparing a prepared piano?
dnscache does not return PTR records
Setting up a DNS name server for a mass virtual host with Bind9List all DNS records in a domain using dig?Why does wget get redirected to localhost when fetching an unresolvable page?Stability of tinydns?Need Help Setting up TinyDNSCentOS BIND DNS Troubleshooting?PTR records not been created and/or updatedWindows 7 is skipping the primary DNS server and moving straight to the alternate DNS serverWindows 2008 dns server can't find his own host nameubuntu 14.04 Bind DNS does not work from outside for some of my domains
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am working on setting up tinydns
to serve DNS data for my local network (several virtual machines, actually) and dnscache
to serve both data about my local network and big internet. So, here is my setup:
- machine has one interface with two ip addresses: 10.0.0.4 and 10.0.0.5
tinydns
serves data about local network on 10.0.0.4
dnscache
works on 10.0.0.5 with following config:
# ls root/servers
@ ies.iu
# cat root/servers/@
8.8.8.8
# cat root/servers/ies.iu
10.0.0.4
And things work well when making forward resolution (only answer part of output is shown):
$ dig earthbind.ies.iu @10.0.0.4
earthbind.ies.iu. 86400 IN A 10.0.0.4
$ dig earthbind.ies.iu @10.0.0.5
earthbind.ies.iu. 83777 IN A 10.0.0.4
So far, so good. Trying reverse lookup:
$ dig -x 10.0.0.4 @10.0.0.4
4.0.0.10.in-addr.arpa. 86400 IN PTR earthbind.ies.iu.
$ dig -x 10.0.0.4 @10.0.0.5 # No answer!
Am I expecting from dnscache
something it is not supposed to do? What is correct way then?
This issue is important because if I put 10.0.0.5 into /etc/resolv.conf
, ping
(but not ping -n
) will have significant delay before starting sending packets.
domain-name-system internal-dns reverse-dns djbdns
New contributor
add a comment |
I am working on setting up tinydns
to serve DNS data for my local network (several virtual machines, actually) and dnscache
to serve both data about my local network and big internet. So, here is my setup:
- machine has one interface with two ip addresses: 10.0.0.4 and 10.0.0.5
tinydns
serves data about local network on 10.0.0.4
dnscache
works on 10.0.0.5 with following config:
# ls root/servers
@ ies.iu
# cat root/servers/@
8.8.8.8
# cat root/servers/ies.iu
10.0.0.4
And things work well when making forward resolution (only answer part of output is shown):
$ dig earthbind.ies.iu @10.0.0.4
earthbind.ies.iu. 86400 IN A 10.0.0.4
$ dig earthbind.ies.iu @10.0.0.5
earthbind.ies.iu. 83777 IN A 10.0.0.4
So far, so good. Trying reverse lookup:
$ dig -x 10.0.0.4 @10.0.0.4
4.0.0.10.in-addr.arpa. 86400 IN PTR earthbind.ies.iu.
$ dig -x 10.0.0.4 @10.0.0.5 # No answer!
Am I expecting from dnscache
something it is not supposed to do? What is correct way then?
This issue is important because if I put 10.0.0.5 into /etc/resolv.conf
, ping
(but not ping -n
) will have significant delay before starting sending packets.
domain-name-system internal-dns reverse-dns djbdns
New contributor
add a comment |
I am working on setting up tinydns
to serve DNS data for my local network (several virtual machines, actually) and dnscache
to serve both data about my local network and big internet. So, here is my setup:
- machine has one interface with two ip addresses: 10.0.0.4 and 10.0.0.5
tinydns
serves data about local network on 10.0.0.4
dnscache
works on 10.0.0.5 with following config:
# ls root/servers
@ ies.iu
# cat root/servers/@
8.8.8.8
# cat root/servers/ies.iu
10.0.0.4
And things work well when making forward resolution (only answer part of output is shown):
$ dig earthbind.ies.iu @10.0.0.4
earthbind.ies.iu. 86400 IN A 10.0.0.4
$ dig earthbind.ies.iu @10.0.0.5
earthbind.ies.iu. 83777 IN A 10.0.0.4
So far, so good. Trying reverse lookup:
$ dig -x 10.0.0.4 @10.0.0.4
4.0.0.10.in-addr.arpa. 86400 IN PTR earthbind.ies.iu.
$ dig -x 10.0.0.4 @10.0.0.5 # No answer!
Am I expecting from dnscache
something it is not supposed to do? What is correct way then?
This issue is important because if I put 10.0.0.5 into /etc/resolv.conf
, ping
(but not ping -n
) will have significant delay before starting sending packets.
domain-name-system internal-dns reverse-dns djbdns
New contributor
I am working on setting up tinydns
to serve DNS data for my local network (several virtual machines, actually) and dnscache
to serve both data about my local network and big internet. So, here is my setup:
- machine has one interface with two ip addresses: 10.0.0.4 and 10.0.0.5
tinydns
serves data about local network on 10.0.0.4
dnscache
works on 10.0.0.5 with following config:
# ls root/servers
@ ies.iu
# cat root/servers/@
8.8.8.8
# cat root/servers/ies.iu
10.0.0.4
And things work well when making forward resolution (only answer part of output is shown):
$ dig earthbind.ies.iu @10.0.0.4
earthbind.ies.iu. 86400 IN A 10.0.0.4
$ dig earthbind.ies.iu @10.0.0.5
earthbind.ies.iu. 83777 IN A 10.0.0.4
So far, so good. Trying reverse lookup:
$ dig -x 10.0.0.4 @10.0.0.4
4.0.0.10.in-addr.arpa. 86400 IN PTR earthbind.ies.iu.
$ dig -x 10.0.0.4 @10.0.0.5 # No answer!
Am I expecting from dnscache
something it is not supposed to do? What is correct way then?
This issue is important because if I put 10.0.0.5 into /etc/resolv.conf
, ping
(but not ping -n
) will have significant delay before starting sending packets.
domain-name-system internal-dns reverse-dns djbdns
domain-name-system internal-dns reverse-dns djbdns
New contributor
New contributor
New contributor
asked 8 mins ago
Dmitry BogatovDmitry Bogatov
1
1
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
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
});
}
});
Dmitry Bogatov is a new contributor. Be nice, and check out our Code of Conduct.
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%2fserverfault.com%2fquestions%2f964818%2fdnscache-does-not-return-ptr-records%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
Dmitry Bogatov is a new contributor. Be nice, and check out our Code of Conduct.
Dmitry Bogatov is a new contributor. Be nice, and check out our Code of Conduct.
Dmitry Bogatov is a new contributor. Be nice, and check out our Code of Conduct.
Dmitry Bogatov is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Server Fault!
- 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%2fserverfault.com%2fquestions%2f964818%2fdnscache-does-not-return-ptr-records%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