Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. config BR2_PACKAGE_QUAGGA
  2. bool "quagga"
  3. help
  4. routing software suite, providing implementations of
  5. OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4.
  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_BGPD
  13. bool "bgpd support"
  14. help
  15. Enable bgpd support in quagga.
  16. config BR2_PACKAGE_QUAGGA_RIPD
  17. bool "ripd support"
  18. help
  19. Enable ripd support in quagga.
  20. config BR2_PACKAGE_QUAGGA_RIPNGD
  21. bool "ripngd support"
  22. depends on BR2_INET_IPV6
  23. help
  24. Enable ripngd support in quagga.
  25. config BR2_PACKAGE_QUAGGA_OSPFD
  26. bool "ospfd support"
  27. help
  28. Enable ospfd support in quagga.
  29. config BR2_PACKAGE_QUAGGA_OSPF6D
  30. bool "ospf6d support"
  31. depends on BR2_INET_IPV6
  32. help
  33. Enable ospf6d support in quagga.
  34. config BR2_PACKAGE_QUAGGA_WATCHQUAGGA
  35. bool "watchquagga support"
  36. help
  37. Enable watchquagga support in quagga.
  38. config BR2_PACKAGE_QUAGGA_ISISD
  39. bool "isisd support"
  40. help
  41. Enable isisd support in quagga.
  42. config BR2_PACKAGE_QUAGGA_BGP_ANNOUNCE
  43. bool "BGP route announcement"
  44. config BR2_PACKAGE_QUAGGA_NETLINK
  45. bool "use linux netlink interface"
  46. default y
  47. config BR2_PACKAGE_QUAGGA_SNMP
  48. bool "SNMP support"
  49. select BR2_PACKAGE_NETSNMP
  50. config BR2_PACKAGE_QUAGGA_TCP_ZEBRA
  51. bool "TCP/IP socket connection between zebra and proto daemon"
  52. config BR2_PACKAGE_QUAGGA_OPAGUE_LSA
  53. bool "OSPF Opaque-LSA with OSPFAPI support (RFC2370)"
  54. endif