<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Problems Detecting Rogue DHCP Servers on Linux, not on Windows</title>
	<atom:link href="http://www.bartbusschots.ie/blog/?feed=rss2&#038;p=352" rel="self" type="application/rss+xml" />
	<link>http://www.bartbusschots.ie/blog/?p=352</link>
	<description>An Irish Voice in the Blogsphere</description>
	<lastBuildDate>Thu, 02 Sep 2010 09:53:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: reloc4</title>
		<link>http://www.bartbusschots.ie/blog/?p=352&#038;cpage=1#comment-46783</link>
		<dc:creator>reloc4</dc:creator>
		<pubDate>Sat, 27 Mar 2010 19:26:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.bartbusschots.ie/blog/?p=352#comment-46783</guid>
		<description>After seaching the web for Days I found nothing satisfying. But now I hav got a easy solution:

dhcping -s 255.255.255.255 -r -v</description>
		<content:encoded><![CDATA[<p>After seaching the web for Days I found nothing satisfying. But now I hav got a easy solution:</p>
<p>dhcping -s 255.255.255.255 -r -v</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: L Petrey</title>
		<link>http://www.bartbusschots.ie/blog/?p=352&#038;cpage=1#comment-44346</link>
		<dc:creator>L Petrey</dc:creator>
		<pubDate>Tue, 09 Dec 2008 21:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.bartbusschots.ie/blog/?p=352#comment-44346</guid>
		<description>I recently experienced a rogue dhcp problem started by a virus.  The problem I think I would have with DHCPLOC.EXE is that it identifies good or bad servers based on IP number.  This malware spoofed the IP number of our valid DHCP server.  I was hoping there would be a tool (Windows) that would identify a valid server using the mac address of the dhcp helper in each segment.</description>
		<content:encoded><![CDATA[<p>I recently experienced a rogue dhcp problem started by a virus.  The problem I think I would have with DHCPLOC.EXE is that it identifies good or bad servers based on IP number.  This malware spoofed the IP number of our valid DHCP server.  I was hoping there would be a tool (Windows) that would identify a valid server using the mac address of the dhcp helper in each segment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gonzalo Balladares R.</title>
		<link>http://www.bartbusschots.ie/blog/?p=352&#038;cpage=1#comment-44028</link>
		<dc:creator>Gonzalo Balladares R.</dc:creator>
		<pubDate>Wed, 24 Sep 2008 15:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.bartbusschots.ie/blog/?p=352#comment-44028</guid>
		<description>Hi.
reading this:http://www.windowsecurity.com/articles/DHCP-Security-Part2.html

i&#039;ve found DHCP Probe
http://www.net.princeton.edu/software/dhcp_probe/

Regards.</description>
		<content:encoded><![CDATA[<p>Hi.<br />
reading this:http://www.windowsecurity.com/articles/DHCP-Security-Part2.html</p>
<p>i&#8217;ve found DHCP Probe<br />
<a href="http://www.net.princeton.edu/software/dhcp_probe/" rel="nofollow">http://www.net.princeton.edu/software/dhcp_probe/</a></p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart B</title>
		<link>http://www.bartbusschots.ie/blog/?p=352&#038;cpage=1#comment-6996</link>
		<dc:creator>Bart B</dc:creator>
		<pubDate>Thu, 21 Dec 2006 20:09:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.bartbusschots.ie/blog/?p=352#comment-6996</guid>
		<description>Thanks for that Phil. I gave your suggestion a go and it would definitely work except that it is returns quite a few false-positives. However, it gave me the inspiration to try again and I finally found a Perl script that actually works and then spent the afternoon molding it into a Nagios plugin that I just got working a few minutes ago. I&#039;ll do up a blog post about it tomorrow with the code for my nagios plugin since it&#039;s a hacked version of a GPL script.</description>
		<content:encoded><![CDATA[<p>Thanks for that Phil. I gave your suggestion a go and it would definitely work except that it is returns quite a few false-positives. However, it gave me the inspiration to try again and I finally found a Perl script that actually works and then spent the afternoon molding it into a Nagios plugin that I just got working a few minutes ago. I&#8217;ll do up a blog post about it tomorrow with the code for my nagios plugin since it&#8217;s a hacked version of a GPL script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://www.bartbusschots.ie/blog/?p=352&#038;cpage=1#comment-6978</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Thu, 21 Dec 2006 10:58:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.bartbusschots.ie/blog/?p=352#comment-6978</guid>
		<description>Good post bart, nice to see that windows has some decent commands relating to standard internet protocols. In the longer term, you could have a permanent method of spotting rogue dhcp servers. I found a rule for snort:

#
# DHCP Servers
#
alert udp !$DHCP_SERVERS 67 -&gt; 255.255.255.255 any (msg: &quot;possible rogue DHCP Server&quot;; sid:1000001;)

I know you use nagios, I dunno if theres a plugin for that yet.</description>
		<content:encoded><![CDATA[<p>Good post bart, nice to see that windows has some decent commands relating to standard internet protocols. In the longer term, you could have a permanent method of spotting rogue dhcp servers. I found a rule for snort:</p>
<p>#<br />
# DHCP Servers<br />
#<br />
alert udp !$DHCP_SERVERS 67 -&gt; 255.255.255.255 any (msg: &#8220;possible rogue DHCP Server&#8221;; sid:1000001;)</p>
<p>I know you use nagios, I dunno if theres a plugin for that yet.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
