source: freewrt/package/snort-wireless/Config.in@ ca629a6

freewrt_1_0 freewrt_2_0
Last change on this file since ca629a6 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.6 KB
Line 
1#menu "snort-wireless.................... Ligthweight Wireless Network Intrusion Detection System (NIDS)"
2
3config FWRT_COMPILE_SNORT_WIRELESS
4 tristate
5 default n
6 depends FWRT_PACKAGE_SNORT_WIRELESS_BASIC || FWRT_PACKAGE_SNORT_WIRELESS_MYSQL || FWRT_PACKAGE_SNORT_WIRELESS_PGSQL || FWRT_PACKAGE_SNORT_WIRELESS_CUSTOM
7
8choice
9 prompt "snort-wireless.................... Ligthweight Wireless Network Intrusion Detection System (NIDS)"
10 tristate
11 optional
12 help
13
14 A ligthweight Wireless Network Intrusion Detection System (NIDS)
15
16 http://www.snort-wireless.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
26 config FWRT_PACKAGE_SNORT_WIRELESS_BASIC
27 prompt "snort-wireless.................. without database support"
28 tristate
29 select FWRT_COMPILE_SNORT_WIRELESS
30 select FWRT_PACKAGE_LIBNET
31 select FWRT_PACKAGE_LIBPCAP
32 select FWRT_PACKAGE_LIBPCRE
33
34 config FWRT_PACKAGE_SNORT_WIRELESS_MYSQL
35 prompt "snort-wireless-mysql............ with MySQL database support"
36 tristate
37 select FWRT_COMPILE_SNORT_WIRELESS
38 select FWRT_PACKAGE_LIBNET
39 select FWRT_PACKAGE_LIBPCAP
40 select FWRT_PACKAGE_LIBPCRE
41 select FWRT_PACKAGE_LIBMYSQLCLIENT
42
43 config FWRT_PACKAGE_SNORT_WIRELESS_PGSQL
44 prompt "snort-wireless-pgsql............ with PostgreSQL database support"
45 tristate
46 select FWRT_COMPILE_SNORT_WIRELESS
47 select FWRT_PACKAGE_LIBNET
48 select FWRT_PACKAGE_LIBPCAP
49 select FWRT_PACKAGE_LIBPCRE
50 select FWRT_PACKAGE_LIBPQ
51
52 config FWRT_PACKAGE_SNORT_WIRELESS_CUSTOM
53 prompt "snort-wireless-custom........... customized to your needs"
54 tristate
55 select FWRT_COMPILE_SNORT_WIRELESS
56 select FWRT_PACKAGE_LIBNET
57 select FWRT_PACKAGE_LIBPCAP
58 select FWRT_PACKAGE_LIBPCRE
59
60 config FWRT_PACKAGE_SNORT_WIRELESS_ENABLE_DEBUG
61 prompt "enable debug (enable debugging options, useful for bugreports)"
62 bool
63 default n
64 depends FWRT_PACKAGE_SNORT_WIRELESS_CUSTOM
65
66 config FWRT_PACKAGE_SNORT_WIRELESS_ENABLE_INLINE
67 prompt "enable inline mode (read packets from iptables instead of libpcap)"
68 bool
69 default n
70 depends FWRT_PACKAGE_SNORT_WIRELESS_CUSTOM
71 select FWRT_PACKAGE_IPTABLES
72
73 config FWRT_PACKAGE_SNORT_WIRELESS_WITH_MYSQL
74 prompt "with MySQL database support"
75 bool
76 default n
77 depends FWRT_PACKAGE_SNORT_WIRELESS_CUSTOM
78 select FWRT_PACKAGE_LIBMYSQLCLIENT
79
80 config FWRT_PACKAGE_SNORT_WIRELESS_WITH_PGSQL
81 prompt "with PostgreSQL database support"
82 bool
83 default n
84 depends FWRT_PACKAGE_SNORT_WIRELESS_CUSTOM
85 select FWRT_PACKAGE_LIBPQ
86
87endchoice
88
89#endmenu
Note: See TracBrowser for help on using the repository browser.