2008-03-03 02:44:01 +05:30
|
|
|
#!@PREFIX@/sbin/runscript
|
2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
|
2008-01-15 19:48:26 +05:30
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
|
|
|
|
|
|
|
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
|
2009-07-01 04:37:32 +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"
|
2008-01-15 19:48:26 +05:30
|
|
|
if type kldload >/dev/null 2>&1; then
|
|
|
|
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" && \
|
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
|
|
|
|
}
|