logstash-plugins / logstash-codec-netflow

Apache License 2.0
78 stars 88 forks source link

Avaya support #148

Closed rdrgporto closed 5 years ago

rdrgporto commented 6 years ago

Hi everyone,

I've been working with this codec with Cisco devices. Morever, I would like to work with Avaya devices, however, I have taken a look at Elastic documentacion and I have seen that any Avaya devices are supported.

Is there any possibility to add support for Avaya devices ?

Thanks in advance,

Regards :vulcan_salute:

jorritfolmer commented 6 years ago

Do you currently have Avaya devices sending netflow/ipfix that isn't properly decoded? If so, you can provide a pcap with Avaya netflow/ipfix traffic so we can fix that?

rdrgporto commented 6 years ago

Hi @jorritfolmer,

I have configured an Avaya VSP-9012 in order to send data by IPFIX. Regarding to Logstash, I did a simple conf:

  input {

    udp { port => 9995}

  }

  output {

    elasticsearch {
        hosts => ["localhost:9200"]
        index => "ipfix-%{+yyyy.ww}"
  }

I have attached an example of pcap (I did it by tcdump).

Thanks in advance,

Regards

robcowart commented 6 years ago

@rdrgporto can you provide the actual PCAP file, instead of a text representation of it?

rdrgporto commented 6 years ago

Hi @robcowart,

Here you are:

Thanks in advance,

Regards

jorritfolmer commented 6 years ago

Hi @rdrgporto I checked your pcap but there aren't any flow packets in it, only templates. The templates decode fine btw.

rdrgporto commented 4 years ago

Hi,

With Filebeat Input Netflow works :smiley:

Regards