summaryrefslogtreecommitdiffstats
path: root/rules/net-snmp.in
blob: 1214c6be02f0ccc924b199bc945b1dc5e295675b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
menuconfig NET_SNMP
	bool "Net-SNMP            "

config NET_SNMP_FEATURE_ENABLE_LITTLE_ENDIAN
	bool
	default n
	depends on NET_SNMP
	prompt "Build for little endian target"

config NET_SNMP_FEATURE_ENABLE_MINI_AGENT
	bool
	default y
	depends on NET_SNMP
	prompt "Build a minimal agent"

config NET_SNMP_FEATURE_DISABLE_AGENT
	bool
	default n
	depends on NET_SNMP
	prompt "Do not build the agent (snmpd)"

config NET_SNMP_FEATURE_DISABLE_APPLICATIONS
	bool
	default n
	depends on NET_SNMP
	prompt "Do not build the apps (snmpget, ...)"

config NET_SNMP_FEATURE_DISABLE_SCRIPTS
	bool
	default n
	depends on NET_SNMP
	prompt "Do not build the scripts (mib2c, ...)"

config NET_SNMP_FEATURE_DISABLE_MIBS
	bool
	default n
	depends on NET_SNMP
	prompt "Do not install the mib files"

config NET_SNMP_FEATURE_DISABLE_MIB_LOADING
	bool
	default n
	depends on NET_SNMP
	prompt "Do not include code that parses and manipulates mib files."

config NET_SNMP_FEATURE_DISABLE_SNMPV1
	bool
	default n
	depends on NET_SNMP
	prompt "Do not include code that implements SNMPv1"

config NET_SNMP_FEATURE_DISABLE_SNMPV2C
	bool
	default n
	depends on NET_SNMP
	prompt "Do not include code that implements SNMPv2c"

config NET_SNMP_FEATURE_DISABLE_DES
	bool
	default n
	depends on NET_SNMP
	prompt "Do not support DES encryption"

config NET_SNMP_FEATURE_DISABLE_MD5
	bool
	default n
	depends on NET_SNMP
	prompt "Do not support MD5 authentication"

config NET_SNMP_FEATURE_DISABLE_SNMPTRAPD
	bool
	default n
	depends on NET_SNMP
	prompt "Disable agentx subagent code in snmptrapd"

config NET_SNMP_FEATURE_ENABLE_IPV6
	bool
	default n
	depends on NET_SNMP
	prompt "Enable IPv6 ready version"

config NET_SNMP_FEATURE_ENABLE_LOCAL_SMUX
	bool
	default n
	depends on NET_SNMP
	prompt "Restrict SMUX connections to localhost (by default)"

config NET_SNMP_FEATURE_DISABLE_DEBUGGING
	bool
	default n
	depends on NET_SNMP
	prompt "Disallows debugging code to be built in"

config NET_SNMP_FEATURE_ENABLE_DEVELOPER
	bool
	default n
	depends on NET_SNMP
	prompt "Turn on super-duper-extra-compile-warnings using gcc"

config NET_SNMP_FEATURE_DEFAULT_SNMP_VERSION
	prompt "default SNMP version: 1, 2 (for SNMPv2c), or 3"
	string
	default	"3"
	depends on NET_SNMP

config NET_SNMP_FEATURE_LOGFILE
	prompt "logfile location"
	string
	default	"/var/log/snmpd.log"
	depends on NET_SNMP

config NET_SNMP_FEATURE_PERSISTENT_DIR
	prompt "persistent data storage directory"
	string
	default	"/var/net-snmp"
	depends on NET_SNMP

config NET_SNMP_FEATURE_WITH_MIB_MODULES
	prompt "compile with additional mib modules"
	string
	default	""
	depends on NET_SNMP

config NET_SNMP_FEATURE_WITH_MIBS
	prompt "default mib id's to read"
	string
	default	""
	depends on NET_SNMP

config NET_SNMP_MIB_INSTALL_DIR
	prompt "directory to install mib files"
	string
	default	"/usr/share/snmp/mibs"
	depends on NET_SNMP