You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.4 KiB

  1. # The staticd,watchfrr and zebra daemons are always started.
  2. #
  3. bgpd=no
  4. ospfd=no
  5. #ospfd_instances=1,20
  6. ospf6d=no
  7. ripd=no
  8. ripngd=no
  9. isisd=no
  10. pimd=no
  11. ldpd=no
  12. nhrpd=no
  13. eigrpd=no
  14. babeld=no
  15. sharpd=no
  16. pbrd=no
  17. bfdd=no
  18. fabricd=no
  19. vrrpd=no
  20. #
  21. # If this option is set the /etc/init.d/frr script automatically loads
  22. # the config via "vtysh -b" when the servers are started.
  23. # Check /etc/pam.d/frr if you intend to use "vtysh"!
  24. #
  25. vtysh_enable=yes
  26. zebra_options=" -A 127.0.0.1 -s 90000000"
  27. bgpd_options=" -A 127.0.0.1"
  28. ospfd_options=" -A 127.0.0.1"
  29. ospf6d_options=" -A ::1"
  30. ripd_options=" -A 127.0.0.1"
  31. ripngd_options=" -A ::1"
  32. isisd_options=" -A 127.0.0.1"
  33. pimd_options=" -A 127.0.0.1"
  34. ldpd_options=" -A 127.0.0.1"
  35. nhrpd_options=" -A 127.0.0.1"
  36. eigrpd_options=" -A 127.0.0.1"
  37. babeld_options=" -A 127.0.0.1"
  38. sharpd_options=" -A 127.0.0.1"
  39. pbrd_options=" -A 127.0.0.1"
  40. staticd_options="-A 127.0.0.1"
  41. bfdd_options=" -A 127.0.0.1"
  42. fabricd_options="-A 127.0.0.1"
  43. vrrpd_options=" -A 127.0.0.1"
  44. # The list of daemons to watch is automatically generated by the init script.
  45. #watchfrr_options=""
  46. # for debugging purposes, you can specify a "wrap" command to start instead
  47. # of starting the daemon directly, e.g. to use valgrind on ospfd:
  48. # ospfd_wrap="/usr/bin/valgrind"
  49. # or you can use "all_wrap" for all daemons, e.g. to use perf record:
  50. # all_wrap="/usr/bin/perf record --call-graph -"
  51. # the normal daemon command is added to this at the end.