<?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 to get the forwarder IP address reproting to splunk in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292198#M88276</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;Can i please know how to get the all forwarders IP addresses that a reporting to splunk without use of internal index as some of the users don't have access to the internal data . Therefore, searches created with index=_internal will not work for those people. Is there anyway to create the search without of the use of that  to get the all forwarders IP's ?&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jan 2018 19:35:46 GMT</pubDate>
    <dc:creator>kteng2024</dc:creator>
    <dc:date>2018-01-09T19:35:46Z</dc:date>
    <item>
      <title>How to get the forwarder IP address reproting to splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292198#M88276</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;Can i please know how to get the all forwarders IP addresses that a reporting to splunk without use of internal index as some of the users don't have access to the internal data . Therefore, searches created with index=_internal will not work for those people. Is there anyway to create the search without of the use of that  to get the all forwarders IP's ?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 19:35:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292198#M88276</guid>
      <dc:creator>kteng2024</dc:creator>
      <dc:date>2018-01-09T19:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the forwarder IP address reproting to splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292199#M88277</link>
      <description>&lt;P&gt;I use this as a saved search and have it Run As "owner".&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*metrics.log* group=tcpin_connections | regex hostname!="\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}" | eval sos_server=hostname | stats latest(sourceIp) AS IP latest(arch) AS cpu_arch latest(fwdType) AS forwarder_type latest(os) AS os_name latest(version) AS version  by sos_server
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Jan 2018 19:39:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292199#M88277</guid>
      <dc:creator>JDukeSplunk</dc:creator>
      <dc:date>2018-01-09T19:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the forwarder IP address reproting to splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292200#M88278</link>
      <description>&lt;P&gt;Hi kteng2024,&lt;BR /&gt;
you could create a scheduled search and put results in a lookup using outputlookup command.&lt;BR /&gt;
In this way users with no access to _internal can have the result.&lt;BR /&gt;
Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 19:41:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292200#M88278</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2018-01-09T19:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the forwarder IP address reproting to splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292201#M88279</link>
      <description>&lt;P&gt;You can create a dashboard that makes use of a savedsearch configured to run as the owner of the savedsearch, even if the users accessing the dashboard don't have permission to search _internal.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/550511/how-to-restrict-user-access-to-search-from-dashboa.html"&gt;This recent answers post&lt;/A&gt; explains the concept.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 19:42:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292201#M88279</guid>
      <dc:creator>micahkemp</dc:creator>
      <dc:date>2018-01-09T19:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the forwarder IP address reproting to splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292202#M88280</link>
      <description>&lt;P&gt;hey  @kteng2024&lt;/P&gt;

&lt;P&gt;Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  | rest /services/deployment/server/clients  | table dns ip  | rename ip as forwarder_ip
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;let me know if this helps!&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 19:50:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292202#M88280</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2018-01-09T19:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the forwarder IP address reproting to splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292203#M88281</link>
      <description>&lt;P&gt;Best way would be to have a saved search, owned by your/splunk admin, which queries that data from _internal index and puts it to, 1) a lookup table, if number of clients is smaller (&amp;lt;10k), 2) summary index, for larger number of clients, make sure regular user have access to this summary index. &lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 20:30:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292203#M88281</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2018-01-09T20:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the forwarder IP address reproting to splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292204#M88282</link>
      <description>&lt;P&gt;This would be a great method for admins to know the requested information. This REST endpoint is only available from Deployment server (unless Deployment server is added as search peer to search head). Furthermore, capability of running REST queries may not be available to regular users (depends upon authorization settings), making is less feasible.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2018 20:33:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/292204#M88282</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2018-01-09T20:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the forwarder IP address reproting to splunk</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/578675#M201678</link>
      <description>&lt;P&gt;Thank you, that was I want to use to recognize some UF that we use to forward data to our ES environment and aren't under my administration.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Dec 2021 20:17:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-the-forwarder-IP-address-reproting-to-splunk/m-p/578675#M201678</guid>
      <dc:creator>lenrigodoy</dc:creator>
      <dc:date>2021-12-16T20:17:58Z</dc:date>
    </item>
  </channel>
</rss>

