diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-04-18 06:41:36 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-04-18 06:41:36 +0000 |
commit | be3b83daa5108d2031acbd5ccff6069cf903217d (patch) | |
tree | 7447f09ef9421fb72eadde3de35efc00f30e37d1 /openwrt/package/snort/ipkg | |
parent | e3b6b2c1a6eed2b6369223cf4c83aa296a2edb5b (diff) | |
download | mtk-20170518-be3b83daa5108d2031acbd5ccff6069cf903217d.zip mtk-20170518-be3b83daa5108d2031acbd5ccff6069cf903217d.tar.gz mtk-20170518-be3b83daa5108d2031acbd5ccff6069cf903217d.tar.bz2 |
Add snort package, with experimental -custom package for build-time package customizations
SVN-Revision: 667
Diffstat (limited to 'openwrt/package/snort/ipkg')
-rw-r--r-- | openwrt/package/snort/ipkg/snort-custom.control | 10 | ||||
-rw-r--r-- | openwrt/package/snort/ipkg/snort-mysql.control | 10 | ||||
-rw-r--r-- | openwrt/package/snort/ipkg/snort-pgsql.control | 10 | ||||
-rw-r--r-- | openwrt/package/snort/ipkg/snort.conffiles | 3 | ||||
-rw-r--r-- | openwrt/package/snort/ipkg/snort.control | 10 | ||||
-rw-r--r-- | openwrt/package/snort/ipkg/snort.default | 2 | ||||
-rw-r--r-- | openwrt/package/snort/ipkg/snort.init | 23 |
7 files changed, 68 insertions, 0 deletions
diff --git a/openwrt/package/snort/ipkg/snort-custom.control b/openwrt/package/snort/ipkg/snort-custom.control new file mode 100644 index 0000000..e5f4ab5 --- /dev/null +++ b/openwrt/package/snort/ipkg/snort-custom.control @@ -0,0 +1,10 @@ +Package: snort +Priority: optional +Section: net +Version: [TBDL] +Architecture: [TBDL] +Maintainer: Nico <nthill@free.fr> +Source: http://nthill.free.fr/openwrt/sources/snort/ +Description: a flexible Network Intrusion Detection System (NIDS), + built with custom options +Depends: libnet, libpcap, libpcre diff --git a/openwrt/package/snort/ipkg/snort-mysql.control b/openwrt/package/snort/ipkg/snort-mysql.control new file mode 100644 index 0000000..6acbad3 --- /dev/null +++ b/openwrt/package/snort/ipkg/snort-mysql.control @@ -0,0 +1,10 @@ +Package: snort-mysql +Priority: optional +Section: net +Version: [TBDL] +Architecture: [TBDL] +Maintainer: Nico <nthill@free.fr> +Source: http://nthill.free.fr/openwrt/sources/snort/ +Description: a flexible Network Intrusion Detection System (NIDS), + built with MySQL database logging support +Depends: libnet, libpcap, libpcre, libmysqlclient diff --git a/openwrt/package/snort/ipkg/snort-pgsql.control b/openwrt/package/snort/ipkg/snort-pgsql.control new file mode 100644 index 0000000..3a22290 --- /dev/null +++ b/openwrt/package/snort/ipkg/snort-pgsql.control @@ -0,0 +1,10 @@ +Package: snort-pgsql +Priority: optional +Section: net +Version: [TBDL] +Architecture: [TBDL] +Maintainer: Nico <nthill@free.fr> +Source: http://nthill.free.fr/openwrt/sources/snort/ +Description: a flexible Network Intrusion Detection System (NIDS), + built with PostgreSQL database logging support +Depends: libnet, libpcap, libpcre, libpq diff --git a/openwrt/package/snort/ipkg/snort.conffiles b/openwrt/package/snort/ipkg/snort.conffiles new file mode 100644 index 0000000..c387672 --- /dev/null +++ b/openwrt/package/snort/ipkg/snort.conffiles @@ -0,0 +1,3 @@ +/etc/default/snort +/etc/snort/snort.conf +/etc/snort/threshold.conf diff --git a/openwrt/package/snort/ipkg/snort.control b/openwrt/package/snort/ipkg/snort.control new file mode 100644 index 0000000..f4c3cb1 --- /dev/null +++ b/openwrt/package/snort/ipkg/snort.control @@ -0,0 +1,10 @@ +Package: snort +Priority: optional +Section: net +Version: [TBDL] +Architecture: [TBDL] +Maintainer: Nico <nthill@free.fr> +Source: http://nthill.free.fr/openwrt/sources/snort/ +Description: a flexible Network Intrusion Detection System (NIDS), + built without database logging support +Depends: libnet, libpcap, libpcre diff --git a/openwrt/package/snort/ipkg/snort.default b/openwrt/package/snort/ipkg/snort.default new file mode 100644 index 0000000..796a893 --- /dev/null +++ b/openwrt/package/snort/ipkg/snort.default @@ -0,0 +1,2 @@ +INTERFACE="vlan1" # WAN +OPTIONS="-i $INTERFACE -c /etc/snort/snort.conf -D -N -q -s" diff --git a/openwrt/package/snort/ipkg/snort.init b/openwrt/package/snort/ipkg/snort.init new file mode 100644 index 0000000..8c019c4 --- /dev/null +++ b/openwrt/package/snort/ipkg/snort.init @@ -0,0 +1,23 @@ +#!/bin/sh + +DEFAULT=/etc/default/snort +LOG_D=/var/log/snort +RUN_D=/var/run +[ -f $DEFAULT ] && . $DEFAULT +PID_F=$RUN_D/snort_$INTERFACE.pid + +case $1 in + start) + [ -d $LOG_D ] || mkdir -p $LOG_D + [ -d $RUN_D ] || mkdir -p $RUN_D + snort $OPTIONS + ;; + stop) + [ -f $PID_F ] && kill $(cat $PID_F) + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac + +exit $? |