kern/131601: [ipfw] [panic] 7-STABLE panic in nat_finalise (tcp=0)
Vladimir Kurtukov
vk at kbb.ru
Wed Feb 18 19:30:05 PST 2009
The following reply was made to PR kern/131601; it has been noted by GNATS.
From: Vladimir Kurtukov <vk at kbb.ru>
To: bug-followup at FreeBSD.org
Cc:
Subject: kern/131601: [ipfw] [panic] 7-STABLE panic in nat_finalise (tcp=0)
Date: Thu, 19 Feb 2009 10:22:45 +0700
Quick fix, tested, no panic.
apply in /sys/contrib/ipfilter/netinet
--- ip_nat.c.std 2007-10-31 12:00:38.000000000 +0700
+++ ip_nat.c 2009-02-19 10:20:05.000000000 +0700
@@ -2552,6 +2552,10 @@
{
frentry_t *fr;
ipnat_t *np;
+
+ if (fin->fin_p == IPPROTO_TCP && tcp == NULL) {
+ return -1;
+ }
np = ni->nai_np;
---
Best regards,
Vladimir
More information about the freebsd-ipfw
mailing list