Can anyone offer any tips on getting Sonicwall syslogs to work properly?
I receive data but comes into NLS tagged with "_grokparsefailure_sysloginput".
Thanks
Support for Sonicwall firewall?
Re: Support for Sonicwall firewall?
I found option at https://github.com/jdnow/Logstash-Confi ... l.conf#L24.
First create an input under Configure > Global (All Instances) > Global Config, with this configuration:
Next, create a filter with:
After applying the configuration, configure the Sonicwall to send logs to port 5514 and it will go through this input and filter.
First create an input under Configure > Global (All Instances) > Global Config, with this configuration:
Code: Select all
syslog {
type => Sonicwall
port => 5514
}Code: Select all
if [type] == "Sonicwall" {
kv {
exclude_keys => [ "c", "id", "m", "n", "pri", "proto" ]
}
grok {
match => [ "src", "%{IP:srcip}:%{DATA:srcinfo}" ]
}
grok {
match => [ "dst", "%{IP:dstip}:%{DATA:dstinfo}" ]
}
grok {
remove_field => [ "srcinfo", "dstinfo" ]
}
geoip {
add_tag => [ "geoip" ]
source => "srcip"
}
}As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.