Date: Sat, 6 Jun 1998 19:07:06 +0300 (EEST) From: "Vladimir A. Jakovenko" <vovik@ntu-kpi.kiev.ua> To: FreeBSD-gnats-submit@FreeBSD.ORG Subject: kern/6875: IPX debug messages in ipx_input.c Message-ID: <199806061607.TAA13862@ntu-kpi.kiev.ua>
next in thread | raw e-mail | index | archive | help
>Number: 6875 >Category: kern >Synopsis: IPX debug messages in ipx_input.c >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Jun 6 09:10:00 PDT 1998 >Last-Modified: >Originator: Vladimir A. Jakovenko >Organization: NTUU "KPI" >Release: FreeBSD 2.2.6-RELEASE i386 >Environment: FreeBSD-2.2.6 with following kernel options: options IPX options IPXPRINTFS=0 options IPX_ERRPRINTFS=0 >Description: When system act as IPX router (sysctl -w net.ipx.ipx.ipxforwarding=1, running IPXRouted -s) between IPX configured interfaces, it generate syslog messages "ipx_ctlinput: cmd 15." even if kernel compiled with IPXPRINTFS=0 and IPX_ERRPRINTFS=0 options. >How-To-Repeat: Compile kernel with options IPX options IPXPRINTFS=0 options IPX_ERRPRINTFS=0 configure some interfaces to IPX protocol family, and run sysctl -w net.ipx.ipx.ipxforwarding=1 and IPXRouted -s After that try to transfer some IPX traffic throw router. >Fix: Please apply the following patch: --- ipx_input.c~ Sat Jun 28 12:22:30 1997 +++ ipx_input.c Sat Jun 6 19:08:58 1998 @@ -317,9 +317,10 @@ ipx = &sipx->sipx_addr; break; default: - printf("ipx_ctlinput: cmd %d.\n", cmd); + if (ipxprintfs) + printf("ipx_ctlinput: cmd %d.\n", cmd); break; } } >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199806061607.TAA13862>