collectd - listen only on speciffic vlans

This commit is contained in:
Vladimir Vitkov 2015-10-24 16:23:29 +03:00
parent b8d4660ab3
commit 25292db93d
1 changed files with 11 additions and 2 deletions

View File

@ -114,8 +114,17 @@ LoadPlugin network
Listen "ff18::efc0:4a42" Listen "ff18::efc0:4a42"
# All local interfaces # All local interfaces
#Listen "0.0.0.0" #Listen "0.0.0.0"
# FIXME: We will listen only on mgmt
Listen "*" # listen on test vlans
Listen "10.200.0.1"
Listen "10.203.0.1"
Listen "10.204.0.1"
# listen on prod vlans
Listen "10.100.0.1"
Listen "10.103.0.1"
Listen "10.104.0.1"
ReportStats true ReportStats true
</Plugin> </Plugin>