blob: ec6990a76c42ccd1ddf713d8fa62322f9a00b054 (
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
|
menu "Configuration"
depends on PACKAGE_lldpd
config LLDPD_WITH_PRIVSEP
bool
default y
prompt "Enable privilege separation (run lldpd with a chrooted 'lldp' user)"
config LLDPD_WITH_CDP
bool
default y
prompt "Enable support for the Cisco Discovery Protocol (CDP) version 1 and 2"
config LLDPD_WITH_FDP
bool
default y
prompt "Enable support for the Foundry Discovery Protocol (FDP)"
config LLDPD_WITH_EDP
bool
default y
prompt "Enable support for the Extreme Discovery Protocol (EDP)"
config LLDPD_WITH_SONMP
bool
default y
prompt "Enable support for the SynOptics Network Management Protocol"
config LLDPD_WITH_LLDPMED
bool
prompt "Enable LLDP-MED extension"
default y
config LLDPD_WITH_DOT1
bool
prompt "Enable Dot1 extension (VLAN stuff)"
default y
config LLDPD_WITH_DOT3
bool
prompt "Enable Dot3 extension (PHY stuff)"
default y
config LLDPD_WITH_CUSTOM
bool
prompt "Enable Custom TLVs"
default y
config LLDPD_WITH_JSON
bool
prompt "Enable JSON output for the LLDP Command-Line Interface"
default n
config LLDPD_WITH_SNMP
bool
default n
prompt "Enable the use of SNMP"
endmenu
|