From owner-freebsd-doc@FreeBSD.ORG Wed Mar 31 23:50:03 2010 Return-Path: Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A45C1065677 for ; Wed, 31 Mar 2010 23:50: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 58F228FC14 for ; Wed, 31 Mar 2010 23:50:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o2VNo3QL070676 for ; Wed, 31 Mar 2010 23:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o2VNo33i070669; Wed, 31 Mar 2010 23:50:03 GMT (envelope-from gnats) Date: Wed, 31 Mar 2010 23:50:03 GMT Message-Id: <201003312350.o2VNo33i070669@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Glen Barber Cc: Subject: Re: docs/144986: [pf] pf.conf example should show allowing icmp through firewall X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Glen Barber List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Mar 2010 23:50:03 -0000 The following reply was made to PR docs/144986; it has been noted by GNATS. From: Glen Barber To: bug-followup@FreeBSD.org, bruce@cran.org.uk Cc: Subject: Re: docs/144986: [pf] pf.conf example should show allowing icmp through firewall Date: Wed, 31 Mar 2010 19:45:08 -0400 --r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The attached patch adds the ICMP rule to pf.conf. Regards, -- Glen Barber --r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="src.pf.pf.conf.txt" Index: /usr/src/share/examples/pf/pf.conf =================================================================== --- /usr/src/share/examples/pf/pf.conf (revision 205980) +++ /usr/src/share/examples/pf/pf.conf (working copy) @@ -32,3 +32,4 @@ #pass in on $ext_if proto tcp to ($ext_if) port ssh #pass in log on $ext_if proto tcp to ($ext_if) port smtp #pass out log on $ext_if proto tcp from ($ext_if) to port smtp +#pass in on $ext_if proto icmp to ($ext_if) --r5Pyd7+fXNt84Ff3--