source: freewrt/package/snort/Config.in@ 18c227bd

freewrt_2_0
Last change on this file since 18c227bd was e3ea651, checked in by Thorsten Glaser <tg@…>, 19 years ago

what difference a little less menus and a little more indentation can make
now I can menuconfig in about half the time

wbx@ allowed me to do so... I did keep some menus where it made sense though

git-svn-id: svn://www.freewrt.org/trunk/freewrt@414 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 2.3 KB
Line 
1#menu "snort............................. Ligthweight Network Intrusion Detection System (NIDS)"
2
3config FWRT_COMPILE_SNORT
4 tristate
5 default n
6 depends FWRT_PACKAGE_SNORT_BASIC || FWRT_PACKAGE_SNORT_MYSQL || FWRT_PACKAGE_SNORT_PGSQL || FWRT_PACKAGE_SNORT_CUSTOM
7
8choice
9 prompt "snort............................. Ligthweight Network Intrusion Detection System (NIDS)"
10 tristate
11 optional
12 help
13
14 A ligthweight Network Intrusion Detection System (NIDS)
15
16 http://www.snort.org/
17
18 Depends:
19 - libmysqlclient (for MySQL database logging support)
20 - libnet
21 - libpcap
22 - libpcre
23 - libpq (for PostgreSQL database logging support)
24
25 config FWRT_PACKAGE_SNORT_BASIC
26 prompt "snort........................... without database support"
27 tristate
28 select FWRT_COMPILE_SNORT
29 select FWRT_PACKAGE_LIBNET
30 select FWRT_PACKAGE_LIBPCAP
31 select FWRT_PACKAGE_LIBPCRE
32
33 config FWRT_PACKAGE_SNORT_MYSQL
34 prompt "snort-mysql..................... with MySQL database support"
35 tristate
36 select FWRT_COMPILE_SNORT
37 select FWRT_PACKAGE_LIBNET
38 select FWRT_PACKAGE_LIBPCAP
39 select FWRT_PACKAGE_LIBPCRE
40 select FWRT_PACKAGE_LIBMYSQLCLIENT
41
42 config FWRT_PACKAGE_SNORT_PGSQL
43 prompt "snort-pgsql..................... with PostgreSQL database support"
44 tristate
45 select FWRT_COMPILE_SNORT
46 select FWRT_PACKAGE_LIBNET
47 select FWRT_PACKAGE_LIBPCAP
48 select FWRT_PACKAGE_LIBPCRE
49 select FWRT_PACKAGE_LIBPQ
50
51 config FWRT_PACKAGE_SNORT_CUSTOM
52 prompt "snort-custom.................... customized to your needs"
53 tristate
54 select FWRT_COMPILE_SNORT
55 select FWRT_PACKAGE_LIBNET
56 select FWRT_PACKAGE_LIBPCAP
57 select FWRT_PACKAGE_LIBPCRE
58
59 config FWRT_PACKAGE_SNORT_ENABLE_DEBUG
60 prompt "debug (enable debugging options, useful for bugreports)"
61 bool
62 default n
63 depends FWRT_PACKAGE_SNORT_CUSTOM
64
65 config FWRT_PACKAGE_SNORT_ENABLE_INLINE
66 prompt "Inline mode (read packets from iptables instead of libpcap)"
67 bool
68 default n
69 depends FWRT_PACKAGE_SNORT_CUSTOM
70 select FWRT_PACKAGE_IPTABLES
71
72 config FWRT_PACKAGE_SNORT_WITH_MYSQL
73 prompt "MySQL database support"
74 bool
75 default n
76 depends FWRT_PACKAGE_SNORT_CUSTOM
77 select FWRT_PACKAGE_LIBMYSQLCLIENT
78
79 config FWRT_PACKAGE_SNORT_WITH_PGSQL
80 prompt "PostgreSQL database support"
81 bool
82 default n
83 depends FWRT_PACKAGE_SNORT_CUSTOM
84 select FWRT_PACKAGE_LIBPQ
85
86endchoice
87
88#endmenu
Note: See TracBrowser for help on using the repository browser.