Skip to content

Commit

Permalink
[Filebeat] rfc6587 framing for fortinet firewall (elastic#23837)
Browse files Browse the repository at this point in the history
- use rfc6587 framing when transferring fortinet firewall logs via
  syslog over TCP
- use rfc6587 framing when transferring fortinet clientendpoint logs
  via syslog over TCP
  • Loading branch information
leehinman authored Feb 9, 2021
1 parent 0a02a98 commit ed01b8f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fix concurrent modification exception in Suricata ingest node pipeline. {pull}23534[23534]
- Fix Zoom module parameters for basic auth and url path. {pull}23779[23779]
- Fix handling of ModifiedProperties field in Office 365. {pull}23777[23777]
- Use rfc6587 framing for fortinet firewall and clientendpoint filesets when transferring over tcp. {pull}23837[23837]
- Fix goroutines leak with some inputs in autodiscover. {pull}23722[23722]
- Fix various processing errors in the Suricata module. {pull}23236[23236]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ paths:
{{ end }}
exclude_files: [".gz$"]

{{ else }}
{{ else if eq .input "tcp" }}

type: {{.input}}
host: "{{.syslog_host}}:{{.syslog_port}}"
framing: rfc6587

{{ else if eq .input "udp" }}

type: {{.input}}
host: "{{.syslog_host}}:{{.syslog_port}}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

type: tcp
host: "{{.syslog_host}}:{{.syslog_port}}"
framing: rfc6587

{{ else if eq .input "udp" }}

Expand Down

0 comments on commit ed01b8f

Please sign in to comment.