In the Usenet newsgroup comp.os.linux.networking, in article
<(E-Mail Removed) .com>,
(E-Mail Removed) wrote:
>Having a SuSE 9.1 Linux box configured as Samba and Apache Server
>behind a Zyxel ADSL router, I have identified some absurd DNS requests
>which point towards a configuration problem:
Samba - meaning you have some windoze boxes. I'd recommend running at
least a caching name server, that is authoratative for the LAN, and forwards
other requests to a valid name server. Windoze is always bothering a name
server, trying to find more hosts to drop it's pants for.
>Every minute some process i cannot identify makes this calls:
You only show a half minute.
>12:24:58.257395 IP 192.168.1.1.router > 192.168.1.255.router: RIPv2,
>Response, length: 44
Do you need to be running RIPv2 (likely some router daemon)?
>12:24:58.325306 IP localhost.de.1145 > dns03.btx.dtag.de.domain:
>56311+ PTR? 255.1.168.192.in-addr.arpa. (44)
You don't identify localhost.de, or the network mask, but it looks like
some application is assuming the wrong network mask and doesn't recognize
192.168.1.255 as a broadcast.
>12:24:58.391141 IP dns03.btx.dtag.de.domain > localhost.de.1145: 56311
>NXDomain 0/1/0 (121)
Yes - dtag.de can hardly know which of the ten million hosts is using
the RFC1918 address.
>12:24:58.582270 IP localhost.de.1145 > dns03.btx.dtag.de.domain:
>56313+ PTR? 234.224.20.195.in-addr.arpa. (45)
>12:24:58.656604 IP dns03.btx.dtag.de.domain > localhost.de.1145: 56313
>1/0/0 (73)
localhost.de wants to know who 195.20.224.234 is - it's dns.schlund.de, a
widely blocked spam provider. google for 'schlund.de' in news.admin.net-abuse.*
for more details.
>12:24:58.717398 IP localhost.de.1145 > dns03.btx.dtag.de.domain:
>56314+ PTR? 129.2.25.194.in-addr.arpa. (43)
>12:24:58.783268 IP dns03.btx.dtag.de.domain > localhost.de.1145:
>56314* 1/0/0 (74)
Same thing - 194.25.2.129 is dns03.btx.dtag.de, the name server you are
pestering.
>12:25:20.151397 IP localhost.de.1145 > dns03.btx.dtag.de.domain:
>13598+ A? hzdxzq.de. (27)
Someone fumble fingered a file. If localhost.de is running *nix, use
grep to find that string in /etc/* and below. Also check any
configuration files that may be chroot'ed in Samba or Apache.
>12:25:21.142500 IP localhost.de.1145 > 192.168.1.255.netbios-ns: NBT
>UDP PACKET(137): QUERY; REQUEST; BROADCAST
Samba crap needed by windoze.
>192.168.1.1 & 192.168.1.255 is the Zyxel router
192.168.1.1 may be the router, but 192.168.1.255 should be the broadcast
based on the addresses used by RIPv2 and Samba.
>192.20.224.234 is the provider assigned ip-adress
I think that's a typo - but OK
>what the other ip address and this hzdxzq.de thing is - no idea
Who is 'localhost.de'?
>Using socklist i cannot identify port 1145.
It seems consistent, and if localhost.de is the Linux box, try
netstat -tupan
/usr/sbin/fuser -vn udp 1145
to identify the process using 1145.
Old guy