summaryrefslogtreecommitdiffstats
path: root/package/snort/ipkg
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-18 06:41:36 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-18 06:41:36 +0000
commit3602051f0fee67040df432f60bd006777b26c97b (patch)
tree859200a23e89215ee4c3b8ecb8dbcc22904899c9 /package/snort/ipkg
parent4b578a092831613bd23ec687944e627842699c87 (diff)
Add snort package, with experimental -custom package for build-time package customizations
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@667 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/snort/ipkg')
-rw-r--r--package/snort/ipkg/snort-custom.control10
-rw-r--r--package/snort/ipkg/snort-mysql.control10
-rw-r--r--package/snort/ipkg/snort-pgsql.control10
-rw-r--r--package/snort/ipkg/snort.conffiles3
-rw-r--r--package/snort/ipkg/snort.control10
-rw-r--r--package/snort/ipkg/snort.default2
-rw-r--r--package/snort/ipkg/snort.init23
7 files changed, 68 insertions, 0 deletions
diff --git a/package/snort/ipkg/snort-custom.control b/package/snort/ipkg/snort-custom.control
new file mode 100644
index 000000000..e5f4ab5fa
--- /dev/null
+++ b/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/package/snort/ipkg/snort-mysql.control b/package/snort/ipkg/snort-mysql.control
new file mode 100644
index 000000000..6acbad351
--- /dev/null
+++ b/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/package/snort/ipkg/snort-pgsql.control b/package/snort/ipkg/snort-pgsql.control
new file mode 100644
index 000000000..3a222905f
--- /dev/null
+++ b/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/package/snort/ipkg/snort.conffiles b/package/snort/ipkg/snort.conffiles
new file mode 100644
index 000000000..c38767248
--- /dev/null
+++ b/package/snort/ipkg/snort.conffiles
@@ -0,0 +1,3 @@
+/etc/default/snort
+/etc/snort/snort.conf
+/etc/snort/threshold.conf
diff --git a/package/snort/ipkg/snort.control b/package/snort/ipkg/snort.control
new file mode 100644
index 000000000..f4c3cb147
--- /dev/null
+++ b/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/package/snort/ipkg/snort.default b/package/snort/ipkg/snort.default
new file mode 100644
index 000000000..796a893b0
--- /dev/null
+++ b/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/package/snort/ipkg/snort.init b/package/snort/ipkg/snort.init
new file mode 100644
index 000000000..8c019c41d
--- /dev/null
+++ b/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 $?