<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: As per default search it will looking for all the ports but I wants to look for only specific port range of 1 to 1024. in Splunk Enterprise Security</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315687#M2890</link>
    <description>&lt;P&gt;is the datamodel accelerated?&lt;/P&gt;</description>
    <pubDate>Mon, 16 Apr 2018 06:21:44 GMT</pubDate>
    <dc:creator>deepashri_123</dc:creator>
    <dc:date>2018-04-16T06:21:44Z</dc:date>
    <item>
      <title>As per default search it will looking for all the ports but I wants to look for only specific port range of 1 to 1024.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315680#M2883</link>
      <description>&lt;P&gt;| tstats summariesonly=true allow_old_summaries=true dc(All_Application_State.Ports.transport_dest_port) as "port_count" from datamodel=Application_State.All_Application_State where   nodename=All_Application_State.Ports  by "All_Application_State.dest" | rename "All_Application_State.dest" as "dest" | where 'port_count'&amp;gt;20&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 18:53:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315680#M2883</guid>
      <dc:creator>N92</dc:creator>
      <dc:date>2020-09-29T18:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: As per default search it will looking for all the ports but I wants to look for only specific port range of 1 to 1024.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315681#M2884</link>
      <description>&lt;P&gt;Maybe something like this (NOT TESTED as I don't have Enterprise Security installed):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats summariesonly=true allow_old_summaries=true dc(All_Application_State.Ports.transport_dest_port) as "port_count" 
from 
    datamodel=Application_State.All_Application_State 
where 
    nodename=All_Application_State.Ports
    All_Application_State.Ports.transport_dest_port &amp;gt;= 1
    All_Application_State.Ports.transport_dest_port &amp;lt;= 1024
by 
    "All_Application_State.dest" 
| rename "All_Application_State.dest" as "dest" 
| where 'port_count'&amp;gt;20
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It is pretty much your search with 2 filters in the where clause in order to look for ports 1-1024, assuming that field is a number of course.&lt;/P&gt;

&lt;P&gt;Hope that helps,&lt;BR /&gt;
J&lt;/P&gt;</description>
      <pubDate>Fri, 06 Apr 2018 09:05:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315681#M2884</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2018-04-06T09:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: As per default search it will looking for all the ports but I wants to look for only specific port range of 1 to 1024.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315682#M2885</link>
      <description>&lt;P&gt;Thanks  @javiergn&lt;/P&gt;

&lt;P&gt;But it's not working.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Apr 2018 09:36:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315682#M2885</guid>
      <dc:creator>N92</dc:creator>
      <dc:date>2018-04-06T09:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: As per default search it will looking for all the ports but I wants to look for only specific port range of 1 to 1024.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315683#M2886</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/113132"&gt;@javiergn&lt;/a&gt;,&lt;/P&gt;

&lt;P&gt;Can you try using this query:&lt;/P&gt;

&lt;P&gt;| tstats summariesonly=true allow_old_summaries=true dc(All_Application_State.Ports.transport_dest_port) as "port_count" &lt;BR /&gt;
 from &lt;BR /&gt;
     datamodel=Application_State.All_Application_State &lt;BR /&gt;
 where &lt;BR /&gt;
     nodename=All_Application_State.Ports AND &lt;BR /&gt;
     All_Application_State.Ports.transport_dest_port &amp;lt; "1025"&lt;BR /&gt;
 by &lt;BR /&gt;
     "All_Application_State.dest" &lt;BR /&gt;
 | rename "All_Application_State.dest" as "dest" &lt;BR /&gt;
 | where 'port_count'&amp;gt;20&lt;/P&gt;

&lt;P&gt;Let me know if this helps!!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 19:31:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315683#M2886</guid>
      <dc:creator>deepashri_123</dc:creator>
      <dc:date>2020-09-29T19:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: As per default search it will looking for all the ports but I wants to look for only specific port range of 1 to 1024.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315684#M2887</link>
      <description>&lt;P&gt;Hi, what kind of error do you get? or is it just empty?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 13:52:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315684#M2887</guid>
      <dc:creator>javiergn</dc:creator>
      <dc:date>2018-04-09T13:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: As per default search it will looking for all the ports but I wants to look for only specific port range of 1 to 1024.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315685#M2888</link>
      <description>&lt;P&gt;Sorry for late replay. But also no luck with your modifications. @deepashri_123&lt;/P&gt;</description>
      <pubDate>Sun, 15 Apr 2018 14:17:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315685#M2888</guid>
      <dc:creator>N92</dc:creator>
      <dc:date>2018-04-15T14:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: As per default search it will looking for all the ports but I wants to look for only specific port range of 1 to 1024.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315686#M2889</link>
      <description>&lt;P&gt;sorry to late replay. @javiergn&lt;/P&gt;

&lt;P&gt;It's empty.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Apr 2018 14:18:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315686#M2889</guid>
      <dc:creator>N92</dc:creator>
      <dc:date>2018-04-15T14:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: As per default search it will looking for all the ports but I wants to look for only specific port range of 1 to 1024.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315687#M2890</link>
      <description>&lt;P&gt;is the datamodel accelerated?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Apr 2018 06:21:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315687#M2890</guid>
      <dc:creator>deepashri_123</dc:creator>
      <dc:date>2018-04-16T06:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: As per default search it will looking for all the ports but I wants to look for only specific port range of 1 to 1024.</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315688#M2891</link>
      <description>&lt;P&gt;@deepashri_123&lt;BR /&gt;
Yes. datamodel is accelerated. I am able to run by default search but not able to run with your modification. The result is empty. It does not show any error.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Apr 2018 07:41:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/As-per-default-search-it-will-looking-for-all-the-ports-but-I/m-p/315688#M2891</guid>
      <dc:creator>N92</dc:creator>
      <dc:date>2018-04-17T07:41:03Z</dc:date>
    </item>
  </channel>
</rss>

