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!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...