Alerting

How would I be able to exclude source_ip and destination_ip combination?

Splunk77
Explorer

I have a look up table with two columns. They are for source IP and destination IP addresses. I want to be able to search for firewall traffic logs and filter out any source IP and destination IP combination from the results.

The following query allows for excluding source_ip from the lookup table. How would I be able to exclude source_ip and destination_ip combination?

 

index=firewall sourcetype=<source_type> NOT [ | inputlookup test.csv

table source_ip] 

| table _time, source_ip, destination_ip, action, protocol 

Thanks.

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

When you read from the lookup file, include both the source and destination IP addresses.  The trick then is to use the format command to build a search string in the form (src_ip=1.2.3.4 AND dest_ip=5.6.7.8).  It's important to ensure the field names returned by the subsearch match field names available in the main search.

index=firewall sourcetype=<source_type> NOT [ | inputlookup test.csv
fields source_ip destination_ip | format maxresults=0 ] 
| table _time, source_ip, destination_ip, action, protocol 

 

---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

When you read from the lookup file, include both the source and destination IP addresses.  The trick then is to use the format command to build a search string in the form (src_ip=1.2.3.4 AND dest_ip=5.6.7.8).  It's important to ensure the field names returned by the subsearch match field names available in the main search.

index=firewall sourcetype=<source_type> NOT [ | inputlookup test.csv
fields source_ip destination_ip | format maxresults=0 ] 
| table _time, source_ip, destination_ip, action, protocol 

 

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...