From owner-freebsd-net@FreeBSD.ORG Sat Dec 13 02:49:54 2003 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC29D16A4CE for ; Sat, 13 Dec 2003 02:49:54 -0800 (PST) Received: from smtp004.mail.ukl.yahoo.com (smtp004.mail.ukl.yahoo.com [217.12.11.35]) by mx1.FreeBSD.org (Postfix) with SMTP id A02E943D1F for ; Sat, 13 Dec 2003 02:49:53 -0800 (PST) (envelope-from NateBSD@yahoo.it) Received: from unknown (HELO LapBSD.MetalZone) (natebsd@80.182.195.178 with plain) by smtp004.mail.ukl.yahoo.com with SMTP; 13 Dec 2003 10:49:49 -0000 From: Nate Grey Date: Sat, 13 Dec 2003 11:49:44 +0000 User-Agent: KMail/1.5.4 To: net@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200312131149.44582.NateBSD@yahoo.it> Subject: Fwd: 5.2-RC + ipfw X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Dec 2003 10:49:55 -0000 Hello, on 5.2-RC I get this error from ipfw: ipfw in free(): error: modified (chunk -) pointer Aboirt trap (core dumped) examining my firewall script I noticed that error occurs when ipfw try to load this rules fwcmd="/sbin/ipfw -q/" ${fwcmd} add 310 set 1 deny ip from $bad_guys to any in recv ep0 ${fwcmd} add 310 set 2 deny ip from any to $bad_guys out via ep0 badguys are: bad_guys="(\ 127.0.0.0/8 or \ 192.168.0.1/16 or \ 10.0.0.0/8 or \ 172.16.0.0/12 or \ 0.0.0.0/8 or \ 169.254.0.0/16 or \ 192.0.2.0/24 or \ 224.0.0.0/4 \ )" anyway, according to `ipfw sh` output the rules are loaded. Bye Bye