<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Doing &#38; Done &#187; dhcp</title>
	<atom:link href="http://doing.liduan.com/tag/dhcp/feed/" rel="self" type="application/rss+xml" />
	<link>http://doing.liduan.com</link>
	<description>Record and Store</description>
	<lastBuildDate>Thu, 11 Feb 2010 11:19:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>configuation arch linux network by dhcp: &#8230;</title>
		<link>http://doing.liduan.com/2009/05/16/configuation-arch-linux-network-by-dhcp/</link>
		<comments>http://doing.liduan.com/2009/05/16/configuation-arch-linux-network-by-dhcp/#comments</comments>
		<pubDate>Sat, 16 May 2009 22:10:37 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[arch linux]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/05/16/configuation-arch-linux-network-by-dhcp/</guid>
		<description><![CDATA[configuation arch linux network by dhcp:
add following lines to /etc/rc.conf
eth0=&#8221;dhcp&#8221;
INTERFACES=(eth0)
ROUTES=(!gateway)
then try /etc/rc.d/network restart]]></description>
			<content:encoded><![CDATA[<p>configuation arch linux network by dhcp:</p>
<p>add following lines to <span style="font-family: Courier New;">/etc/rc.conf</span></p>
<p>eth0=&#8221;dhcp&#8221;<br />
INTERFACES=(eth0)<br />
ROUTES=(!gateway)</p>
<p>then try /etc/rc.d/network restart</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/05/16/configuation-arch-linux-network-by-dhcp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>building a PXE boot server in the ubuntu &#8230;</title>
		<link>http://doing.liduan.com/2009/04/20/building-a-pxe-boot-server-in-the-ubuntu/</link>
		<comments>http://doing.liduan.com/2009/04/20/building-a-pxe-boot-server-in-the-ubuntu/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 16:36:03 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/04/20/building-a-pxe-boot-server-in-the-ubuntu/</guid>
		<description><![CDATA[building a PXE boot server in the ubuntu.
1. install dhcp3 server in the ubuntu.
apt-get install dhcp3-server
2. edit /etc/default/dhcp3-server
INTERFACES=&#8221;eth0&#8243;
3. edit /etc/dhcp3/dhcpd.conf
default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;
option routers 192.168.1.254;
option domain-name-servers 192.168.1.1, 192.168.1.2;
option domain-name "mydomain.example";
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.10 192.168.1.100;
range 192.168.1.150 192.168.1.200;
}
4. edit /etc/network/interfaces
auto eth0:1
iface eth0:1 inet static
name DHCPserver
address 192.168.1.1
netmask 255.255.255.0
5. restart networking and dhcp3
service networking [...]]]></description>
			<content:encoded><![CDATA[<p>building a <a title="PXE boot server" href="http://myy.helia.fi/~karte/ubuntu_hardy_pxe_notes.html" target="_blank">PXE boot server </a>in the <a href="http://www.freelikegnu.org/?p=3" target="_blank">ubuntu</a>.</p>
<p><a title="install dhcp3 server in the ubuntu." href="https://help.ubuntu.com/8.04/serverguide/C/dhcp.html" target="_blank">1. install dhcp3 server in the ubuntu.</a></p>
<p>apt-get install dhcp3-server</p>
<p>2. edit /etc/default/dhcp3-server</p>
<p>INTERFACES=&#8221;eth0&#8243;<br />
3. edit /etc/dhcp3/dhcpd.conf<br />
<code>default-lease-time 600;<br />
max-lease-time 7200;<br />
option subnet-mask 255.255.255.0;<br />
option broadcast-address 192.168.1.255;<br />
option routers 192.168.1.254;<br />
option domain-name-servers 192.168.1.1, 192.168.1.2;<br />
option domain-name "mydomain.example";</code></p>
<p>subnet 192.168.1.0 netmask 255.255.255.0 {<br />
range 192.168.1.10 192.168.1.100;<br />
range 192.168.1.150 192.168.1.200;<br />
}</p>
<p>4. edit /etc/network/interfaces</p>
<p>auto eth0:1</p>
<p>iface eth0:1 inet static</p>
<p>name DHCPserver</p>
<p>address 192.168.1.1</p>
<p>netmask 255.255.255.0</p>
<p>5. restart networking and dhcp3</p>
<p>service networking restart</p>
<p>service dhcp3-server restart</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/04/20/building-a-pxe-boot-server-in-the-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
