2001-06-16 09:16:14 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-06-14 00:14:37 +02:00
|
|
|
# $FreeBSD$
|
2001-06-16 09:16:14 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: ipmon
|
2014-11-30 11:01:47 +01:00
|
|
|
# REQUIRE: FILESYSTEMS hostname sysctl ipfilter
|
2002-06-14 00:14:37 +02:00
|
|
|
# BEFORE: SERVERS
|
2004-10-07 15:55:26 +02:00
|
|
|
# KEYWORD: nojail
|
2001-06-16 09:16:14 +02:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="ipmon"
|
2016-04-23 18:10:54 +02:00
|
|
|
desc="Monitors /dev/ipl for logged packets"
|
2012-01-14 03:18:41 +01:00
|
|
|
rcvar="ipmon_enable"
|
2005-10-28 18:55:38 +02:00
|
|
|
command="/sbin/${name}"
|
2004-01-17 11:40:45 +01:00
|
|
|
start_precmd="ipmon_precmd"
|
2002-06-14 00:14:37 +02:00
|
|
|
|
|
|
|
ipmon_precmd()
|
|
|
|
{
|
2003-04-24 10:20:47 +02:00
|
|
|
# Continue only if ipfilter or ipnat is enabled and the
|
|
|
|
# ipfilter module is loaded.
|
|
|
|
#
|
2010-08-01 17:41:00 +02:00
|
|
|
if ! checkyesno ipfilter_enable && ! checkyesno ipnat_enable ; then
|
2003-04-24 10:20:47 +02:00
|
|
|
err 1 "${name} requires either ipfilter or ipnat enabled"
|
|
|
|
fi
|
2013-09-10 15:48:33 +02:00
|
|
|
if ! ${ipfilter_program:-/sbin/ipf} -V | grep -q 'Running: yes' >/dev/null 2>&1; then
|
2003-04-24 10:20:47 +02:00
|
|
|
err 1 "ipfilter module is not loaded"
|
2002-10-12 12:31:31 +02:00
|
|
|
fi
|
2002-06-14 00:14:37 +02:00
|
|
|
return 0
|
|
|
|
}
|
2001-06-16 09:16:14 +02:00
|
|
|
|
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|