<?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: How do I do a reverse DNS lookup in Splunk? in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/How-do-I-do-a-reverse-DNS-lookup-in-Splunk/m-p/418081#M7293</link>
    <description>&lt;P&gt;That's not a reverse DNS lookup, that's a table lookup.&lt;/P&gt;

&lt;P&gt;I think the assumption (and MY question) is that you &lt;EM&gt;don't&lt;/EM&gt; have a csv file...&lt;/P&gt;

&lt;P&gt;Question not answered.&lt;/P&gt;</description>
    <pubDate>Thu, 07 Feb 2019 20:49:24 GMT</pubDate>
    <dc:creator>Michael</dc:creator>
    <dc:date>2019-02-07T20:49:24Z</dc:date>
    <item>
      <title>How do I do a reverse DNS lookup in Splunk?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-do-I-do-a-reverse-DNS-lookup-in-Splunk/m-p/418079#M7291</link>
      <description>&lt;P&gt;All, &lt;/P&gt;

&lt;P&gt;I have the host name, so I am looking for the IP of that host. Not sure how to do that. &lt;/P&gt;

&lt;P&gt;any help?&lt;BR /&gt;
-Daniel &lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 01:44:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-do-I-do-a-reverse-DNS-lookup-in-Splunk/m-p/418079#M7291</guid>
      <dc:creator>daniel333</dc:creator>
      <dc:date>2019-01-23T01:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do a reverse DNS lookup in Splunk?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-do-I-do-a-reverse-DNS-lookup-in-Splunk/m-p/418080#M7292</link>
      <description>&lt;P&gt;hello there&lt;BR /&gt;
if you have  lookup table that contains the ip and the host and the fields are: ip, host lets call it &lt;CODE&gt;dns.csv&lt;/CODE&gt; and you have a search that capture the host&lt;BR /&gt;
you can run the following search using the &lt;CODE&gt;lookup&lt;/CODE&gt; command&lt;BR /&gt;
&lt;CODE&gt;... your search to find host ... | lookup dns.csv host OUTPUTNEW ip ...&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;very nice explanation here:&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/588630/understanding-the-lookup-command.html"&gt;https://answers.splunk.com/answers/588630/understanding-the-lookup-command.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;hope it helps&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jan 2019 02:09:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-do-I-do-a-reverse-DNS-lookup-in-Splunk/m-p/418080#M7292</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2019-01-23T02:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do a reverse DNS lookup in Splunk?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-do-I-do-a-reverse-DNS-lookup-in-Splunk/m-p/418081#M7293</link>
      <description>&lt;P&gt;That's not a reverse DNS lookup, that's a table lookup.&lt;/P&gt;

&lt;P&gt;I think the assumption (and MY question) is that you &lt;EM&gt;don't&lt;/EM&gt; have a csv file...&lt;/P&gt;

&lt;P&gt;Question not answered.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2019 20:49:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-do-I-do-a-reverse-DNS-lookup-in-Splunk/m-p/418081#M7293</guid>
      <dc:creator>Michael</dc:creator>
      <dc:date>2019-02-07T20:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do a reverse DNS lookup in Splunk?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-do-I-do-a-reverse-DNS-lookup-in-Splunk/m-p/418082#M7294</link>
      <description>&lt;P&gt;There has been a lookup &lt;EM&gt;dnslookup&lt;/EM&gt; in splunk for a long time now.&lt;BR /&gt;
name to ip:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| lookup dnslookup clienthost AS host OUTPUT clientip as ip
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;ip to name:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| lookup dnslookup clientip AS ip OUTPUT clienthost AS host 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Apr 2019 13:17:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-do-I-do-a-reverse-DNS-lookup-in-Splunk/m-p/418082#M7294</guid>
      <dc:creator>peiffer</dc:creator>
      <dc:date>2019-04-05T13:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do a reverse DNS lookup in Splunk?</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/How-do-I-do-a-reverse-DNS-lookup-in-Splunk/m-p/553320#M7295</link>
      <description>&lt;P&gt;Answered 4/5/2019&lt;BR /&gt;&lt;BR /&gt;| lookup dnslookup clientip AS ip OUTPUT clienthost AS host&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 12:22:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/How-do-I-do-a-reverse-DNS-lookup-in-Splunk/m-p/553320#M7295</guid>
      <dc:creator>peiffer</dc:creator>
      <dc:date>2021-05-27T12:22:31Z</dc:date>
    </item>
  </channel>
</rss>

