<?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 One MAC multiple IP's Table View in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/One-MAC-multiple-IP-s-Table-View/m-p/120722#M32445</link>
    <description>&lt;P&gt;I have a search like this&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index="wireless" DHCP ACK | table _time src_mac src_ip&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;I would like to show a table of MAC and the assoseated IP's the MAC has used and when it recieved the IP&lt;/P&gt;

&lt;P&gt;Like this:&lt;/P&gt;

&lt;HR /&gt;

&lt;P&gt;&lt;CODE&gt;fc:c7:34:de:58:56     1/1/2013     123.45.6.789&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;                           1/2/2013       123.45.6.978
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;HR /&gt;

&lt;P&gt;&lt;CODE&gt;fc:25:3f:a0:6d:bb     2/1/2013     123.45.6.912&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;                           2/3/1023       123.45.6.864
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;HR /&gt;</description>
    <pubDate>Tue, 21 Jan 2014 20:59:58 GMT</pubDate>
    <dc:creator>hartfoml</dc:creator>
    <dc:date>2014-01-21T20:59:58Z</dc:date>
    <item>
      <title>One MAC multiple IP's Table View</title>
      <link>https://community.splunk.com/t5/Splunk-Search/One-MAC-multiple-IP-s-Table-View/m-p/120722#M32445</link>
      <description>&lt;P&gt;I have a search like this&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index="wireless" DHCP ACK | table _time src_mac src_ip&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;I would like to show a table of MAC and the assoseated IP's the MAC has used and when it recieved the IP&lt;/P&gt;

&lt;P&gt;Like this:&lt;/P&gt;

&lt;HR /&gt;

&lt;P&gt;&lt;CODE&gt;fc:c7:34:de:58:56     1/1/2013     123.45.6.789&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;                           1/2/2013       123.45.6.978
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;HR /&gt;

&lt;P&gt;&lt;CODE&gt;fc:25:3f:a0:6d:bb     2/1/2013     123.45.6.912&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;                           2/3/1023       123.45.6.864
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;HR /&gt;</description>
      <pubDate>Tue, 21 Jan 2014 20:59:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/One-MAC-multiple-IP-s-Table-View/m-p/120722#M32445</guid>
      <dc:creator>hartfoml</dc:creator>
      <dc:date>2014-01-21T20:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: One MAC multiple IP's Table View</title>
      <link>https://community.splunk.com/t5/Splunk-Search/One-MAC-multiple-IP-s-Table-View/m-p/120723#M32446</link>
      <description>&lt;P&gt;How about&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="wireless" DHCP ACK | stats list(_time) as time,list(src_ip) as src_ip by src_mac | convert ctime(time)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Jan 2014 21:16:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/One-MAC-multiple-IP-s-Table-View/m-p/120723#M32446</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2014-01-21T21:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: One MAC multiple IP's Table View</title>
      <link>https://community.splunk.com/t5/Splunk-Search/One-MAC-multiple-IP-s-Table-View/m-p/120724#M32447</link>
      <description>&lt;P&gt;...or if you want to use transaction for some reason,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="wireless" DHCP ACK | transaction src_mac | table src_mac _time src_ip
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Jan 2014 21:17:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/One-MAC-multiple-IP-s-Table-View/m-p/120724#M32447</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2014-01-21T21:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: One MAC multiple IP's Table View</title>
      <link>https://community.splunk.com/t5/Splunk-Search/One-MAC-multiple-IP-s-Table-View/m-p/120725#M32448</link>
      <description>&lt;P&gt;Wow this is great stuff.  Thanks Ayn&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2014 21:21:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/One-MAC-multiple-IP-s-Table-View/m-p/120725#M32448</guid>
      <dc:creator>hartfoml</dc:creator>
      <dc:date>2014-01-21T21:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: One MAC multiple IP's Table View</title>
      <link>https://community.splunk.com/t5/Splunk-Search/One-MAC-multiple-IP-s-Table-View/m-p/120726#M32449</link>
      <description>&lt;P&gt;If I could bother you for one more thing.&lt;/P&gt;

&lt;P&gt;If I wanted to use the transaction commend but only find the src_mac that have more than one IP how could I do that?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2014 21:32:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/One-MAC-multiple-IP-s-Table-View/m-p/120726#M32449</guid>
      <dc:creator>hartfoml</dc:creator>
      <dc:date>2014-01-21T21:32:29Z</dc:date>
    </item>
  </channel>
</rss>

