54 lines
988 B
Bash
Executable File
54 lines
988 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: ipfilter,v 1.4 2000/05/13 08:45:07 lukem Exp $
|
|
#
|
|
|
|
# PROVIDE: ipfilter
|
|
# REQUIRE: root beforenetlkm mountcritlocal tty
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ipfilter"
|
|
start_cmd="ipfilter_start"
|
|
stop_precmd="checkyesno ipfilter && [ -f /etc/ipf.conf ]"
|
|
stop_cmd="ipfilter_stop"
|
|
reload_precmd="$stop_precmd"
|
|
reload_cmd="ipfilter_reload"
|
|
extra_commands="reload"
|
|
|
|
ipfilter_start()
|
|
{
|
|
if ! checkyesno ipfilter; then
|
|
return 0
|
|
fi
|
|
|
|
# if /etc/ipf.conf isn't readable, abort the boot rather
|
|
# than risk a security problem
|
|
#
|
|
if [ ! -f /etc/ipf.conf ]; then
|
|
err 1 "/etc/ipf.conf not readable; ipfilter start aborted."
|
|
fi
|
|
echo "Enabling ipfilter."
|
|
/sbin/ipf -E -Fa -f /etc/ipf.conf
|
|
}
|
|
|
|
ipfilter_stop()
|
|
{
|
|
echo "Disabling ipfilter."
|
|
/sbin/ipf -D
|
|
}
|
|
|
|
ipfilter_reload()
|
|
{
|
|
echo "Reloading ipfilter rules."
|
|
/sbin/ipf -I -Fa -f /etc/ipf.conf
|
|
if [ $? -eq 0 ]; then
|
|
/sbin/ipf -s
|
|
else
|
|
warn "Reload failed; not swapping to new ruleset."
|
|
fi
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|