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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...