From owner-freebsd-bugs@FreeBSD.ORG Fri Feb 26 08:40:03 2010 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4DC6106566C for ; Fri, 26 Feb 2010 08:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 938668FC15 for ; Fri, 26 Feb 2010 08:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id o1Q8e3Tf003245 for ; Fri, 26 Feb 2010 08:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id o1Q8e3Ie003244; Fri, 26 Feb 2010 08:40:03 GMT (envelope-from gnats) Date: Fri, 26 Feb 2010 08:40:03 GMT Message-Id: <201002260840.o1Q8e3Ie003244@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Yoshiaki Kasahara Cc: Subject: Re: kern/144311: massive ICMP storm on lo0 occurs when using pf(4) 'reply-to' X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Yoshiaki Kasahara List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Feb 2010 08:40:03 -0000 The following reply was made to PR kern/144311; it has been noted by GNATS. From: Yoshiaki Kasahara To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/144311: massive ICMP storm on lo0 occurs when using pf(4) 'reply-to' Date: Fri, 26 Feb 2010 17:33:42 +0900 (JST) I changed the rule to use 'route-to' instead of 'reply-to' and the ICMP storm stopped. ---------- if_isp1="em0" isp1_router="GW1.GW1.GW1.GW1" if_isp2="em1" isp2_router="GW2.GW2.GW2.GW2" pass in all no state pass out all pass out route-to ( $if_isp1 $isp1_router ) from $if_isp1 pass out route-to ( $if_isp2 $isp2_router ) from $if_isp2 ---------- I'm not sure about the implementation difference of 'reply-to' and 'route-to'.