Splunk Search

Removing ports utilizing "between" X and Y

Hegemon76
Communicator

Hello,

I am trying to use a "between" function. For instance:

index=main sourcetype=":cisco_asa" | where dest_port > 1024 AND dest_port!= 8000-8999 etc etc

Obviously "8000-8999" does not work. Any help would be appreciated.

Thank You,

Tim

0 Karma
1 Solution

elliotproebstel
Champion

The way to search for dest_port!=8000-8999 would be to split it like this: dest_port<8000 OR dest_port>8999. Also, you don't need to push that into a where clause; it can (and should) go directly into your base search for better efficiency:

index=main sourcetype=":cisco_asa" dest_port > 1024 AND (dest_port<8000 OR dest_port>8999)

View solution in original post

elliotproebstel
Champion

The way to search for dest_port!=8000-8999 would be to split it like this: dest_port<8000 OR dest_port>8999. Also, you don't need to push that into a where clause; it can (and should) go directly into your base search for better efficiency:

index=main sourcetype=":cisco_asa" dest_port > 1024 AND (dest_port<8000 OR dest_port>8999)

Hegemon76
Communicator

Perfect!

Thanks!

0 Karma

ppablo
Retired

Hi @Hegemon76

Glad you found your answer through the awesome @elliotproebstel 🙂 Please don't forget to resolve your question by clicking "Accept" directly below his answer. This will make the solution easier to find for others who have the same question. Also, upvoting posts by the users who help you out is always encouraged.

Thanks!

0 Karma

Hegemon76
Communicator

Done and Done

ppablo
Retired

Thank you!

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

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