On Thu, Dec 15, 2011 at 09:51:09PM +0200, Sami Halabi wrote:
S> I've searched the net andfound basicly 2 threads talking about the message:
S> 
S> ng_mppc_decompress: too many (4094) packets dropped, disabling node

The 4094 value both in your report and in the old PR look suspicious.

Can you please try the attached patch and report which values are logged
now.

-- 
Totus tuus, Glebius.
Index: ng_mppc.c
===================================================================
--- ng_mppc.c	(revision 228838)
+++ ng_mppc.c	(working copy)
@@ -647,9 +647,9 @@
 			rekey = ((d->cfg.bits & MPPE_STATELESS) != 0) ?
 			    numLost : (numLost / (MPPE_UPDATE_MASK + 1));
 			if (rekey > MPPE_MAX_REKEY) {
-				log(LOG_ERR, "%s: too many (%d) packets"
+				log(LOG_ERR, "%s: too many (%u %u) packets"
 				    " dropped, disabling node %p!",
-				    __func__, numLost, node);
+				    __func__, cc, d->cc, node);
 				priv->recv.cfg.enable = 0;
 				goto failed;
 			}
_______________________________________________
freebsd-net@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-net
To unsubscribe, send any mail to "freebsd-net-unsubscr...@freebsd.org"

Reply via email to