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.
... View more