I have a csv with ip addresses. I would like to conduct a search for addresses that are NOT listed in that csv.
I was attempting the following but it does not render the results I was expecting. I want to search for ip addresses that are not in that list. IE: unknown address...
Splunk Enterprise Security
index=myindex
| rex "(?<ip>\b(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b)" | sort ip | table ip NOT [inputlookup known_addresses.csv]
... View more