NetBSD/etc/rc.d/ipnat
lukem 5c1b0ec207 Use load_rc_config() (from rc.subr) instead of sourcing /etc/rc.conf.
This allows us or a user to change the configuration file method in
one place - rc.subr - without having to edit all of the rc.d/* files.
2000-05-13 08:45:06 +00:00

40 lines
673 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: ipnat,v 1.4 2000/05/13 08:45:07 lukem Exp $
#
# PROVIDE: ipnat
# REQUIRE: ipfilter
. /etc/rc.subr
name="ipnat"
config="/etc/ipnat.conf"
start_precmd="checkyesno ipnat"
start_cmd="ipnat_start"
stop_precmd=$start_precmd
stop_cmd="/usr/sbin/ipnat -F -C"
reload_precmd=$start_precmd
reload_cmd="/usr/sbin/ipnat -F -C -f ${config}"
extra_commands="reload"
ipnat_start()
{
if [ ! -f ${config} ]; then
return 0
fi
if ! checkyesno ipfilter || [ ! -f /etc/ipf.conf ]; then
echo "Enabling ipfilter for NAT."
/sbin/ipf -E -Fa
fi
echo -n "Installing NAT rules ... "
/usr/sbin/ipnat -F -f ${config}
}
load_rc_config $name
run_rc_command "$1"