<?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: Exclude a known IP from results in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106530#M27697</link>
    <description>&lt;P&gt;I actually did get this to work using NOT.  I just needed to be more creative.  Thanks&lt;/P&gt;</description>
    <pubDate>Thu, 25 Apr 2013 19:53:19 GMT</pubDate>
    <dc:creator>MattQ</dc:creator>
    <dc:date>2013-04-25T19:53:19Z</dc:date>
    <item>
      <title>Exclude a known IP from results</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106527#M27694</link>
      <description>&lt;P&gt;I am returning query results that give a list of IPs on which an event has occurred.  I want to create an alert to fire historically on the data if criteria is met HOWEVER I have a known IP address that will always meet the criteria (my IP).  I would like to exclude this either from the results and then fire an event on the remaining results or set a custom alert condition to alert on an event EXCEPT if it is from my IP.  &lt;/P&gt;

&lt;P&gt;This should be simple.  Just missing it&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2013 17:23:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106527#M27694</guid>
      <dc:creator>MattQ</dc:creator>
      <dc:date>2013-04-25T17:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude a known IP from results</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106528#M27695</link>
      <description>&lt;P&gt;Have you taken a look at the NOT operator? Or the &lt;CODE&gt;!=&lt;/CODE&gt; operator? Both could be used in your search to exclude results otherwise matching your search criteria.&lt;/P&gt;

&lt;P&gt;/K&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2013 17:53:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106528#M27695</guid>
      <dc:creator>kristian_kolb</dc:creator>
      <dc:date>2013-04-25T17:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude a known IP from results</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106529#M27696</link>
      <description>&lt;P&gt;Normally this would work yes but the way I am manipulating the data I cant seem to make the NOT command fit.  Is there a way to get results of A, C, F, G but exclude: F from my table results list?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2013 19:48:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106529#M27696</guid>
      <dc:creator>MattQ</dc:creator>
      <dc:date>2013-04-25T19:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude a known IP from results</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106530#M27697</link>
      <description>&lt;P&gt;I actually did get this to work using NOT.  I just needed to be more creative.  Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2013 19:53:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106530#M27697</guid>
      <dc:creator>MattQ</dc:creator>
      <dc:date>2013-04-25T19:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude a known IP from results</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106531#M27698</link>
      <description>&lt;P&gt;can you share your search phrase please im trying to do similar thing.&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2016 02:06:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106531#M27698</guid>
      <dc:creator>chrisprangnell</dc:creator>
      <dc:date>2016-05-13T02:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude a known IP from results</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106532#M27699</link>
      <description>&lt;P&gt;@chrisprangnell Try this pseudo code&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search | stats count by ip | search NOT [| inputlookup knowniplist.csv | table ip ] 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 May 2016 03:40:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106532#M27699</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-05-13T03:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude a known IP from results</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106533#M27700</link>
      <description>&lt;P&gt;you can list all your IP that you want to white lsit in CSV file then run your search againest that file &lt;/P&gt;

&lt;P&gt;eg&lt;/P&gt;

&lt;P&gt;tag=traffic     NOT [|inputcsv kiristian_whitelist_IP.csv ]&lt;/P&gt;

&lt;P&gt;good luck&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 09:42:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Exclude-a-known-IP-from-results/m-p/106533#M27700</guid>
      <dc:creator>mosman_splunk</dc:creator>
      <dc:date>2020-09-29T09:42:08Z</dc:date>
    </item>
  </channel>
</rss>

