Date: Thu, 10 Feb 2000 02:40:14 +0200 From: Ruslan Ermilov <ru@ucb.crimea.ua> To: John <papalia@udel.edu> Cc: freebsd-questions@freebsd.org Subject: Re: NAT/Routing message 5 Message-ID: <20000210024014.B96036@relay.ucb.crimea.ua> In-Reply-To: <4.1.20000209135649.009d02b0@mail.udel.edu>; from John on Wed, Feb 09, 2000 at 02:07:11PM -0500 References: <4.1.20000209103022.0095faf0@mail.udel.edu> <4.1.20000209103022.0095faf0@mail.udel.edu> <20000209205440.C38782@relay.ucb.crimea.ua> <4.1.20000209135649.009d02b0@mail.udel.edu>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, Feb 09, 2000 at 02:07:11PM -0500, John wrote: > >> Hey all, > >> > >> I've been poking around trying to learn, and I've currently got NATD > >> running in verbose mode. Periodically, I see a message in the file that > >says: > >> Routing message 5 received. > >> > >> And no more. It doesn't seem to appear after any particular port or IP > >> address - more "random" then anything. > >> > >> What does the message mean, what would trigger it, and is it anything > >> important? > >> > >You are running natd(8) in both verbose and dynamic modes. In dynamic > >mode, natd(8) listens the routing socket for kernel messages, and in > >verbose mode logs them. Routing message of 5th type is "Kernel suspects > >partitioning" message (see route(4) and /usr/src/sys/netinet/in_pcb.c). > >What is the value of maxusers in your kernel config? > > Well, I read through (as best I could) man 4 route, and I'm not very sure > exactly what the routing message #5 still means? Kernel suspects > partitioning, but of what or how? I'm also not sure of what i'm looking at > in /usr/src/sys/netinet/in_pcb.c.... it will take me a few days to muddle > through the code and man pages to understand better what i'm looking at in > there. > This is the RTM_LOSING message, see the comment for in_losing() procedure in src/sys/netinet/in_losing.c, and then tcp_timer.c calling in_losing(). It seems, that this message will be issued when a number of retransmits for a given destination becomes high, forcing the deletion of the route in hoope for a better one. Anyway, this does not hurt you in no way. It is possible, that some destination host has a bad connectivity with high loosage rate, causing this message to be generated. > As for maxusers, I have it set to 30. Right now I'm in the middle of a > make buildworld, but this Routing message has also popped up when I'm NOT > doing a build. At that time, typically 3 people are logged in (using > screen, typically), each with 3 or fewer screens open. > > Thanks, > John -- Ruslan Ermilov Sysadmin and DBA of the ru@ucb.crimea.ua United Commercial Bank, ru@FreeBSD.org FreeBSD committer, +380.652.247.647 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000210024014.B96036>