From nobody Thu Jun 10 20:03:52 2021 X-Original-To: pf@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 339747CF15F for ; Thu, 10 Jun 2021 20:03:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4G1FKj0xRNz4WKR for ; Thu, 10 Jun 2021 20:03:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0A0C215E6C for ; Thu, 10 Jun 2021 20:03:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 15AK3qJk055852 for ; Thu, 10 Jun 2021 20:03:52 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 15AK3quh055851 for pf@FreeBSD.org; Thu, 10 Jun 2021 20:03:52 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: pf@FreeBSD.org Subject: [Bug 256410] pf: Add pf_default_rules option Date: Thu, 10 Jun 2021 20:03:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: Unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: thomas@gibfest.dk X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: pf@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated List-Id: Technical discussion and general questions about packet filter (pf) List-Archive: https://lists.freebsd.org/archives/freebsd-pf List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-pf@freebsd.org X-BeenThere: freebsd-pf@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D256410 --- Comment #10 from Thomas Steen Rasmussen / Tykling -= -- Alright, I've attached an updated version of the patch which checks for the existence of $pf_default_rules_file (which defaults to /etc/pf-default.conf= in /etc/defaults/rc.conf) and if the file exists it loads it, and if not it lo= ads the rules in $pf_default_rules. Example: [tykling@nuc2 ~]$ sudo service pf restart Enabling pfno IP address found for foo /etc/pf-typo.conf:2: could not parse host specification pfctl: Syntax error in config file: pf rules not loaded /etc/rc.d/pf: WARNING: Unable to load /etc/pf-typo.conf and pf_default_rules_enable is set to YES. /etc/rc.d/pf: WARNING: pf_default_rules_file /etc/pf-default.conf not found, looading pf_default_rules: block drop log all . [tykling@nuc2 ~]$ After setting pf_default_rules_file to an existing file: [tykling@nuc2 ~]$ sudo sysrc pf_default_rules_file=3D"/etc/pf.conf"=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20 pf_default_rules_file: /etc/pf-default.conf -> /etc/pf.conf [tykling@nuc2 ~]$ sudo service pf restart Enabling pfno IP address found for foo /etc/pf-typo.conf:2: could not parse host specification pfctl: Syntax error in config file: pf rules not loaded /etc/rc.d/pf: WARNING: Unable to load /etc/pf-typo.conf and pf_default_rules_enable is set to YES. /etc/rc.d/pf: WARNING: Loading pf_default_rules_file: /etc/pf.conf . [tykling@nuc2 ~]$ --=20 You are receiving this mail because: You are the assignee for the bug.=