2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2008-01-15 19:48:26 +05:30
|
|
|
|
|
|
|
name="Packet Filter"
|
2009-04-27 13:21:18 +05:30
|
|
|
: ${pf_conf:=${pf_rules:-/etc/pf.conf}}
|
|
|
|
required_files=$pf_conf
|
2008-01-15 19:48:26 +05:30
|
|
|
|
|
|
|
extra_commands="checkconfig showstatus"
|
|
|
|
extra_started_commands="reload"
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
need localmount
|
2012-07-03 08:34:22 +05:30
|
|
|
keyword -jail -prefix
|
2008-01-15 19:48:26 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
2009-04-27 13:21:18 +05:30
|
|
|
ebegin "Starting $name"
|
2013-12-02 06:55:01 +05:30
|
|
|
if command -v kldload >/dev/null 2>&1; then
|
2008-01-15 19:48:26 +05:30
|
|
|
kldload pf 2>/dev/null
|
|
|
|
fi
|
|
|
|
pfctl -q -F all
|
2009-04-27 13:21:18 +05:30
|
|
|
pfctl -q -f "$pf_conf" $pf_args
|
2008-01-15 19:48:26 +05:30
|
|
|
pfctl -q -e
|
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
stop()
|
|
|
|
{
|
2009-04-27 13:21:18 +05:30
|
|
|
ebegin "Stopping $name"
|
2008-01-15 19:48:26 +05:30
|
|
|
pfctl -q -d
|
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
checkconfig()
|
|
|
|
{
|
2009-04-27 13:21:18 +05:30
|
|
|
ebegin "Checking $name configuration"
|
|
|
|
pfctl -n -f "$pf_conf"
|
2008-01-15 19:48:26 +05:30
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
reload()
|
|
|
|
{
|
2009-04-27 13:21:18 +05:30
|
|
|
ebegin "Reloading $name rules."
|
|
|
|
pfctl -q -n -f "$pf_conf" && \
|
2011-01-17 15:19:07 +05:30
|
|
|
{
|
2008-01-15 19:48:26 +05:30
|
|
|
# Flush everything but existing state entries that way when
|
|
|
|
# rules are read in, it doesn't break established connections.
|
|
|
|
pfctl -q -Fnat -Fqueue -Frules -FSources -Finfo -FTables -Fosfp
|
2009-04-27 13:21:18 +05:30
|
|
|
pfctl -q -f "$pf_conf" $pf_args
|
2008-01-15 19:48:26 +05:30
|
|
|
}
|
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
showstatus()
|
|
|
|
{
|
|
|
|
pfctl -s info
|
|
|
|
}
|