From owner-freebsd-questions@FreeBSD.ORG Mon Apr 4 17:11:25 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F20816A4CE for ; Mon, 4 Apr 2005 17:11:25 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BEAC43D5D for ; Mon, 4 Apr 2005 17:11:25 +0000 (GMT) (envelope-from infofarmer@mail.ru) Received: from [83.237.13.44] (port=4815 helo=[172.17.0.69]) by mx2.mail.ru with asmtp id 1DIV6i-000DzX-00; Mon, 04 Apr 2005 21:11:24 +0400 Message-ID: <42517542.70407@mail.ru> Date: Mon, 04 Apr 2005 21:11:30 +0400 From: "Andrew P." User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Pat Maddox References: <810a540e05040405173caeb280@mail.gmail.com> <425137AA.8090401@mail.ru> <810a540e050404091536f7fe1@mail.gmail.com> In-Reply-To: <810a540e050404091536f7fe1@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD Questions Subject: Re: arplookup failed X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: infofarmer@mail.ru List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Apr 2005 17:11:25 -0000 Pat Maddox wrote: > On Apr 4, 2005 5:48 AM, Andrew P. wrote: >>Pat Maddox wrote: >> >>>I've got a system running 5.3-p6, and am getting this error every 20 >>>minutes or so: >>>kernel: arplookup 69.61.54.33 failed: host is not on local network >>> >>>I get that the host isn't on the network, but I don't have any idea >>>where the message is coming from. It's in /var/log/messages, shows up >>>about every 20 minutes. Any ideas? >> >>Maybe a direct route to that host is specified >>in your routing table. Provide the output of >>`netstat -rn` please. > > Destination Gateway Flags Refs Use Netif > default 69.61.54.161 UGS 0 838 rl0 > 69.61.54.160/29 link#1 UC 0 0 rl0 > 69.61.54.161 00:02:85:0d:7c:80 UHLW 1 0 rl0 > 127.0.0.1 127.0.0.1 UH 0 0 lo0 Hmm, according to this table every packet with 69.61.54.33 destination would be sent to 69.61.54.161 gateway, arplookup would not be performed for the 33 address. What comes to my mind is that some broken router might be messing your routing table via ICMP (or do you use a routing protocol like RIP or OSPF?) You might need to run 'route monitor > route_changes.log &' for a few hours and post the log, for us to see what's happening. Best wishes, Andrew P.