From owner-freebsd-questions Tue Feb 20 09:52:03 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id JAA24529 for questions-outgoing; Tue, 20 Feb 1996 09:52:03 -0800 (PST) Received: (from fenner@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id JAA24493 Tue, 20 Feb 1996 09:51:59 -0800 (PST) Date: Tue, 20 Feb 1996 09:51:59 -0800 (PST) From: Bill Fenner Message-Id: <199602201751.JAA24493@freefall.freebsd.org> To: ejs@bfd.com, questions@freebsd.org Subject: Re: problem with arp not finding self? Sender: owner-questions@freebsd.org Precedence: bulk This tends to be caused by a strange routing table. Are you running "routed"? Can you apply this patch and build a new kernel? Bill cvs diff: Diffing . Index: if_ether.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/if_ether.c,v retrieving revision 1.17.4.1 diff -c -r1.17.4.1 if_ether.c *** if_ether.c 1995/07/23 05:26:13 1.17.4.1 --- if_ether.c 1996/02/10 20:35:57 *************** *** 314,320 **** rt = la->la_rt; } if (la == 0 || rt == 0) { ! log(LOG_DEBUG, "arpresolve: can't allocate llinfo\n"); m_freem(m); return (0); } --- 314,321 ---- rt = la->la_rt; } if (la == 0 || rt == 0) { ! log(LOG_DEBUG, "arpresolve: can't allocate llinfo for %s\n", ! inet_ntoa(SIN(dst)->sin_addr)); m_freem(m); return (0); }