<?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: Getting Stuck with DHCPd</title>
	<atom:link href="http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/feed/" rel="self" type="application/rss+xml" />
	<link>http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/</link>
	<description>Faith, Technology and Randomness in Life, According to Scott</description>
	<lastBuildDate>Tue, 09 Mar 2010 18:56:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: John Hohm</title>
		<link>http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/comment-page-1/#comment-87749</link>
		<dc:creator>John Hohm</dc:creator>
		<pubDate>Mon, 17 Sep 2007 21:11:47 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/#comment-87749</guid>
		<description>Those options worked for me, too, except that dhcpd could not run on ppp interfaces (which did not necessarily even exist when dhcp3-server starts); I first had to add the &quot;bcrelay eth0&quot; option to my pptpd.conf so dhcpd sees the DHCPInform messages.</description>
		<content:encoded><![CDATA[<p>Those options worked for me, too, except that dhcpd could not run on ppp interfaces (which did not necessarily even exist when dhcp3-server starts); I first had to add the &#8220;bcrelay eth0&#8243; option to my pptpd.conf so dhcpd sees the DHCPInform messages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Shigorin</title>
		<link>http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/comment-page-1/#comment-86649</link>
		<dc:creator>Michael Shigorin</dc:creator>
		<pubDate>Sat, 19 May 2007 08:50:31 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/#comment-86649</guid>
		<description>There are dual-port PCI cards, I&#039;ve recently looked at exactly IBM&#039;s one.  You should be able to find yours at ebay if doing a separate subnet is still a more desirable approach.</description>
		<content:encoded><![CDATA[<p>There are dual-port PCI cards, I&#8217;ve recently looked at exactly IBM&#8217;s one.  You should be able to find yours at ebay if doing a separate subnet is still a more desirable approach.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arvirago</title>
		<link>http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/comment-page-1/#comment-23799</link>
		<dc:creator>Arvirago</dc:creator>
		<pubDate>Fri, 31 Mar 2006 13:37:49 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/#comment-23799</guid>
		<description>Thanks a lot, it works ok.</description>
		<content:encoded><![CDATA[<p>Thanks a lot, it works ok.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Robinson</title>
		<link>http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/comment-page-1/#comment-21333</link>
		<dc:creator>John Robinson</dc:creator>
		<pubDate>Tue, 07 Jun 2005 09:31:44 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/#comment-21333</guid>
		<description>Here&#039;s how I did it with dhcp-3:

# MS routes: adds extras to supplement routers option
option ms-classless-static-routes code 249 = array of integer 8;
# RFC3442 routes: overrides routers option
option rfc3442-classless-static-routes code 121 = array of integer 8;
option routers 172.22.0.1;
option ms-classless-static-routes 24, 172, 22, 99, 172, 22, 0, 1 ;
option rfc3442-classless-static-routes 24, 172, 22, 99, 172, 22, 0, 1,
                0, 172, 22, 0, 1 ;

The ms- option has just one route, to 172.22.99.0/24 via 172.22.0.1 (yes, a portion of 172.22.0.0/16 is elsewhere; without the route the client would expect to find 172.22.99.0/24 on the LAN); RFC3442 says that if you use the option, you have to specify the default route too and that clients MUST ignore the routers option if present.</description>
		<content:encoded><![CDATA[<p>Here&#8217;s how I did it with dhcp-3:</p>
<p># MS routes: adds extras to supplement routers option<br />
option ms-classless-static-routes code 249 = array of integer 8;<br />
# RFC3442 routes: overrides routers option<br />
option rfc3442-classless-static-routes code 121 = array of integer 8;<br />
option routers 172.22.0.1;<br />
option ms-classless-static-routes 24, 172, 22, 99, 172, 22, 0, 1 ;<br />
option rfc3442-classless-static-routes 24, 172, 22, 99, 172, 22, 0, 1,<br />
                0, 172, 22, 0, 1 ;</p>
<p>The ms- option has just one route, to 172.22.99.0/24 via 172.22.0.1 (yes, a portion of 172.22.0.0/16 is elsewhere; without the route the client would expect to find 172.22.99.0/24 on the LAN); RFC3442 says that if you use the option, you have to specify the default route too and that clients MUST ignore the routers option if present.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Artist</title>
		<link>http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/comment-page-1/#comment-241</link>
		<dc:creator>Artist</dc:creator>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://scott.yang.id.au/2003/04/getting-stuck-with-dhcpd/#comment-241</guid>
		<description>I&#039;ve just (3 hours ago :) began to work on the same problem... here are some links you may find usefull

http://www.faqs.org/rfcs/rfc3442.html
http://marc.theaimsgroup.com/?l=dhcp-server&amp;m=105543458410819&amp;w=2
http://rfc3442svc.sourceforge.net/

and man dhcp-options

email me art (at)  academ.org in case  you resolv this problem, or any other info

</description>
		<content:encoded><![CDATA[<p>I&#8217;ve just (3 hours ago :) began to work on the same problem&#8230; here are some links you may find usefull</p>
<p><a href="http://www.faqs.org/rfcs/rfc3442.html" rel="nofollow">http://www.faqs.org/rfcs/rfc3442.html</a><br />
<a href="http://marc.theaimsgroup.com/?l=dhcp-server&#038;m=105543458410819&#038;w=2" rel="nofollow">http://marc.theaimsgroup.com/?l=dhcp-server&#038;m=105543458410819&#038;w=2</a><br />
<a href="http://rfc3442svc.sourceforge.net/" rel="nofollow">http://rfc3442svc.sourceforge.net/</a></p>
<p>and man dhcp-options</p>
<p>email me art (at)  academ.org in case  you resolv this problem, or any other info</p>
]]></content:encoded>
	</item>
</channel>
</rss>
