Skip to content

Plugin connectivity Config

Florian Forster edited this page Nov 21, 2023 · 1 revision

This page contains some example configurations for the connectivity plugin. This page is meant as a cookbook, so if you have a configuration for an aspect not handled here or a daemon not present, please feel free to add anything that's useful for you.

Monitoring all interfaces

This example shows the connectivity plugin monitoring all interfaces.

  LoadPlugin connectivity
  <Plugin connectivity>
  </Plugin>

Monitoring specific interfaces

This example shows connectivity plugin monitoring 2 interfaces, "eth0" and "eth1".

 LoadPlugin connectivity
 <Plugin connectivity>
   Interface eth0
   Interface eth1
 </Plugin>

Excluding interfaces

This example shows the connectivity plugin monitoring all interfaces except "eth1".

 LoadPlugin connectivity
 <Plugin connectivity>
   Interface eth1
   IgnoreSelected true
 </Plugin>

See also

Clone this wiki locally