Private GIT

Skip to content
Snippets Groups Projects
Unverified Commit 8d7b7526 authored by a3ilson's avatar a3ilson Committed by GitHub
Browse files

Update 10-syslog.conf

Updated configuration to allow for multiple pfsense ingests
parent c34c54c3
No related branches found
No related tags found
No related merge requests found
...@@ -3,9 +3,15 @@ filter { ...@@ -3,9 +3,15 @@ filter {
#change to pfSense ip address #change to pfSense ip address
if [host] =~ /192\.168\.1\.1/ { if [host] =~ /192\.168\.1\.1/ {
mutate { mutate {
add_tag => ["PFSense", "Ready"] add_tag => ["PFSense1", "Ready"]
} }
} }
#Add following and repeat for multiple
# if [host] =~ /192\.168\.1\.200/ {
# mutate {
# add_tag => ["PFSense2", "Ready"]
# }
# }
if "Ready" not in [tags] { if "Ready" not in [tags] {
mutate { mutate {
add_tag => [ "syslog" ] add_tag => [ "syslog" ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment