network.conf 582 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #
  2. # FFHO Check Commands for network related stuff (Salt Managed)
  3. #
  4. object CheckCommand "ifupdown2" {
  5. import "plugin-check-command"
  6. command = [ FFHOPluginDir + "/check_ifupdown2" ]
  7. }
  8. object CheckCommand "bird_ospf" {
  9. import "plugin-check-command"
  10. command = [ FFHOPluginDir + "/check_bird_ospf" ]
  11. arguments = {
  12. "-6" = {
  13. set_if = "$ipv6$"
  14. }
  15. }
  16. vars.ipv6 = false
  17. }
  18. object CheckCommand "bird_ibgp" {
  19. import "plugin-check-command"
  20. command = [ FFHOPluginDir + "/check_bird_ibgp" ]
  21. arguments = {
  22. "-6" = {
  23. set_if = "$ipv6$"
  24. }
  25. }
  26. vars.ipv6 = false
  27. }