<?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: Infoblox DHCP log extraction in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197356#M20481</link>
    <description>&lt;P&gt;This regex worked for me on RegExr using your sample event.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;rex "on\s(?&amp;lt;ip&amp;gt;\d+\.\d+\.\d+\.\d+)"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 12 Jun 2014 15:00:08 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2014-06-12T15:00:08Z</dc:date>
    <item>
      <title>Infoblox DHCP log extraction</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197354#M20479</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;
How do you get the IP address from dhcpack from a log with the following format and the mac address?&lt;BR /&gt;
&amp;lt;30&amp;gt;Jun 12 10:40:44 172.20.10.23 dhcpd[3360]: DHCPACK on 172.20.194.157 to 5c:f9:38:ad:fe:88 (Specht00-AIR) via eth2 relay 172.29.192.5 lease-duration 86400 (RENEW).&lt;/P&gt;

&lt;P&gt;I tried this search&lt;BR /&gt;
sourcetype=ipam_dhcpd eventtype=dhcpd_dhcpack | rex field=_raw "on\s(?&lt;IP&gt;\d+-\d+-\d+-\d+-)"&lt;/IP&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:50:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197354#M20479</guid>
      <dc:creator>sholmes</dc:creator>
      <dc:date>2020-09-28T16:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: Infoblox DHCP log extraction</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197355#M20480</link>
      <description>&lt;P&gt;Try this for IP&lt;/P&gt;

&lt;P&gt;sourcetype=ipam_dhcpd eventtype=dhcpd_dhcpack | rex field=_raw "(?&lt;IP&gt;(?&amp;lt;=on\s)\d{2,3}.\d{2,3}.\d{2,3}.\d{2,3})"&lt;/IP&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:50:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197355#M20480</guid>
      <dc:creator>kmscalf</dc:creator>
      <dc:date>2020-09-28T16:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Infoblox DHCP log extraction</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197356#M20481</link>
      <description>&lt;P&gt;This regex worked for me on RegExr using your sample event.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;rex "on\s(?&amp;lt;ip&amp;gt;\d+\.\d+\.\d+\.\d+)"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 12 Jun 2014 15:00:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197356#M20481</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2014-06-12T15:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Infoblox DHCP log extraction</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197357#M20482</link>
      <description>&lt;P&gt;This worked with below to generate a table of IP address. &lt;BR /&gt;
sourcetype=ipam_dhcpd eventtype=dhcpd_dhcpack | rex "on\s(?&lt;IP&gt;\d+.\d+.\d+.\d+)" | table ip&lt;/IP&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:50:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197357#M20482</guid>
      <dc:creator>sholmes</dc:creator>
      <dc:date>2020-09-28T16:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Infoblox DHCP log extraction</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197358#M20483</link>
      <description>&lt;P&gt;worked to generate the information but now with other commands&lt;BR /&gt;
sourcetype=ipam_dhcpd eventtype=dhcpd_dhcpack | rex field=_raw "(?&lt;IP&gt;(?&amp;lt;=ons)d{2,3}.d{2,3}.d{2,3}.d{2,3})" | table ip&lt;/IP&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:50:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197358#M20483</guid>
      <dc:creator>sholmes</dc:creator>
      <dc:date>2020-09-28T16:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Infoblox DHCP log extraction</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197359#M20484</link>
      <description>&lt;P&gt;The latest infoblox TA supports DHCP as a sourcetype:&lt;BR /&gt;
sourcetype=infoblox:dhcp &lt;BR /&gt;
eventtype=infoblox_dns&lt;BR /&gt;
eventtype=infoblox_session_start &lt;BR /&gt;
eventtype=infoblox_session_end &lt;/P&gt;

&lt;P&gt;Check out the documentation here: &lt;A href="http://docs.splunk.com/Documentation/AddOns/latest/Infoblox/Sourcetypes" target="_blank"&gt;http://docs.splunk.com/Documentation/AddOns/latest/Infoblox/Sourcetypes&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;TA is available here: &lt;A href="https://splunkbase.splunk.com/app/2934/#/overview" target="_blank"&gt;https://splunkbase.splunk.com/app/2934/#/overview&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:56:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Infoblox-DHCP-log-extraction/m-p/197359#M20484</guid>
      <dc:creator>TonyLeeVT</dc:creator>
      <dc:date>2020-09-29T08:56:59Z</dc:date>
    </item>
  </channel>
</rss>

