Date: Tue, 20 Feb 1996 09:51:59 -0800 (PST) From: Bill Fenner <fenner> To: ejs@bfd.com, questions@freebsd.org Subject: Re: problem with arp not finding self? Message-ID: <199602201751.JAA24493@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199602201751.JAA24493>
