Config.in 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. config 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 equipment.
  8. LLDP allows you to know exactly on which port is a server
  9. (and reciprocally).
  10. LLDP is an industry standard protocol designed to supplant
  11. proprietary Link-Layer protocols such as EDP or CDP. The
  12. goal of LLDP is to provide an inter-vendor compatible
  13. mechanism to deliver Link-Layer notifications to adjacent
  14. network devices.
  15. lldpd is an ISC-licensed implementation of LLDP for various
  16. Unixes. It also supports some proprietary protocols.
  17. https://lldpd.github.io/
  18. if BR2_PACKAGE_LLDPD
  19. config BR2_PACKAGE_LLDPD_CDP
  20. bool "CDP"
  21. default y
  22. help
  23. Enable Cisco Discovery Protocol
  24. config BR2_PACKAGE_LLDPD_FDP
  25. bool "FDP"
  26. default y
  27. help
  28. Enable Foundry Discovery Protocol
  29. config BR2_PACKAGE_LLDPD_EDP
  30. bool "EDP"
  31. default y
  32. help
  33. Enable Extreme Discovery Protocol
  34. config BR2_PACKAGE_LLDPD_SONMP
  35. bool "SONMP"
  36. default y
  37. help
  38. Enable SynOptics Network Management
  39. config BR2_PACKAGE_LLDPD_LLDPMED
  40. bool "LLDP-MED"
  41. default y
  42. help
  43. Enable LLDP-MED extension
  44. config BR2_PACKAGE_LLDPD_DOT1
  45. bool "DOT1"
  46. default y
  47. help
  48. Enable Dot1 extension (VLAN stuff)
  49. config BR2_PACKAGE_LLDPD_DOT3
  50. bool "DOT3"
  51. default y
  52. help
  53. Enable Dot3 extension (PHY stuff)
  54. config BR2_PACKAGE_LLDPD_CUSTOM_TLV
  55. bool "Custom TLV"
  56. default y
  57. help
  58. Enable Custom TLV support
  59. endif