* [gentoo-user] OT - Why won't my computers use their own DNS servers?
@ 2007-05-14 14:18 Michael Sullivan
2007-05-14 14:37 ` Hans-Werner Hilse
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Michael Sullivan @ 2007-05-14 14:18 UTC (permalink / raw
To: gentoo-user
On my network I have two computers, camille.espersunited.com
(70.234.122.250) and catherine.espersunited.com (70.234.122.251). Each
of these two computers runs its own local DNS server. They do this to
speed up internet access.; at least they used to. Now I find that
internet access is slow and that they are trying to use each other's DNS
server, which is not what I want.
On camille:
camille ~ # cat /etc/resolv.conf
search espersunited.com
nameserver 70.24.122.250
nameserver 70.234.122.251
nameserver 70.234.122.248
nameserver 192.168.1.254
domain espersunited.com
camille ~ # dig camille.espersunited.com
; <<>> DiG 9.3.4 <<>> camille.espersunited.com
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 54017
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;camille.espersunited.com. IN A
;; ANSWER SECTION:
camille.espersunited.com. 10800 IN A 70.234.122.250
;; AUTHORITY SECTION:
espersunited.com. 10800 IN NS baby.espersunited.com.
;; Query time: 1 msec
;; SERVER: 70.234.122.251#53(70.234.122.251)
;; WHEN: Mon May 14 09:16:28 2007
;; MSG SIZE rcvd: 77
On catherine:
catherine ~ # cat /etc/resolv.conf
search espersunited.com
nameserver 70.24.122.251
nameserver 70.234.122.250
nameserver 70.234.122.248
nameserver 192.168.1.254
domain espersunited.com
catherine ~ # dig catherine.espersunited.com
; <<>> DiG 9.3.4 <<>> catherine.espersunited.com
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 49177
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1
;; QUESTION SECTION:
;catherine.espersunited.com. IN A
;; ANSWER SECTION:
catherine.espersunited.com. 10800 IN A 70.234.122.251
;; AUTHORITY SECTION:
espersunited.com. 10800 IN NS baby.espersunited.com.
;; ADDITIONAL SECTION:
baby.espersunited.com. 10800 IN A 70.234.122.248
;; Query time: 0 msec
;; SERVER: 70.234.122.250#53(70.234.122.250)
;; WHEN: Mon May 14 09:17:06 2007
;; MSG SIZE rcvd: 95
Why is it doing this? I can post /etc/named/db.espersunited.com if you
think it would help...
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] OT - Why won't my computers use their own DNS servers?
2007-05-14 14:18 [gentoo-user] OT - Why won't my computers use their own DNS servers? Michael Sullivan
@ 2007-05-14 14:37 ` Hans-Werner Hilse
2007-05-14 14:57 ` Arnau Bria
2007-05-14 14:58 ` Etaoin Shrdlu
2 siblings, 0 replies; 6+ messages in thread
From: Hans-Werner Hilse @ 2007-05-14 14:37 UTC (permalink / raw
To: gentoo-user
Hi,
On Mon, 14 May 2007 09:18:02 -0500 Michael Sullivan
<michael@espersunited.com> wrote:
> On my network I have two computers, camille.espersunited.com
> (70.234.122.250) and catherine.espersunited.com (70.234.122.251).
> Each of these two computers runs its own local DNS server. They do
> this to speed up internet access.; at least they used to. Now I find
> that internet access is slow and that they are trying to use each
> other's DNS server, which is not what I want.
According to resolv.conf(5) you can by default only configure 3 (!)
name servers instead of the four you have.
Also, it doesn't make sense to configure a nameserver to return its own
host name, so I would consider your test case being invalid.
The interesting question would be which name server answers for the case
that you query some other host name (also since you said what you want
those servers to do is caching, not authoritative name services).
Since those are public IPs, I happened to positively check for the
existence of a firewall. Its configuration regarding DNS queries (UDP
_and_ -- always forgotten -- TCP port 53) would be interesting, esp.
the configured allowed IP ranges for source and destination.
-hwh
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] OT - Why won't my computers use their own DNS servers? [SOLVED]
2007-05-14 14:58 ` Etaoin Shrdlu
@ 2007-05-14 14:40 ` Michael Sullivan
2007-05-15 23:49 ` Bryan Whitehead
0 siblings, 1 reply; 6+ messages in thread
From: Michael Sullivan @ 2007-05-14 14:40 UTC (permalink / raw
To: gentoo-user
On Mon, 2007-05-14 at 16:58 +0200, Etaoin Shrdlu wrote:
> On Monday 14 May 2007 16:18, Michael Sullivan wrote:
>
> > On camille:
> >
> > camille ~ # cat /etc/resolv.conf
> > search espersunited.com
> > nameserver 70.24.122.250
> ^^^^
>
> Shouldn't this be 70.234.122.250?
That did it. Thank you! I wonder how that happened, and why I didn't
see that the addresses didn't line up....?
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] OT - Why won't my computers use their own DNS servers?
2007-05-14 14:18 [gentoo-user] OT - Why won't my computers use their own DNS servers? Michael Sullivan
2007-05-14 14:37 ` Hans-Werner Hilse
@ 2007-05-14 14:57 ` Arnau Bria
2007-05-14 14:58 ` Etaoin Shrdlu
2 siblings, 0 replies; 6+ messages in thread
From: Arnau Bria @ 2007-05-14 14:57 UTC (permalink / raw
To: gentoo-user
On Mon, 14 May 2007 09:18:02 -0500
Michael Sullivan wrote:
> On my network I have two computers, camille.espersunited.com
> (70.234.122.250) and catherine.espersunited.com (70.234.122.251).
If IP's are correct:
> On camille:
>
> camille ~ # cat /etc/resolv.conf
> search espersunited.com
> nameserver 70.24.122.250 ->>> who is this? Maybe should be 234?
> nameserver 70.234.122.251 --->>>> catherine!
> nameserver 70.234.122.248
> nameserver 192.168.1.254
> domain espersunited.com
same thing for catherine
>
> On catherine:
>
> catherine ~ # cat /etc/resolv.conf
> search espersunited.com
> nameserver 70.24.122.251
> nameserver 70.234.122.250
> nameserver 70.234.122.248
> nameserver 192.168.1.254
> domain espersunited.com
> catherine ~ # dig catherine.espersunited.com
HTH
--
Arnau Bria
http://blog.emergetux.net
Bombing for peace is like fucking for virginity
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] OT - Why won't my computers use their own DNS servers?
2007-05-14 14:18 [gentoo-user] OT - Why won't my computers use their own DNS servers? Michael Sullivan
2007-05-14 14:37 ` Hans-Werner Hilse
2007-05-14 14:57 ` Arnau Bria
@ 2007-05-14 14:58 ` Etaoin Shrdlu
2007-05-14 14:40 ` [gentoo-user] OT - Why won't my computers use their own DNS servers? [SOLVED] Michael Sullivan
2 siblings, 1 reply; 6+ messages in thread
From: Etaoin Shrdlu @ 2007-05-14 14:58 UTC (permalink / raw
To: gentoo-user
On Monday 14 May 2007 16:18, Michael Sullivan wrote:
> On camille:
>
> camille ~ # cat /etc/resolv.conf
> search espersunited.com
> nameserver 70.24.122.250
^^^^
Shouldn't this be 70.234.122.250?
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] OT - Why won't my computers use their own DNS servers? [SOLVED]
2007-05-14 14:40 ` [gentoo-user] OT - Why won't my computers use their own DNS servers? [SOLVED] Michael Sullivan
@ 2007-05-15 23:49 ` Bryan Whitehead
0 siblings, 0 replies; 6+ messages in thread
From: Bryan Whitehead @ 2007-05-15 23:49 UTC (permalink / raw
To: gentoo-user
Why not do this:
nameserver 127.0.0.1
Michael Sullivan wrote:
> On Mon, 2007-05-14 at 16:58 +0200, Etaoin Shrdlu wrote:
>
>> On Monday 14 May 2007 16:18, Michael Sullivan wrote:
>>
>>
>>> On camille:
>>>
>>> camille ~ # cat /etc/resolv.conf
>>> search espersunited.com
>>> nameserver 70.24.122.250
>>>
>> ^^^^
>>
>> Shouldn't this be 70.234.122.250?
>>
>
> That did it. Thank you! I wonder how that happened, and why I didn't
> see that the addresses didn't line up....?
>
>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-05-15 23:53 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-14 14:18 [gentoo-user] OT - Why won't my computers use their own DNS servers? Michael Sullivan
2007-05-14 14:37 ` Hans-Werner Hilse
2007-05-14 14:57 ` Arnau Bria
2007-05-14 14:58 ` Etaoin Shrdlu
2007-05-14 14:40 ` [gentoo-user] OT - Why won't my computers use their own DNS servers? [SOLVED] Michael Sullivan
2007-05-15 23:49 ` Bryan Whitehead
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox