Logstash 6.5.4 Changing UDP Listener Address

Hello,

Currently I am trying to change the UDP listener for the netflow module on Logstash from 0.0.0.0:2055 to 10.10.10.10:2055 for example.

I have tried changing the logstash.yml file to the following:

modules:
    - name: netflow
    var.input.udp.host: "10.10.10.10"
    var.input.udp.port: 2055
    var.elasticsearch.hosts: "10.10.10.2:9200"
    var.kibana.host: "10.10.10.2:5601"
    var.elasticsearch.ssl.enabled: false
    var.kibana.scheme: http
    var.kibana.ssl.enabled: false
    var.kibana.ssl.verification_mode: disable

however, I do not think I am configuring this properly. What changes should I make?

Thanks,
Eric

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.