Config.in 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. config BR2_PACKAGE_QUAGGA
  2. bool "quagga"
  3. help
  4. Routing software suite, providing implementations of
  5. OSPFv2, OSPFv3 (IPv6), RIP v1 and v2, RIPng (IPv6) and BGPv4+.
  6. http://www.quagga.net/
  7. if BR2_PACKAGE_QUAGGA
  8. config BR2_PACKAGE_QUAGGA_ZEBRA
  9. bool "zebra daemon"
  10. help
  11. Build zebra daemon.
  12. config BR2_PACKAGE_QUAGGA_TCP_ZEBRA
  13. bool "Use TCP sockets between zebra and protocol daemons"
  14. help
  15. Use a TCP socket to communicate between zebra (supervisor) and
  16. the different protocol daemons.
  17. You'll want this enabled if zebra and the protocol daemon(s) run
  18. on different hosts.
  19. config BR2_PACKAGE_QUAGGA_BGPD
  20. bool "BPGv4+ protocol"
  21. help
  22. Build bpgd daemon.
  23. config BR2_PACKAGE_QUAGGA_BGP_ANNOUNCE
  24. bool "BGP route announcement"
  25. depends on BR2_PACKAGE_QUAGGA_BGPD
  26. config BR2_PACKAGE_QUAGGA_ISISD
  27. bool "IS-IS protocol"
  28. help
  29. Enable isisd support in quagga.
  30. config BR2_PACKAGE_QUAGGA_OSPFD
  31. bool "OSPFv2 protocol"
  32. help
  33. Build ospfd daemon.
  34. config BR2_PACKAGE_QUAGGA_OPAQUE_LSA
  35. bool "OSPF Opaque-LSA with OSPFAPI support (RFC2370)"
  36. depends on BR2_PACKAGE_QUAGGA_OSPFD
  37. config BR2_PACKAGE_QUAGGA_OSPF6D
  38. bool "OSPFv3 (IPv6) protocol"
  39. depends on BR2_INET_IPV6
  40. help
  41. Build ospf6d daemon.
  42. config BR2_PACKAGE_QUAGGA_RIPD
  43. bool "RIPv2/v3 protocol"
  44. help
  45. Build ripd daemon.
  46. config BR2_PACKAGE_QUAGGA_RIPNGD
  47. bool "RIPng (IPv6) protocol"
  48. depends on BR2_INET_IPV6
  49. help
  50. Build ripngd daemon.
  51. config BR2_PACKAGE_QUAGGA_WATCHQUAGGA
  52. bool "Build watchquagga"
  53. help
  54. Build and install watchquagga, a zebra/protocol daemon supervisor.
  55. config BR2_PACKAGE_QUAGGA_SNMP
  56. bool "SNMP support"
  57. select BR2_PACKAGE_NETSNMP
  58. help
  59. Make quagga information available via SNMP SMUX.
  60. endif