From a4f94d2619ebab97b2834f38c7594b44ea509f98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20W=C4=85sikowski?= Date: Sun, 15 Oct 2017 11:10:16 +0200 Subject: [PATCH] Update pf.conf Fix comment, because current one won't work: cat /etc/pf.conf anchor f2b { sshd } # service pf reload Reloading pf rules. /etc/pf.conf:2: syntax error New version: cat /etc/pf.conf anchor f2b { anchor sshd } # service pf reload Reloading pf rules. --- config/action.d/pf.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/action.d/pf.conf b/config/action.d/pf.conf index c70c8e43..a4bd83e0 100644 --- a/config/action.d/pf.conf +++ b/config/action.d/pf.conf @@ -18,8 +18,8 @@ # also, these rulesets are loaded into (nested) anchors # to enable them, add # anchor f2b { -# name1 -# name2 +# anchor name1 +# anchor name2 # ... # } # to your main pf ruleset, where "namei" are the names of the jails