<?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 How can i find a full list of Users using IP address in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-can-i-find-a-full-list-of-Users-using-IP-address/m-p/350698#M165437</link>
    <description>&lt;P&gt;Hi &lt;/P&gt;

&lt;P&gt;I have the below command that i think works 95% of the time.&lt;/P&gt;

&lt;P&gt;index=_internal sourcetype=splunkd_ui_access | stats count by clientip , user , _time | lookup dnslookup clientip | timechart span=1d distinct_count(clienthost) by clienthost  limit=100&lt;/P&gt;

&lt;P&gt;The issues is sometime is reports users that did not use the system. I think this might be because of IP address changing. However i am not 100% about this.&lt;/P&gt;

&lt;P&gt;Any help would be brill.&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 16:37:26 GMT</pubDate>
    <dc:creator>robertlynch2020</dc:creator>
    <dc:date>2020-09-29T16:37:26Z</dc:date>
    <item>
      <title>How can i find a full list of Users using IP address</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-i-find-a-full-list-of-Users-using-IP-address/m-p/350698#M165437</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;

&lt;P&gt;I have the below command that i think works 95% of the time.&lt;/P&gt;

&lt;P&gt;index=_internal sourcetype=splunkd_ui_access | stats count by clientip , user , _time | lookup dnslookup clientip | timechart span=1d distinct_count(clienthost) by clienthost  limit=100&lt;/P&gt;

&lt;P&gt;The issues is sometime is reports users that did not use the system. I think this might be because of IP address changing. However i am not 100% about this.&lt;/P&gt;

&lt;P&gt;Any help would be brill.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 16:37:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-i-find-a-full-list-of-Users-using-IP-address/m-p/350698#M165437</guid>
      <dc:creator>robertlynch2020</dc:creator>
      <dc:date>2020-09-29T16:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: How can i find a full list of Users using IP address</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-i-find-a-full-list-of-Users-using-IP-address/m-p/350699#M165438</link>
      <description>&lt;P&gt;Hi robertlynch2020,&lt;BR /&gt;
surely IP address changes because is assigned by a dns.&lt;BR /&gt;
Anyway you could create a lookup with a list of all users.&lt;BR /&gt;
You could maintain this lookup with a scheduled search or an extraction from Active Directory.&lt;BR /&gt;
If you have this lookup you can check the users in your search and list the ones not present:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=splunkd_ui_access
| eval user=lower(user)
| stats count BY user
| append [ | inputlookup user_lookup.csv | eval user=lower(user), count=0 | fields user count ]
| stats sum(count) AS Total by user
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;In this way users with Total=0 are missed and users with Total greater than 0 are present.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 12:20:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-i-find-a-full-list-of-Users-using-IP-address/m-p/350699#M165438</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-11-03T12:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: How can i find a full list of Users using IP address</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-i-find-a-full-list-of-Users-using-IP-address/m-p/350700#M165439</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;

&lt;BLOCKQUOTE&gt;
&lt;P&gt;The issues is sometime is reports users that did not use the system. I think this might be because of IP address changing. However i am not 100% about this.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;This doesn't sound right... how should splunk know about the names of other users that didn't access the instance??&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 12:24:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-i-find-a-full-list-of-Users-using-IP-address/m-p/350700#M165439</guid>
      <dc:creator>horsefez</dc:creator>
      <dc:date>2017-11-03T12:24:40Z</dc:date>
    </item>
  </channel>
</rss>

