Background story: We have some customers using a site to site VPN to reach our corporate networks. The customer has like 3-4 network prefixes in their environment. I want to check network traffic counters to see if the customer networks are sending/receiving any traffic to/from my corporate network. Please share some suggested searches. I'm looking for ANY type of network traffic.
For example:
customer network A 192.168.1.0/24
customer network B 192.168.2.0/24
I would like to scan for activity within the prefixes like 192.168.1.0/24 but I'm not sure if cidrmatch is appropriate or how the syntax would work.
What data have you ingested into Splunk?
Do you mean datasets? I believe that this is syslog data from routers and firewalls. Pardon my limited knowledge of splunk.
OK so what data in your data set do you have that will give you the information you require?
(The key to using Splunk is understanding your data. Splunk can then help you derive additional information / insights from the data.)
sourcetype=dns:logs
Does that help? Right now I'm just running a verbose search like this:
index=* 192.168.1.* or 192.168.2.* | stats county by src_ip, dest_ip service
There must be a better way to search for IP traffic.