Filebeat/Netflow error "Exiting: module netflow is configured but has no enabled filesets" #9099
-
I'm trying to get netflow (or more specifically sFlow, as I'm using HP/Aruba gear) to ingest in Security Onion version 2.3.180. When trying to enable the ingestion pipeline, I get the dreaded error "Exiting: module netflow is configured but has no enabled filesets" I have been using the following documentation to configure netflow: And I've looked at various forum posts about the error referenced above, including a recent one from this forum: So far I am unable to get the pipeline enabled. I am running a distributed server setup. I have tried running the following command on both the manager node and the search node: docker exec -i so-filebeat filebeat setup modules -pipelines -modules netflow -c /usr/share/filebeat/module-setup.yml I get the same error on both the manager and search nodes. Here is the relevant (sanitized) config of the manager pillar .sls file:
init.sls relevant port binding:
I can provide other information if necessary. There are devices on the allowed networks that are configured to send sFlow traffic to the Manager node on udp/2055. (Aruba defaults to port udp/6343 for sFlow, but it has been configured to use udp/2055). Any assistance is very much appreciated. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Good morning! As noted in that other discussion post that you linked, you should need to manually enable the fileset on a newer version of SO, like the one that you're running. A few things to check:
If that's all clear, then the traffic should be able to come from your devices to the filebeat module. If you run "sudo so-filebeat-module-setup", does it list the netflow module in the output as its setting up the ingest pipelines? If all that looks good, try sending traffic to 2055/UDP using a Netflow generator (something like https://github.com/nerdalert/nflow-generator) to confirm that the issue isn't something on the sending/formatting side. Hope that helps! --Matt |
Beta Was this translation helpful? Give feedback.
Good morning!
As noted in that other discussion post that you linked, you should need to manually enable the fileset on a newer version of SO, like the one that you're running.
A few things to check:
If that's all clear, then the traffic should be able to come from your devices to the filebeat module.
If …