<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Trineaku's Weblog</title>
	<atom:link href="http://elmuku.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://elmuku.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 04 Feb 2010 13:40:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='elmuku.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Trineaku's Weblog</title>
		<link>http://elmuku.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://elmuku.wordpress.com/osd.xml" title="Trineaku&#039;s Weblog" />
	<atom:link rel='hub' href='http://elmuku.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Setting DHCP SERVER di Debian Etch</title>
		<link>http://elmuku.wordpress.com/2010/02/04/setting-dhcp-server-di-debian-etch/</link>
		<comments>http://elmuku.wordpress.com/2010/02/04/setting-dhcp-server-di-debian-etch/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 13:40:36 +0000</pubDate>
		<dc:creator>trineaku</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://elmuku.wordpress.com/?p=7</guid>
		<description><![CDATA[DHCP (Dynamic Host Configuration Protocol) server adalah service yang diberikan oleh server untuk memberikan ip address secara otomatis kepada komputer klien agar dapat terhubung ke suatu network. Untuk program yang dibutuhkan adalah dhcp3-server. Dalam instalasi DHCP server ini pastikan kabel network sudah terpasang pada LAN card komputer server, sebab setelah selesai instalasi service DHCP dengan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmuku.wordpress.com&amp;blog=2855921&amp;post=7&amp;subd=elmuku&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>DHCP (<em>Dynamic Host Configuration Protocol</em>) server adalah service yang diberikan oleh server untuk memberikan ip address secara otomatis kepada komputer klien agar dapat terhubung ke suatu network. Untuk program yang dibutuhkan adalah <strong>dhcp3-server</strong>. Dalam instalasi DHCP server ini pastikan kabel network sudah terpasang pada LAN card komputer server, sebab setelah selesai instalasi service DHCP dengan otomatis mencari komputer yang terhubung dengan komputer server. Untuk instalasinya dengan cara berikut.</p>
<p style="margin-bottom:0;"><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;">#apt-get install dhcp3-server</span></span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Masukkan CD yang diminta oleh komputer. Sebelum proses instalasi selesai akan ada kotak dialog, tekan <span style="font-family:Courier New, monospace;"><span style="font-size:x-small;">enter</span></span> untuk melanjutkan proses instalasi.</p>
<p style="margin-bottom:0;">Setelah proses instalasi selesai, biasanya akan muncul pesan kesalahan. Tidak apa-apa itu karena kita belum melakukan konfigurasi pada <span style="font-family:Courier New, monospace;"><span style="font-size:x-small;">“dhcp.conf”</span></span>. Untuk mengkonfigurasi <span style="font-family:Courier New, monospace;"><span style="font-size:x-small;">“dhcp.conf”</span></span> kita bisa menggunakan editor nano dengan perintah sebagai berikut</p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;"><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"># nano /etc/dhcp/dhcp.conf</span></span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Dan ubah konfigurasi default dhcp.conf.</p>
<p style="margin-bottom:0;margin-left:.5in;">
<p style="margin-bottom:0;margin-left:.5in;"><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"><strong>subnet</strong></span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"> 192.168.5.0 </span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"><strong>netmask</strong></span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"> 255.255.255.0 {<br />
</span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"><strong>range</strong></span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"> 192.168.5.100 192.168.5.200;<br />
</span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"><strong>option domain-name-servers</strong></span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"> server.smkn1glagah.sch.id;<br />
</span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"><strong>option domain-name</strong></span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"> &#8220;smkn1glagah.sch.id&#8221;;<br />
</span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"><strong>option routers</strong></span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"> 192.168.5.1;<br />
</span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"><strong>option broadcast-address</strong></span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"> 192.168.5.255;<br />
</span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"><strong>default-lease-time</strong></span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"> 600;</span></span><span style="font-family:Courier New, monospace;"><span style="font-size:xx-small;"><br />
</span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"> </span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"><strong>max-lease-time</strong></span></span><span style="font-family:Courier New, monospace;"><span style="font-size:x-small;"> 7200;<br />
}</span></span></p>
<p style="margin-bottom:0;">
<p style="margin-bottom:0;">Setelah itu save dengan menekan <span style="font-family:Courier New, monospace;"><span style="font-size:x-small;">F2</span></span> lalu tekan <span style="font-family:Courier New, monospace;"><span style="font-size:x-small;">Y</span></span> dan selanjutnya tekan <span style="font-family:Courier New, monospace;"><span style="font-size:x-small;">enter</span></span>.</p>
<p style="margin-bottom:0;">Penjelasan :</p>
<ul>
<li>
<p style="margin-bottom:0;widows:2;orphans:2;" lang="en-US"><span style="color:#000000;"><span style="font-family:Courier New, monospace;"><span style="font-size:small;"><span style="font-family:Times New Roman, serif;"><strong>subnet </strong></span><span style="font-family:Times New Roman, serif;">adalah alamat subnet</span></span></span></span></p>
</li>
<li>
<p style="margin-bottom:0;widows:2;orphans:2;" lang="en-US"><span style="color:#000000;"><span style="font-family:Courier New, monospace;"><span style="font-size:small;"><span style="font-family:Times New Roman, serif;"><strong>netmask</strong></span><span style="font-family:Times New Roman, serif;"> adalah netmask dari subnet</span></span></span></span></p>
</li>
<li>
<p style="margin-bottom:0;widows:2;orphans:2;" lang="en-US"><span style="color:#000000;"><span style="font-family:Courier New, monospace;"><span style="font-size:small;"><span style="font-family:Times New Roman, serif;"><strong>range </strong></span><span style="font-family:Times New Roman, serif;">adalah alokasi ip address yang diberikan server.</span></span></span></span></p>
</li>
<li>
<p style="margin-bottom:0;widows:2;orphans:2;" lang="en-US"><span style="color:#000000;"><span style="font-family:Courier New, monospace;"><span style="font-size:small;"><span style="font-family:Times New Roman, serif;"><strong>option domain-name-server </strong></span><span style="font-family:Times New Roman, serif;">adalah nama dari DNS server</span></span></span></span></p>
</li>
<li>
<p style="margin-bottom:0;widows:2;orphans:2;" lang="en-US"><span style="color:#000000;"><span style="font-family:Courier New, monospace;"><span style="font-size:small;"><span style="font-family:Times New Roman, serif;"><strong>option domain-name </strong></span><span style="font-family:Times New Roman, serif;">adalah nama domain </span></span></span></span></p>
</li>
<li>
<p style="margin-bottom:0;widows:2;orphans:2;" lang="en-US"><span style="color:#000000;"><span style="font-family:Courier New, monospace;"><span style="font-size:small;"><span style="font-family:Times New Roman, serif;"><strong>option routers </strong></span><span style="font-family:Times New Roman, serif;">adalah pengaturan router</span></span></span></span></p>
</li>
<li>
<p style="margin-bottom:0;widows:2;orphans:2;" lang="en-US"><span style="color:#000000;"><span style="font-family:Courier New, monospace;"><span style="font-size:small;"><span style="font-family:Times New Roman, serif;"><strong>option broadcast-address </strong></span><span style="font-family:Times New Roman, serif;">adalah alamat broadcast</span></span></span></span></p>
</li>
<li>
<p style="margin-bottom:0;widows:2;orphans:2;" lang="en-US"><span style="color:#000000;"><span style="font-family:Courier New, monospace;"><span style="font-size:small;"><span style="font-family:Times New Roman, serif;"><strong>default-lease-time </strong></span><span style="font-family:Times New Roman, serif;">adalah waktu dari peminjaman ip dalam detik</span></span></span></span></p>
</li>
<li>
<p style="margin-bottom:0;widows:2;orphans:2;" lang="en-US"><span style="color:#000000;"><span style="font-family:Courier New, monospace;"><span style="font-size:small;"><span style="font-family:Times New Roman, serif;"><strong>max-lease-time </strong></span><span style="font-family:Times New Roman, serif;">adalah maksimum waktu peminjaman ip dalam detik</span></span></span></span></p>
</li>
</ul>
<p style="margin-bottom:0;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmuku.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmuku.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmuku.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmuku.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmuku.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmuku.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmuku.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmuku.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmuku.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmuku.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmuku.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmuku.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmuku.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmuku.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmuku.wordpress.com&amp;blog=2855921&amp;post=7&amp;subd=elmuku&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmuku.wordpress.com/2010/02/04/setting-dhcp-server-di-debian-etch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a911030e13e215eabc3f799c6d9f27c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">trineaku</media:title>
		</media:content>
	</item>
		<item>
		<title>Asal Usul elmuku.wordpress.com</title>
		<link>http://elmuku.wordpress.com/2008/02/12/hello-world/</link>
		<comments>http://elmuku.wordpress.com/2008/02/12/hello-world/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 18:34:47 +0000</pubDate>
		<dc:creator>trineaku</dc:creator>
				<category><![CDATA[Tulisan]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Dari kebiasaan titip-titip data dan download tutor dari blog orang. Apa salahnya untuk buat BLOG. BLOG ini di buat tgl 12.02.2008 (saat ngerjain TA di skul) pkl 1.49 malam. Kenapa dinamai elmuku.wordpress.com karena BLOG ini akan  digunakan untuk menyimpan semua ilmu yang saya dapat darimanapun, kapanpun, dan darisiapapun. Semoga BLOG ini bermanfaat bukan hanya buat [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmuku.wordpress.com&amp;blog=2855921&amp;post=1&amp;subd=elmuku&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Dari kebiasaan titip-titip data dan download tutor dari blog orang. Apa salahnya untuk buat BLOG. BLOG ini di buat tgl 12.02.2008 (saat ngerjain TA di skul) pkl 1.49 malam.</p>
<p>Kenapa dinamai elmuku.wordpress.com karena BLOG ini akan  digunakan untuk menyimpan semua ilmu yang saya dapat darimanapun, kapanpun, dan darisiapapun.</p>
<p>Semoga BLOG ini bermanfaat bukan hanya buat saya.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/elmuku.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/elmuku.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/elmuku.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/elmuku.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/elmuku.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/elmuku.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/elmuku.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/elmuku.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/elmuku.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/elmuku.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/elmuku.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/elmuku.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/elmuku.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/elmuku.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/elmuku.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/elmuku.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=elmuku.wordpress.com&amp;blog=2855921&amp;post=1&amp;subd=elmuku&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://elmuku.wordpress.com/2008/02/12/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a911030e13e215eabc3f799c6d9f27c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">trineaku</media:title>
		</media:content>
	</item>
	</channel>
</rss>
