<?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: Help with implementing a GeoIP Lookup in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188033#M44848</link>
    <description>&lt;P&gt;For converting an ip to a location using the maxmind app you need to use the &lt;CODE&gt;geoip&lt;/CODE&gt; command, something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=syslog | rex "Dst: (?&amp;lt;dst_ip&amp;gt;[^,:]+)" | geoip dst_ip
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Enter that search into the maps view of the Google Maps app, you should see clusters on the map.&lt;/P&gt;</description>
    <pubDate>Fri, 14 Mar 2014 14:16:13 GMT</pubDate>
    <dc:creator>martin_mueller</dc:creator>
    <dc:date>2014-03-14T14:16:13Z</dc:date>
    <item>
      <title>Help with implementing a GeoIP Lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188025#M44840</link>
      <description>&lt;P&gt;Hello everybody, &lt;/P&gt;

&lt;P&gt;first of all i have to say that i am totally new to splunk. &lt;BR /&gt;
What i want to do is to implement a GeoIP lookup. Yet splunk receives syslog data from a Lancom 1781VA (over ISDN) Router. I don't even know if GeoIP works with the syslog data. &lt;BR /&gt;
Can anyone explain me how to implement a GeoIP lookup within splunk?&lt;/P&gt;

&lt;P&gt;I'm not a native speaker, so please excuse if there an mistakes. &lt;/P&gt;

&lt;P&gt;Please feel free to ask me if there is information you need.&lt;/P&gt;

&lt;P&gt;thanks in advance&lt;/P&gt;

&lt;P&gt;Markus&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 09:49:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188025#M44840</guid>
      <dc:creator>MarkusT</dc:creator>
      <dc:date>2014-03-14T09:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help with implementing a GeoIP Lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188026#M44841</link>
      <description>&lt;P&gt;Do post some sample data. The general idea is to extract an IP from the data, run the &lt;CODE&gt;iplocation&lt;/CODE&gt; command, and then do statistics or mapping based on the lat/lon generated.&lt;/P&gt;

&lt;P&gt;If you happen to need German-language help (guessing based on the name...), let me know and we'll figure something out.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 10:12:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188026#M44841</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-03-14T10:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help with implementing a GeoIP Lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188027#M44842</link>
      <description>&lt;P&gt;Thank you for answering that fast Martin,&lt;/P&gt;

&lt;P&gt;German-language help would really be awesome &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;here is a screenshot of some sample data&lt;/P&gt;

&lt;P&gt;&lt;A href="http://abload.de/image.php?img=sampledatak4jmc.jpg"&gt;http://abload.de/image.php?img=sampledatak4jmc.jpg&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;thanks again&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 10:35:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188027#M44842</guid>
      <dc:creator>MarkusT</dc:creator>
      <dc:date>2014-03-14T10:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help with implementing a GeoIP Lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188028#M44843</link>
      <description>&lt;P&gt;Assuming the IP has been blue'd out, an extraction and &lt;CODE&gt;iplocation&lt;/CODE&gt; using &lt;CODE&gt;rex&lt;/CODE&gt; might look like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;base search | rex "peer (?&amp;lt;peer_ip&amp;gt;\d+\.\d+\.\d+\.\d+)" | iplocation peer_ip
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;That will add fields to your field list on the left, such as lat an lon for the estimates location.&lt;/P&gt;

&lt;P&gt;Wenn du meinen Namen anklickst, ist da ein Contact Me button - darüber können wir auch Deutsch schnacken.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 10:43:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188028#M44843</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-03-14T10:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help with implementing a GeoIP Lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188029#M44844</link>
      <description>&lt;P&gt;Hi Martin,&lt;/P&gt;

&lt;P&gt;thanks again. Due to the circumstance that sending you a message over the Contact Me button is not working at the moment i go on writing you here.&lt;/P&gt;

&lt;P&gt;To come back to the topic: The blue'd out part is the name of another firewall which is connected with the one i get my logs from.&lt;/P&gt;

&lt;P&gt;As far as i see it, in my syslog messages there is not the destination ip displayed. But that is the one i want to display on my GoogleMaps map (i've installted the GoogleMaps add on). Is syslog the right source for this kind of information?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 10:56:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188029#M44844</guid>
      <dc:creator>MarkusT</dc:creator>
      <dc:date>2014-03-14T10:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help with implementing a GeoIP Lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188030#M44845</link>
      <description>&lt;P&gt;Sending the message worked fine, twice even &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;If you don't have the destination IP but want to know the location of the destination IP then you're out of luck. You'll need to find a data source that contains this IP first.&lt;BR /&gt;
"syslog" is quite a wide array of different data sources, so that depends on your device producing the data. I'm not familiar with that device though, maybe there's logging configuration to change to include that IP.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 11:02:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188030#M44845</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-03-14T11:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Help with implementing a GeoIP Lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188031#M44846</link>
      <description>&lt;P&gt;No i got to the point that i have syslog messages that look like this one:&lt;BR /&gt;
&lt;A href="http://abload.de/image.php?img=sampledata20njmr.jpg"&gt;http://abload.de/image.php?img=sampledata20njmr.jpg&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;I installed MaxMind and GoogleMaps. &lt;/P&gt;

&lt;P&gt;How can i Display the IP that comes after Dst: on the GoogleMaps map?&lt;BR /&gt;
Somehow I have to use this rex command to name that value.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 12:32:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188031#M44846</guid>
      <dc:creator>MarkusT</dc:creator>
      <dc:date>2014-03-14T12:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help with implementing a GeoIP Lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188032#M44847</link>
      <description>&lt;P&gt;I tried it with this command:&lt;BR /&gt;
sourcetype=syslog | rex field=_raw "(?&lt;IP&gt;\d+.\d+.\d+.\d+)" | lookup geoip clientip as ip&lt;/IP&gt;&lt;/P&gt;

&lt;P&gt;But the Map is still empty&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 12:42:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188032#M44847</guid>
      <dc:creator>MarkusT</dc:creator>
      <dc:date>2014-03-14T12:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: Help with implementing a GeoIP Lookup</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188033#M44848</link>
      <description>&lt;P&gt;For converting an ip to a location using the maxmind app you need to use the &lt;CODE&gt;geoip&lt;/CODE&gt; command, something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=syslog | rex "Dst: (?&amp;lt;dst_ip&amp;gt;[^,:]+)" | geoip dst_ip
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Enter that search into the maps view of the Google Maps app, you should see clusters on the map.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 14:16:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Help-with-implementing-a-GeoIP-Lookup/m-p/188033#M44848</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-03-14T14:16:13Z</dc:date>
    </item>
  </channel>
</rss>

