xref: /OK3568_Linux_fs/buildroot/package/lldpd/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_LLDPD
2	bool "lldpd"
3	depends on BR2_USE_MMU # fork()
4	select BR2_PACKAGE_LIBEVENT
5	help
6	  lldpd is a 802.1ab implementation (LLDP) to help you locate
7	  neighbors of all your equipments.
8
9	  LLDP allows you to know exactly on which port is a server
10	  (and reciprocally).
11
12	  LLDP is an industry standard protocol designed to supplant
13	  proprietary Link-Layer protocols such as EDP or CDP. The
14	  goal of LLDP is to provide an inter-vendor compatible
15	  mechanism to deliver Link-Layer notifications to adjacent
16	  network devices.
17
18	  lldpd is an ISC-licensed implementation of LLDP for various
19	  Unixes. It also supports some proprietary protocols.
20
21	  https://vincentbernat.github.io/lldpd/
22
23if BR2_PACKAGE_LLDPD
24
25config BR2_PACKAGE_LLDPD_CDP
26	bool "CDP"
27	default y
28	help
29	  Enable Cisco Discovery Protocol
30
31config BR2_PACKAGE_LLDPD_FDP
32	bool "FDP"
33	default y
34	help
35	  Enable Foundry Discovery Protocol
36
37config BR2_PACKAGE_LLDPD_EDP
38	bool "EDP"
39	default y
40	help
41	  Enable Extreme Discovery Protocol
42
43config BR2_PACKAGE_LLDPD_SONMP
44	bool "SONMP"
45	default y
46	help
47	  Enable SynOptics Network Management
48
49config BR2_PACKAGE_LLDPD_LLDPMED
50	bool "LLDP-MED"
51	default y
52	help
53	  Enable LLDP-MED extension
54
55config BR2_PACKAGE_LLDPD_DOT1
56	bool "DOT1"
57	default y
58	help
59	  Enable Dot1 extension (VLAN stuff)
60
61config BR2_PACKAGE_LLDPD_DOT3
62	bool "DOT3"
63	default y
64	help
65	  Enable Dot3 extension (PHY stuff)
66
67config BR2_PACKAGE_LLDPD_CUSTOM_TLV
68	bool "Custom TLV"
69	default y
70	help
71	  Enable Custom TLV support
72
73endif
74