<?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>Sceptic Rhapsody...</title>
	<atom:link href="http://fithraleizure.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fithraleizure.wordpress.com</link>
	<description>Karena admin juga manusia, butuh tempat sampah....</description>
	<lastBuildDate>Thu, 12 Feb 2009 07:12:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='fithraleizure.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sceptic Rhapsody...</title>
		<link>http://fithraleizure.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://fithraleizure.wordpress.com/osd.xml" title="Sceptic Rhapsody..." />
	<atom:link rel='hub' href='http://fithraleizure.wordpress.com/?pushpress=hub'/>
		<item>
		<title>32bit VS 64bit</title>
		<link>http://fithraleizure.wordpress.com/2009/02/12/32bit-vs-64bit/</link>
		<comments>http://fithraleizure.wordpress.com/2009/02/12/32bit-vs-64bit/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 06:59:01 +0000</pubDate>
		<dc:creator>fithraleizure</dc:creator>
				<category><![CDATA[Network n Computer]]></category>

		<guid isPermaLink="false">http://fithraleizure.wordpress.com/?p=43</guid>
		<description><![CDATA[32-bit dan 64-bit mengacu pada arsitektur processor. Processor 32-bit artinya register-register nya (unit penyimpanan data terkecil di dalamnya) berukuran 32 bit. Processor 64-bit artinya register-register nya berukuran 64 bit. [Register2 ini lah yang digunakan untuk melakukan macam2 operasi. Misal jika kita melakukan operasi "c = a + b", maka register "eax" akan me-load nilai dari [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=43&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">32-bit dan 64-bit mengacu pada arsitektur processor.</p>
<ul>
<li> Processor 32-bit artinya <a href="http://en.wikipedia.org/wiki/Register" target="_blank">register</a>-register nya (unit penyimpanan data terkecil di dalamnya) berukuran 32 bit.</li>
</ul>
<ul>
<li> Processor 64-bit artinya register-register nya berukuran 64 bit.</li>
</ul>
<p style="text-align:justify;">[Register2 ini lah yang digunakan untuk melakukan macam2 operasi. Misal jika kita melakukan operasi "c = a + b", maka register "eax" akan me-load nilai dari "a" (di memory), kemudian pada register "eax" ditambahkan nilai dari "b", lalu "eax" ditulis ke memory pada posisi variabel "c" ]</p>
<p style="text-align:justify;">Pengaruh ukuran register terhadap kecepatan:<br />
Setiap proses baca/tulis dari memory (disebut dengan load/store) membaca/menulis informasi sebesar ukuran register, maka register 64-bit mampu membaca/menulis memory 2x dari kecepatan register 32-bit.<br />
Tapi ini teoretis saja, karena kenyataannya prosesor juga menghabiskan waktu untuk melakukan hal-hal lain selain load/store, seperti pemrosesan rumusan matematis, vector-processing, dll.</p>
<p style="text-align:justify;">Pengaruh ukuran register terhadap presisi:<br />
Simpelnya, semakin panjang suatu register, makin banyak angka di-belakang-koma yang bisa dihitung secara akurat.<br />
Sebagai gambaran, misalkan resolusi bilangan real pada 32-bit adalah 0.0001, maka resolusi bilangan real pada 64-bit bisa mencapai 0.0000001 (jadi 64bit jauh memiliki presisi yang lebih tinggi).</p>
<p style="text-align:justify;">Pengaruh ukuran register terhadap ukuran memori:<br />
Salah satu dari sekian banyak register adalah “<a href="http://en.wikipedia.org/wiki/Memory_address_register" target="_self">addressing register”</a>. Addressing register (atau registers, kalau lebih dari satu) adalah register yang memiliki fungsi ‘menunjuk’ ke alamat tertentu dalam memory. Jangkauan (range) penunjukan ini disebut dengan istilah memory space.<br />
Pada arsitektur 32-bit, addressing registers mampu ‘menunjuk’ posisi memory dari 0 s/d 4′294′967′295 (4 GiB &#8211; 1). Inilah yang mengakibatkan muncul “batasan 4 GB” pada sistem berbasis arsitektur 32-bit ( Jumlah chip memory/RAM yang bisa dipasang pada suatu PC dengan arsitektur 32bit hanyalah maksimum 4GB .<br />
Pada arsitektur 64-bit, addressing registers mampu ‘menunjuk’ posisi memory dari 0 s/d 18′446′744′073′709′551′615 (16 EiB &#8211; 1). Jadi, sudah tidak ada lagi ‘batasan 4 GB’ pada sistem berbasis arsitektur 64-bit.</p>
<p style="text-align:justify;">Pengaruh ukuran register terhadap dataset:<br />
“<a href="http://en.wikipedia.org/wiki/Dataset" target="_self">Dataset</a>” adalah istilah untuk ’seperangkat data yang di-load ke dalam memory untuk diproses dan (optionally) ditulis kembali ke hard disk’.<br />
Sistem 32-bit terbatas pada dataset sebesar (2^32)-1, atau (4 GB &#8211; 1). Mengingat sebagian memory harus digunakan untuk OS dan program database ybs, maka biasanya dataset nya hanya sebesar 1-2 GB saja.<br />
Artinya, sebuah database yang berukuran, katakanlah, 20 GB (tidak asing jika kita berbicara dalam perusahaan besar yang memiliki database sangat besar), harus diproses 10~20x.<br />
Sistem 64-bit tidak memiliki batasan di atas. Dia dapat me-load dataset sebesar ketersediaan memory. Artinya, database 20 GB di atas dapat di-load seluruhnya (asal memory yang tersedia mencukupi), dengann sekali jalan saja.</p>
<p style="text-align:justify;">—–</p>
<p style="text-align:justify;">Agar kita dapat mempergunakan keunggulan sistem 64-bit, maka baik software dan hardware harus mendukung dan memiliki fitur 64 bit tersebut.<br />
Software 32-bit jalan di hardware 64-bit namun tidak akan bisa memanfaatkan kelebihan arsitektur 64-bit. (Software hanya akan menggunakan 32-bit saja dari 64-bit yang tersedia; 32-bit sisanya tidak dikenali) ==&gt; disebut mode 32-bit.<br />
Sebaliknya, software 64-bit tidak bisa jalan di hardware 32-bit karena kebutuhannya akan lebar register 64-bit tidak bisa dipenuhi.</p>
<p style="text-align:justify;">Windows XP 32-bit dan Windows Vista 32-bit adalah 2 sistem operasi yang masih beroperasi di mode 32-bit.<br />
Windows XP 64-bit dan Windows Vista 64-bit adalah 2 sistem operasi yang mampu beroperasi di mode 64-bit.</p>
<p style="text-align:justify;">—–</p>
<p style="text-align:justify;"><a href="http://en.wikipedia.org/wiki/AMD64#AMD64">AMD64</a> adalah terobosan (breakthrough) AMD dalam dunia processor x86.</p>
<p style="text-align:justify;">Pada masa awal komputer ditemukan sampai dengan era prosesor Pentium 3, Intel bersikukuh menggunakan untuk hanya arsitektur 32-bit pada processor <a href="http://en.wikipedia.org/wiki/X86" target="_self">x86</a>.  Intel menghabiskan uang jutaan dollar untuk mengembangkan arsitektur 64-bit yang samasekali baru (artinya: Tidak kompatibel dengan dunia x86) dalam bentuk Intel ITANIUM.</p>
<p style="text-align:justify;">AMD kemudian mengembangkan instruction set (dan arsitektur) dari processor x86 yang dibuatnya (AthlonXP) sehingga lahirlah Athlon64: Processor x86 yang memiliki arsitektur 64-bit.</p>
<p style="text-align:justify;">Instruction set yang diperluas ini disebut AMD64 oleh AMD. Intel terpaksa melakukan cross-license, dan menggunakan instruction set tersebut juga (tapi dengan nama EMT64, bukan AMD64. Biasalah, masalah corporate pride…)</p>
<p style="text-align:justify;">—–</p>
<p style="text-align:justify;">Saya tidak yakin dengan Mac OS X.<br />
Tetapi Linux memiliki versi 32-bit dan versi 64-bit.<br />
Contoh, Ubuntu yang ada di ftp://dl2.foss-id.web.id/iso/ubuntu/releases/hardy/<br />
Ada versi AMD64 (64-bit) dan ada versi i386 (32-bit)</p>
<p style="text-align:justify;">—–</p>
<p style="text-align:justify;">Kelebihan dan kekurangan?</p>
<p style="text-align:justify;">Kita sudah melihat kelebihan dari arsitektur 64-bit.</p>
<p style="text-align:justify;">Sekarang kekurangannya:</p>
<p style="text-align:justify;">Banyak Software 32-bit yang tidak bisa jalan di arsitektur 64-bit, khususnya driver.</p>
<p style="text-align:justify;">Mengapa bisa begitu?</p>
<p style="text-align:justify;">Komputer adalah benda yang sangat kompleks. Untuk bisa berguna bagi manusia, komputer perlu melakukan apa yang disebut “Input/Output” (I/O). Contoh I/O adalah kirim/terima data via LAN, kirim gambar ke Monitor via VGA Card, dll.</p>
<p style="text-align:justify;">Nah, semua tindakan I/O membutuhkan <a href="http://en.wikipedia.org/wiki/Buffer_(telecommunication)" target="_self">buffer</a>. Sebagai contoh, kita kenal “memory VGA” pada VGA Card; itu sebetulnya adalah buffer untuk membantu VGA Card menampilkan gambar di monitor.</p>
<p style="text-align:justify;">Masalahnya, agar I/O bisa berlangsung dengan mulus dan cepat, ‘buffer’ ini perlu mendapatkan alamat. Dan alamat ini di ambil dari memory space. Hal ini terjadi meskipun komponen pelaksana I/O ini memiliki buffernya sendiri (contoh: VGA Card terbaru dari nVidia / ATI biasanya punya minimal 256 MiB RAM pada card nya). Tetap saja memori pada card tersebut akan dipetakan ke memory space.</p>
<p style="text-align:justify;">Agar tidak bentrok dengan Sistem Operasi, yang biasanya di-load ke dalam memory ‘rendah’ (Bottom Memory = memory dengan alamat kecil), maka biasanya pemetaan buffer ini dilakukan di memory ‘tinggi’ (Top Memory = memory dengan alamat besar, atau dihitung mundur dari alamat memori terbesar (2^32)-1)</p>
<p style="text-align:justify;">Catatan: Ini juga alasan yang menyebabkan RAM komputer kalau terpasang 4 GB hanya akan bisa dipakai Max 3,25 GB (atau kalau untung 3,5 GB), ada yang ‘hilang’ karena ‘tertutupi’ oleh buffer dari komponen I/O.</p>
<p style="text-align:justify;">Nah, pada arsitektur 64-bit, hal yang sama pun dilakukan: Buffer untuk I/O dipetakan ke Top Memory. Masalahnya, Top Memory pada arsitektur 64-bit jelas terletak pada posisi yang berbeda dengan Top Memory pada arsitektur 32-bit.</p>
<p style="text-align:justify;">Driver adalah korban yang paling jelas; mereka berusaha mengakses Top Memory 32-bit, padahal lokasi buffer tidak di situ. Akibatnya: Crash.</p>
<p style="text-align:justify;">Software2 lain yang juga coba-coba mengakses Top Memory secara langsung akan mengalami crash juga.</p>
<p style="text-align:justify;">Lucunya, banyak game 32-bit yang malah jalan dengan tanpa masalah di sistem 64-bit; hal ini karena mereka tidak berusaha mengakses Top Memory secara langsung, melainkan meminta bantuan Microsoft DirectX Layer untuk mengakses fitur dari sebuah VGA Card.</p>
<p style="text-align:justify;">
<p style="text-align:right;">Sumber : http://en.wikipedia.org, http://udaramaya.com</p>
<p style="text-align:justify;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fithraleizure.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fithraleizure.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fithraleizure.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fithraleizure.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fithraleizure.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fithraleizure.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fithraleizure.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fithraleizure.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fithraleizure.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fithraleizure.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fithraleizure.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fithraleizure.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fithraleizure.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fithraleizure.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=43&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fithraleizure.wordpress.com/2009/02/12/32bit-vs-64bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/813842d22e01131453494bb205a2b26c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fithraleizure</media:title>
		</media:content>
	</item>
		<item>
		<title>Script firewall ipfw yg rada nyeleneh..:D</title>
		<link>http://fithraleizure.wordpress.com/2009/01/18/script-firewall-ipfw-yg-aga-nyelenehd/</link>
		<comments>http://fithraleizure.wordpress.com/2009/01/18/script-firewall-ipfw-yg-aga-nyelenehd/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 03:08:30 +0000</pubDate>
		<dc:creator>fithraleizure</dc:creator>
				<category><![CDATA[Network n Computer]]></category>

		<guid isPermaLink="false">http://fithraleizure.wordpress.com/?p=36</guid>
		<description><![CDATA[weew&#8230; dah lama juga ga ngupdate page ini..maklum,,kesibukan yang menggila ama TA n sejenisnya..hehe.. jadi cerita nya kemarin gateway nya jurusan mampus gara2 listrik yg ga stabil..pas malem taun baru pula itu&#8230; -_- hampir aja taun baruan di kampus&#8230;tp untung aja ada mesin cadangan yg emang udah mayan dedicated buat server,,,jadi kanibal in mesin itu [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=36&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>weew&#8230;</p>
<p>dah lama juga ga ngupdate page ini..maklum,,kesibukan yang menggila ama TA n sejenisnya..hehe..</p>
<p>jadi cerita nya kemarin gateway nya jurusan mampus gara2 listrik yg ga stabil..pas malem taun baru pula itu&#8230; -_-</p>
<p>hampir aja taun baruan di kampus&#8230;tp untung aja ada mesin cadangan yg emang udah mayan dedicated buat server,,,jadi kanibal in mesin itu dulu buat bikin router temporer..hehehe..</p>
<p>singkat cerita,,ini router make OS FreeBSD 7.0 Stable Release, ama quagga buat advertise nya.</p>
<p>bahasan cara instalasi quagga di freebsd kyknya udah banyak y di tempat lain,tp ntarlah aku tulisin disini juga kalo sempet..</p>
<p>langsung aja y.. nih scriptnya&#8230;</p>
<blockquote><p>#!/bin/sh<br />
#This script is For general setup Rule in * Gateway Firewall<br />
#All change should be notify/mail to admins@*.itb.ac.id<br />
# First Created 02 Jan 2009<br />
#copyleft Zeki Fithra MS, e-mail : fithra@*.itb.ac.id</p>
<p>#Set command prefix<br />
fwcmd=&#8221;/sbin/ipfw -q&#8221;</p>
<p># uplink interface.<br />
oif=&#8221;bge0&#8243;</p>
<p># Downlink interface.<br />
iif=&#8221;bge1&#8243;</p>
<p># Network address/mask.<br />
inet=&#8221;xxx.xxx.xxx.0/24&#8243;</p>
<p># Port Terlarang dari luar $inetforb=&#8221;1-1024&#8243;<br />
vrsports=&#8221;445,5554,9996,4444&#8243;</p>
<p># ITB DNS SERVERS.<br />
dns1=&#8221;xxx.xxx.xxx.xxx/32&#8243;<br />
dns2=&#8221;xxx.xxx.xxx.xxx/32&#8243;</p>
<p># Host Bebas Firewall   &#8212; &gt; Masukkan IP-IP yg khusus buat NOC, biasanya si IP2 kecil biar ga ribet di subnet in aja<br />
servers=&#8221;xxx.xxx.xxx.0/28&#8243;     # IP NOC (xxx.xxx.xxx.1/32 &#8211; xxx.xxx.xxx.15/32)<br />
noc1=&#8221;"xxx.xxx.xxx.0/32&#8243;</p>
<p>noc2=&#8221;xxx.xxx.xxx.0/32&#8243;</p>
<p>servers1=&#8221;xxx.xxx.xxx.0/32&#8243;  # &#8212;&gt; Server aja,, bukan NOC, gbisa di ssh dari luar,,cuman buka port default buat webclient,email, dsb<br />
# Loopback interface and network address.<br />
loif=&#8221;lo0&#8243;<br />
lonet=&#8221;127.0.0.0/8&#8243;</p>
<p>#First, Flush All rule<br />
$fwcmd -f flush</p>
<p># Short circuits.<br />
$fwcmd add pass all from any to any via $iif<br />
$fwcmd add pass all from any to any via $loif</p>
<p>#don&#8217;t let anything from the &#8220;outside&#8221; talk to localhost<br />
$fwcmd add deny all from any to $lonet</p>
<p>#don&#8217;t let the computer talk other computers as localhost<br />
$fwcmd add deny log ip from 127.0.0.0/8 to any</p>
<p>#**********tangkal virus*******************************************<br />
$fwcmd add deny tcp  from ${inet} to any ${vrsports}<br />
$fwcmd add deny tcp  from any to  ${inet} ${vrsports}</p>
<p>#Allow packets from outside destined to NOC vice versa<br />
for noc in $servers $noc1 $noc2 ; do<br />
$fwcmd add pass ip  from any to ${noc} via $oif<br />
$fwcmd add pass ip  from ${noc} to any via $oif<br />
done</p>
<p>for dns in $dns1 $dns2; do<br />
$fwcmd add pass tcp from any to $dns 53 via $oif<br />
$fwcmd add pass udp from $dns to any 53 via $oif<br />
done</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8211;Allow ICMP From any to this Network&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-#<br />
#allow path-mtu in both directions<br />
$fwcmd add allow icmp from any to any icmptypes 3</p>
<p>#allow source quench in and out<br />
$fwcmd add allow icmp from any to any icmptypes 4</p>
<p>#allow outbound traceroutes<br />
$fwcmd add allow icmp from any to any icmptypes 11 in</p>
<p>#allow outbound pings and incoming ping responses<br />
$fwcmd add allow icmp from any to any icmptypes 8 out<br />
$fwcmd add allow icmp from any to any icmptypes 0 in</p>
<p>#=====================Rule Tambahan=======================#<br />
#Port Untuk &#8220;servers1&#8243; yg dibuka hanya standar servers, Not NOC<br />
$fwcmd add pass ip  from any to ${servers1} 21,25,80,443,110 via $oif<br />
$fwcmd add pass ip  from ${servers1} to any 21,22,25,80,443,110 via $oif</p>
<p>#Untuk shaping Bandwidth jadi cuman 1,25 Mbyte/s buat &#8220;servers1&#8243; tadi<br />
$fwcmd pipe 1 config bw 10Mbit/s<br />
$fwcmd pipe 2 config bw 10Mbit/s<br />
$fwcmd queue 100 config pipe 1 weight 90<br />
$fwcmd queue 101 config pipe 1 weight 60<br />
$fwcmd add queue 101 tcp from any to ${servers1} in<br />
$fwcmd add pipe 2 all from ${servers1} to any out<br />
$fwcmd add pipe 1 all from any to ${servers1} via $oif</p>
<p>#Rule Tambahan Masukkan di bawah ini di space antara tanda # ( ini untuk kalo ada user2 nakal yg nyoba2 abuse aja&#8230;block mac-address nya.. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
####################################################################<br />
$fwcmd add deny mac 00:0F:EA:BD:26:67 any<br />
$fwcmd add deny mac 00:16:D3:F9:1E:2A any<br />
$fwcmd add deny mac 00:11:85:DA:68:1C any<br />
$fwcmd add deny mac 00:1A:4D:8D:43:62 any</p>
<p>#Block koneksi dari luar Network lokal untuk service2 http<br />
$fwcmd add deny ip from 81.199.149.21 to xxx.xxx.xxx.xxx 80<br />
$fwcmd add deny ip from 81.199.149.25 to xxx.xxx.xxx.xxx 80<br />
$fwcmd add deny ip from 196.29.122.4 to xxx.xxx.xxx.xxx  80<br />
$fwcmd add deny mac 00:16:17:6e:9c:1e any</p>
<p>####################################################################</p>
<p># DEFAULT POLICY !!!! :<br />
#Block port default milik Root dan default NOC dari luar ke dalam<br />
$fwcmd add deny all from any to $inet $forb in via $oif</p>
<p>#Buka Semua port selain yang di deny di atas<br />
$fwcmd add allow all from any to any via $oif</p>
<p>#&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;End All rules&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;#</p></blockquote>
<p>harusnya sih dengan konfigurasi segini aja udah cukup&#8230;.</p>
<p>udah cukup strict itu..:D</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fithraleizure.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fithraleizure.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fithraleizure.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fithraleizure.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fithraleizure.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fithraleizure.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fithraleizure.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fithraleizure.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fithraleizure.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fithraleizure.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fithraleizure.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fithraleizure.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fithraleizure.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fithraleizure.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=36&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fithraleizure.wordpress.com/2009/01/18/script-firewall-ipfw-yg-aga-nyelenehd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/813842d22e01131453494bb205a2b26c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fithraleizure</media:title>
		</media:content>
	</item>
		<item>
		<title>December Boys &#8211; Peter Cincotti</title>
		<link>http://fithraleizure.wordpress.com/2008/07/05/december-boys-peter-cincotti/</link>
		<comments>http://fithraleizure.wordpress.com/2008/07/05/december-boys-peter-cincotti/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 08:23:57 +0000</pubDate>
		<dc:creator>fithraleizure</dc:creator>
				<category><![CDATA[lyrics]]></category>

		<guid isPermaLink="false">http://fithraleizure.wordpress.com/?p=28</guid>
		<description><![CDATA[Peter Cincotti December Boys OST December Boys, siapa yang pernah nonton film ini pasti tau lagu nya&#8230; I&#8217;m thinking about you, and I remember everything, all of us I look at the ocean, but still I can&#8217;t see anything, but all of us The time of open hearts, the time before the rest of life [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=28&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Peter Cincotti<br />
December Boys</p>
<p>OST December Boys, siapa yang pernah nonton film ini pasti tau lagu nya&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>I&#8217;m thinking about you,<br />
and I remember everything, all of us<br />
I look at the ocean,<br />
but still I can&#8217;t see anything,<br />
but all of us</p>
<p>The time of open hearts,<br />
the time before the rest of life begins<br />
the learning who we are,<br />
what I&#8217;d give to be December boys again</p>
<p>But nothing was easy,<br />
but I would do it all again, and never change a thing,<br />
It&#8217;s all about choices,<br />
but I couldn&#8217;t watch you walk away,<br />
without following</p>
<p>The lifes of broken dreams,<br />
the lifes dividing strangers from your friends,<br />
we live in you and me,<br />
I wanna give to December boys again</p>
<p>In between a man and child all bliss hearts is running wild,<br />
everything on earth was worth a child,<br />
it took me by surprise I felt so good to be alive</p>
<p>Sooner or later<br />
I&#8217;ll find the end to everything,<br />
but life goes on,<br />
Twisting and turning forcing us through everyday,<br />
until it&#8217;s gone</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fithraleizure.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fithraleizure.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fithraleizure.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fithraleizure.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fithraleizure.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fithraleizure.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fithraleizure.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fithraleizure.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fithraleizure.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fithraleizure.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fithraleizure.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fithraleizure.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fithraleizure.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fithraleizure.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fithraleizure.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fithraleizure.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=28&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fithraleizure.wordpress.com/2008/07/05/december-boys-peter-cincotti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/813842d22e01131453494bb205a2b26c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fithraleizure</media:title>
		</media:content>
	</item>
		<item>
		<title>maybe&#8230;</title>
		<link>http://fithraleizure.wordpress.com/2008/06/28/maybe-2/</link>
		<comments>http://fithraleizure.wordpress.com/2008/06/28/maybe-2/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 17:03:21 +0000</pubDate>
		<dc:creator>fithraleizure</dc:creator>
				<category><![CDATA[Heart]]></category>

		<guid isPermaLink="false">http://fithraleizure.wordpress.com/?p=25</guid>
		<description><![CDATA[Maybe&#8230; that was just your heart&#8217;s way of telling me i&#8217;m not the one&#8230;. Because that&#8217;s what my heart&#8217;s telling me right now.. It&#8217;s telling me that you&#8217;re not the one&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=25&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Maybe&#8230;<br />
that was just your heart&#8217;s way of telling me i&#8217;m not the one&#8230;.<br />
Because that&#8217;s what my heart&#8217;s telling me right now..<br />
It&#8217;s telling me that you&#8217;re not the one&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fithraleizure.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fithraleizure.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fithraleizure.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fithraleizure.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fithraleizure.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fithraleizure.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fithraleizure.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fithraleizure.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fithraleizure.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fithraleizure.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fithraleizure.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fithraleizure.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fithraleizure.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fithraleizure.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fithraleizure.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fithraleizure.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=25&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fithraleizure.wordpress.com/2008/06/28/maybe-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/813842d22e01131453494bb205a2b26c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fithraleizure</media:title>
		</media:content>
	</item>
		<item>
		<title>regret&#8230;.</title>
		<link>http://fithraleizure.wordpress.com/2008/06/26/regret/</link>
		<comments>http://fithraleizure.wordpress.com/2008/06/26/regret/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 17:21:27 +0000</pubDate>
		<dc:creator>fithraleizure</dc:creator>
				<category><![CDATA[Heart]]></category>

		<guid isPermaLink="false">http://fithraleizure.wordpress.com/?p=23</guid>
		<description><![CDATA[we talk like we know what&#8217;s going on..we dont.. we don&#8217;t have any idea.. we&#8217;re really young and we&#8217;re gonna screw up a lot.. we&#8217;re going to keep changing our mind.. and sometimes even our heart through all that, the only real thing we can offer each other is forgiveness.. and i couldn&#8217;t do that&#8230; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=23&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>we talk like we know what&#8217;s going on..we dont..<br />
we don&#8217;t have any idea..<br />
we&#8217;re really young and we&#8217;re gonna screw up a lot..<br />
we&#8217;re going to keep changing our mind..<br />
and sometimes even our heart<br />
through all that, the only real thing we can offer each other is forgiveness..<br />
and i couldn&#8217;t do that&#8230;<br />
at least it was too late..<br />
don&#8217;t let yourself get so angry that you stop loving..because&#8230;<br />
one day, you&#8217;ll wake up from that anger..<br />
and the person you love will be gone&#8230;.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fithraleizure.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fithraleizure.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fithraleizure.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fithraleizure.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fithraleizure.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fithraleizure.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fithraleizure.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fithraleizure.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fithraleizure.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fithraleizure.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fithraleizure.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fithraleizure.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fithraleizure.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fithraleizure.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fithraleizure.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fithraleizure.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=23&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fithraleizure.wordpress.com/2008/06/26/regret/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/813842d22e01131453494bb205a2b26c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fithraleizure</media:title>
		</media:content>
	</item>
		<item>
		<title>script cupu buat ngecek parent/sibling proxy yang down</title>
		<link>http://fithraleizure.wordpress.com/2008/06/24/script-cupu-buat-ngecek-parentsibling-proxy-yang-down/</link>
		<comments>http://fithraleizure.wordpress.com/2008/06/24/script-cupu-buat-ngecek-parentsibling-proxy-yang-down/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 14:18:24 +0000</pubDate>
		<dc:creator>fithraleizure</dc:creator>
				<category><![CDATA[Network n Computer]]></category>
		<category><![CDATA[parent proxy]]></category>

		<guid isPermaLink="false">http://fithraleizure.wordpress.com/?p=15</guid>
		<description><![CDATA[Bismillahirrahmanirrahiim&#8230;. jadi gini nih ceritanya&#8230; karena suatu proxy/cache server membutuhkan hubungan dengan parent/sibling langsung dari luar network kita, dan kebetulan di mesin cache yang ada ini masih belum ada sistem seperti itu, maka kepikiranlah buat ngebikin satu sistem yang ngecek automatic ke parent/sibling tsb. Sistem itu rencananya harus ngasi notifikasi via mail kalo server-server parent/sibling [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=15&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Bismillahirrahmanirrahiim&#8230;.</p>
<p>jadi gini nih ceritanya&#8230;  karena suatu proxy/cache server membutuhkan hubungan dengan parent/sibling langsung dari luar network kita, dan kebetulan di mesin cache yang ada ini masih belum ada sistem seperti itu,  maka kepikiranlah buat ngebikin satu sistem yang ngecek automatic ke  parent/sibling tsb.</p>
<p>Sistem itu rencananya harus ngasi notifikasi  via mail kalo server-server parent/sibling nya mati/down.kenapa ?? y sering kali kita tuh gtaw kenapa tiba2 internet jadi lebih lemot dari biasanya, atau bahkan mati&#8230;setelah di cek manual, ternyata si parent proxy nya yang matek&#8230;.y gbisa ngapa2in&#8230;;))  , pasrah aja&#8230;.tapi biar lebih efektif dan fleksibel&#8230; ( halah..apaan siy&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  )  kepikiran buat bikin sistem yang bisa ngecek otomatis apa si parent2 tsb idup atow matek&#8230;.</p>
<p>Nah, masuk ke teknisnya skrg&#8230;.requirement dari tutorial ini ya paling bisa make editor vi ato apapunlah , trus bisa console dikit ama squid yang udah terinstall sempurna, asumsi OS nya udah terinstall sempurna, mu freeBSD  kek atow lin*x cupz kek gpapa.. cuman sedikit  ngoprek2 <em> </em><strong><em><a href="http://en.wikipedia.org/wiki/Perl">perl</a></em> </strong> n <em><strong><a href="http://en.wikipedia.org/wiki/Bourne_shell">Bourne shell</a></strong></em> serta tool paling sakti ( <a href="http://en.wikipedia.org/wiki/Cron"><strong>crontab</strong></a> hehehe&#8230;gw musti bilang, crontab ini mungkin yang tool2 yang sangat sakti, semua task-task yang time-based scheduling itu bisa terhendel ma tool ini&#8230;), jadi deh.  Jadi Scenario nya gini, kita bakal bikin 2 script biar sistem tersebut jalan, script pertama make perl, ini berfungsi  buat ngecek langsung  via <em><a href="http://perldoc.perl.org/IO/Socket/INET.html"><strong>IO socket</strong></a></em> ke parent-parent tersebut. Nahh.. script kedua make  Bourne Shell( lebih terkenal dengan <strong>sh </strong>) buat sistem notifikasi ke kita nya.</p>
<p>Tapi sebelumnya perlu saiah bilang,, ini cuman diperlukan kalo server yang pgn kita liat itu berada di luar Network yang kita kuasai dan kita cuman pengen ngeliat kalo2 si server tersebut idup ato matek&#8230;( kalo masi 1 network siy nda perlu make ginian, install<strong> <a href="http://www.cacti.net">cacti</a> </strong>ato <a href="http://www.jffnms.org/"><strong>jffnms</strong></a> aja lebih mantep n indah&#8230;well, i think&#8230;Network is all about art&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>okeh..tanpa bnyak babibu lagi langsung aja yah&#8230;.  perl script nya kira2 kyk gini&#8230;</p>
<p><strong>#!/usr/bin/perl -w </strong></p>
<p><strong>use strict; </strong></p>
<p><strong>use IO::Socket;</strong></p>
<p><strong>my $host = &#8220;&#8221;; </strong></p>
<p><strong>my $port = &#8220;&#8221;; </strong></p>
<p><strong>my $handle = 0;</strong> <strong>unless (@ARGV == 2) { die &#8220;usage: $0 host port&#8221; }</strong></p>
<p><strong> ($host, $port) = @ARGV;</strong> <strong>$handle = IO::Socket::INET-&gt;new(Proto =&gt; &#8220;tcp&#8221;, Timeout =&gt; &#8220;10&#8243;, PeerAddr =&gt; $host , PeerPort =&gt; $port); </strong></p>
<p><strong>if ($handle) { </strong></p>
<p><strong>print &#8220;1&#8243;; </strong></p>
<p><strong>} </strong></p>
<p><strong>else { </strong></p>
<p><strong>print &#8220;0&#8243;; </strong></p>
<p><strong>} exit;</strong></p>
<p>kemudian kita simpan di suatu tempat, terserah di mana aja , misalnya di<strong> /home/admin/script</strong> dengan nama <strong>kucing1.pl</strong> ,trus untuk generate script notifikasi nya kita bikin kyk gini :</p>
<p><strong>#!/bin/sh </strong></p>
<p><strong>cat /dev/null &gt; /path/to/output.txt                                  ! output file tempat laporan ntar&#8230;.</strong></p>
<p><strong> </strong></p>
<p><strong>tanggal=`date`</strong></p>
<p><strong>sleep 15</strong></p>
<p><strong>echo &#8220;Date/Time: $tanggal&#8221; &gt;&gt; /path/to/output.txt </strong></p>
<p><strong>echo &#8220;&#8221; &gt;&gt; /path/to/output.txt</strong></p>
<p><strong>status1=&#8221;$(</strong><strong>/home/admin/script/kucing1.pl 123.231.242.221 )&#8221;     ! 123.231.242.221 IP parent proxy yang mu dicek&#8230;</strong></p>
<p><strong>mail=&#8221;admin@kucing.com&#8221;                   ! mail kitah nya&#8230;<br />
</strong></p>
<p><strong>subject=&#8221;[peer-status]Proxy Peer Status&#8221;</strong></p>
<p><strong>echo &#8220;Parent Proxy Server Status&#8221; &gt;&gt; /path/to/output.txt </strong></p>
<p><strong>echo &#8220;&#8221; &gt;&gt; /path/to/output.txt</strong></p>
<p><strong>if [ $status1 -eq 0 ]; then </strong></p>
<p><strong>cat &#8221; /path/to/output.txt&#8221; | mail -s &#8220;$subject&#8221; &#8220;$mail&#8221;</strong></p>
<p><strong> echo &#8220;***CRITICAL : Parent Proxy ( 123.231.242.221) is Down&#8221; &gt;&gt; /path/to/output.txt </strong></p>
<p><strong>echo &#8220;&#8221; &gt;&gt; /path/to/output.txt</strong></p>
<p><strong>else </strong></p>
<p><strong>echo &#8220;***RECOVERY : Parent proxy </strong><strong>( 123.231.242.221) </strong><strong>is Up&#8221; &gt;&gt; /path/to/output.txt </strong></p>
<p><strong>fi</strong><em><strong> </strong></em></p>
<p>script di atas kita simpan dgn nama terserah kita juga, misal <strong>test.sh</strong> kemudian tinggal di set aja di crontab biar test.sh tsb jalan tiap selang waktu yg kita mau. misal nya dia bakal ngecek tiap 5 menit sekali. nah, si <strong>/path/to/output.txt</strong> itu bisa diatur sesuka hati aja. mau letakin di web direktori biar bisa diakses langsung via web juga monggo&#8230;   simple kan&#8230;.</p>
<p>contoh file output.txt diatas ntar isinya kira2 kyk gini&#8230;</p>
<p><strong>Date/Time: Wed Jun 25 10:45:02 WIT 2008</strong></p>
<p><strong>***CRITICAL : Parent Proxy ( 123.231.242.221) is Down </strong> (kalo lagi down) , ato<br />
<strong>***RECOVERY : P</strong><strong>arent proxy ( 123.231.242.221) </strong><strong>is Up</strong><em><strong> </strong></em></p>
<p><em> ( tapi karena kita udah set buat ngasi notifikasi hanya saat down, jadi kalo g dapet notiffikasi ke email artinya aman2 aja&#8230;halah,,ribet banget..harus belajar bahasa indonesia yg baik dan benar lagi nih saiah,,,,)</em><strong><br />
</strong></p>
<p>sekian..semoga bisa bermanfaat,,,,, <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fithraleizure.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fithraleizure.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fithraleizure.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fithraleizure.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fithraleizure.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fithraleizure.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fithraleizure.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fithraleizure.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fithraleizure.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fithraleizure.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fithraleizure.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fithraleizure.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fithraleizure.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fithraleizure.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fithraleizure.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fithraleizure.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=15&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fithraleizure.wordpress.com/2008/06/24/script-cupu-buat-ngecek-parentsibling-proxy-yang-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/813842d22e01131453494bb205a2b26c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fithraleizure</media:title>
		</media:content>
	</item>
		<item>
		<title>Mengatasi TCP SYN Flooding attack</title>
		<link>http://fithraleizure.wordpress.com/2008/06/24/mengatasi-tcp-syn-flooding-attack/</link>
		<comments>http://fithraleizure.wordpress.com/2008/06/24/mengatasi-tcp-syn-flooding-attack/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 13:07:47 +0000</pubDate>
		<dc:creator>fithraleizure</dc:creator>
				<category><![CDATA[Network n Computer]]></category>
		<category><![CDATA[DoS]]></category>
		<category><![CDATA[TCP flood]]></category>

		<guid isPermaLink="false">http://fithraleizure.wordpress.com/?p=14</guid>
		<description><![CDATA[Bismillahirrahmanirrahiim&#8230;. don&#8217;t mess with your system&#8217;s administrators&#8230;..they do know every little dirty things you make to the network&#8230; !!! rasain&#8230;!!!! kejadiannya 2 hari yg lalu sih di monitoring kecatet&#8230;..&#8221;system critical on ***.***.***.*** , some services are failure&#8221; di trace dari log&#8230;rupanya ada user yg bikin script buat generate query request tcp paket secara besar2an ke [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=14&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Bismillahirrahmanirrahiim&#8230;.</p>
<p><em>don&#8217;t mess with your system&#8217;s administrators&#8230;..they do know every little dirty things you make to the network&#8230; !!!</em></p>
<p>rasain&#8230;!!!!</p>
<p>kejadiannya 2 hari yg lalu sih di monitoring kecatet&#8230;..&#8221;system critical on ***.***.***.***  , some services are failure&#8221;</p>
<p>di trace dari log&#8230;rupanya ada user yg bikin script buat generate  query request tcp paket secara besar2an ke salah satu server. sampe2 service yang vital ini hampir mampus !!! apa maunya sih tuh orang..udah syukur bisa ngenet kenceng gini juga&#8230; masuk blacklist,, ( siap2 aja &#8230;:D)</p>
<p>tapi udahlah&#8230;sekarang udah aman lagi,biar aja org2 atas yg nyelesainnya&#8230;.hikmahnya..awa jadi belajar sesuatu yg baru nih,,,wa share disini aja lah ya&#8230;. btw sebelumnya, mesin tempat kejadian adalah <strong>FreeBSD 6.2 Stable-Release </strong></p>
<p>jadi yang kejadian kemarin itu kira2 gini penjelasannya&#8230; <em></em></p>
<p><em>&#8221; TCP SYN Flooding causes servers to quit responding to requests to open new connections with clients &#8212; a denial of service attack. Denial of service attacks prevent people from using the affected system or networks. These attacks usually proceed by overloading the target in some fashion. For example, simply sending large  <a href="http://www.networkcomputing.com/unixworld/man/ping.1m">ping </a> packets can &#8220;fill up&#8221; a site&#8217;s connection to the Internet. Illegally large ping packets, e asily generated by Microsoft products, such as Windows 95 or NT, can cause some systems to crash or reboot as described on the  <a href="http://www.cert.org/" target="V">CERT </a> (&lt;URL:http://www.cert.org/&gt;) system in  <a href="ftp://info.cert.org/pub/cert_advisories/CA-96.26.ping" target="V"> their ping advisory </a> (&lt;URL:ftp://info.cert.org/pub/cert_advisories/CA-96.26.ping&gt;). &#8220;</em></p>
<p>binun ?? hehehe&#8230;intinya mah gini&#8230;klo misalnya suatu server di serang oleh suatu paket tcp misal nya y paket ping yang sangat2 besar dan kontinue, sampai di suatu titik tu server bakal mabok&#8230;ga bisa nge request query lainnya lagi. kyk http proxy di server awa ato mail bahkan&#8230;( sering nya disebut dengan <strong><a href="http://en.wikipedia.org/wiki/Denial-of-service_attack">DoS</a></strong> aka denial of service ). nah, kasus yang terjadi ini,, si script tsb menggenerate paket tcp yang mirip ma paket request biasa. nah, si paket ini masuk ke dalam query ke server, tapi namanya juga niat buat nge flood, jadi si request itu dibikin bukan agar untuk mereceive paket lagi,, die cuman ngendon aja menuh2 in query packet tsb sampe time out. Kira2 gini nih analogi paling mudah nya, pas kita ngirim command ping ke suatu host, maka kalo si host itu hidup, die bakal ngereply &#8220;Reply from xxxxxxx : bytes = 32 time &lt; 1ms TTL = 128 &#8220;, nah bedanya paket yang dikirim ini tidak dirancang buat menerima reply tersebut, artinya ga ada balesan ke kita/ client nya, tapi ngendon di server terus sampe dia time out  ( miriplah ma kasus di mx4.itb.ac.id , tiap hari ampir 100rebu mail junk yg ngendon di sana&#8230;hahaha..)</p>
<p>Nah,, cara penyembuhan nya&#8230;( kek manusia aja pakek sakit&#8230;) gampang-gampang mudah, kira2 logikanya kyk gini&#8230;.paket yang terquery kn biasanya besar n rentang nya tertentu.</p>
<p>1. Jadi kita bakal bikin suatu scenario yang bakal membuat rentang interval query itu jadi lebih besar serta memperkecil timeout requestnya. nah, mengapa kita ngelakuin hal tsb ?? dasarnya gini, query TCP yang biasanya besar dan banyak ( dari HTTP, FTP, SMTP , dsb&#8230;) sehingga walaupun ada TCP attack kyk diatas, ga akan ngaruh&#8230;hehehe&#8230;.tapi cara ini sebenanya ga effisien, artinya flooding packet nya tidak hilang, tetep ngendon, cuman bakal hilang nantinya karena periode time out dari query itu sendiri&#8230;ngerti ga ya kira2&#8230;:D</p>
<p>2. Cara kedua sih mayan simple, jadi si request tcp itu waktu time out di servernya di perpendek, sehingga ga ngendon dalam waktu yg lama di query server, Jeleknya, request TCP yg bener/ bukan flooded bakal kena imbas nya juga&#8230;.krn time out nya pendek, ya brt ga bakal lama juga ngendon nya..</p>
<p>3. Cara ini yang paling enak sih sebenarnya, jadi kita kasi TCP filtering dan sedikit modifikasi yang membuat si server ini belajar, ( biasanya di router sih, hehehe&#8230;.. cara paling ampuh ngelumpuhin satu subnet, serang Router&#8230;. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  ) jadi dia bakal nyari tau kalo suatu paket ini asalnya dari mana ( teknis nya  kalo ada suatu query yang ngantri di suatu server, si server itu bakal nyari tau kalo asal packetnya dari mana, kalo alamat received packetnya beda, itu connection bakal di drop..kejam kn ?? siapa suruh maen2 nda bener&#8230;.hahaha&#8230;</p>
<p>nah back ke kasus diatas lagi, cara yg paling mudah buat ngatur point 1 n ke 2 diatas, cukup mudah kok. tinggal tentuin aja waktu time out n selang interval berapa yg kita pengen. iya lah, klo mu milih option 3, mayan ribet,,ntar aja lah ya kapan sempat di post di sini&#8230;yg sekarang yang simple2 aja dulu.</p>
<p>cara nya simple si  cukup ngetik satu baris aja, make sysctl &#8230;:D</p>
<p># <strong>sysctl net.inet.tcp.conntimeo 25 </strong>! buat ngeset timeout nya jadi 25 s</p>
<p>#<strong> sysctl net.socket.maxconn 1024 </strong>! buat ngeset panjang queue nya jadi 1024 entry</p>
<p>biasanya option itu dah ada di /etc/rc.local siy, jadi tinggal di set di sana aja biar pas reboot ga keubah lagi&#8230;</p>
<p>segitu dulu aja lah&#8230;.ntar sambung2 lagi&#8230;, btw yg di kejadian kemarin cukup diatasin pake ini, trace2 dikit,, ketauan deh tuh ip dari mana&#8230; ada ada aja,untung masi bisa diperbaiki,,, <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fithraleizure.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fithraleizure.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fithraleizure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fithraleizure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fithraleizure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fithraleizure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fithraleizure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fithraleizure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fithraleizure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fithraleizure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fithraleizure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fithraleizure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fithraleizure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fithraleizure.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fithraleizure.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fithraleizure.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=14&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fithraleizure.wordpress.com/2008/06/24/mengatasi-tcp-syn-flooding-attack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/813842d22e01131453494bb205a2b26c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fithraleizure</media:title>
		</media:content>
	</item>
		<item>
		<title>kenapa milih cow nerd, geek dibanding cow gaul</title>
		<link>http://fithraleizure.wordpress.com/2008/06/23/kenapa-milih-cow-nerd-geek-dibanding-cow-gaul/</link>
		<comments>http://fithraleizure.wordpress.com/2008/06/23/kenapa-milih-cow-nerd-geek-dibanding-cow-gaul/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 05:31:17 +0000</pubDate>
		<dc:creator>fithraleizure</dc:creator>
				<category><![CDATA[Heart]]></category>

		<guid isPermaLink="false">http://fithraleizure.wordpress.com/?p=13</guid>
		<description><![CDATA[ni tulisan ngambil dari blog nya si wildan siy,,,numpang ngupi dan&#8230; ,, mayan bikin senyum2 juga siiy&#8230;terlebih buat yang belum prnah baca..sok aja.. Bagi para wanita, di dalam dunia kencan terdapat banyak pilihan,misalnya di sebuah cafe, apakah harus memilih cowo keren charming bersenyum indah yang melirik nakal,atau laki-laki dingin (cool maksudnya) di ujung sana yang [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=13&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>ni tulisan ngambil dari blog nya si <a href="http://wildavy.wordpress.com">wildan</a> siy,,,numpang ngupi dan&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ,,</p>
<p>mayan bikin senyum2 juga siiy&#8230;terlebih buat yang belum prnah baca..sok aja..</p>
<p>Bagi para wanita, di dalam dunia kencan terdapat banyak pilihan,misalnya di sebuah cafe, apakah harus memilih cowo keren charming bersenyum indah yang melirik nakal,atau laki-laki dingin (cool maksudnya) di ujung sana yang sedang sibuk mengetik di laptopnya?</p>
<p>Well. . .ada beberapa alasan mengapa saya merasa kalian (para wanita) sebenarnya lebih baik memilih yang ke dua (sebut saja si cupu),daripada yang pertama (sebut saja si gaol)..alasan saya antara lain adalah :</p>
<p>1.Terlihat kemungkinan yang jelas si gaol mau apa dari kalian, yaa. . kcuali niat klian “itu-itu” aja ya silahkan,oiya..kmungkinannya kecil lho ada co cupu yang ga nelefon kalian kalau mreka dah janji,bagi mereka mungkin kesempatan langka,tapi buat kalian kan itu menguntungkan.</p>
<p>2.Si cupu sangat berguna di dunia berteknologi tinggi ini,tidakkah menyenangkan memiliki seseorang yang bisa mengurus laptopmu,aplikasinya,dan smua hal yang berhubungan dengan kabel yang menancap di dinding?,pacar merangkap teknisi pribadi,hha.</p>
<p>3.Romantis adalah salah satu yang mereka berikan,ok lah ide romantis mreka mungkin meng-edit web page untukmu atau terkesan dunia maya banget,but hey..paling ga itu lbh awet dari bunga,trus kamu bisa nunjukin hasilnya ke teman-teman.</p>
<p>4.Memang dandanannya kurang,tapi ga punya ciri wajib spesifik secara fisik (seperti harus tinggi kekar,plontos/spike)..jadinya lebih banyak pilihan dan variasi dalam berbagai bentuk,kurus/gemuk/tinggi/pendek/gabungan variasi..hahaha.</p>
<p>5.Mereka jelas banget punya OTAK..ayolah girl,sejak kapan pinter itu jadi hal buruk?!</p>
<p>6.Kebanyakan pintar mengingat tanggal,seperti ultah dan semacamnya..apalagi setelah mendapatkan status,mreka seperti sudah punya banyak rencana indah(entah karena saking lama berhayal haha) tentang apa saja yg mau mereka lakukan sewaktu mereka mendapatkan kalian.</p>
<p>7.Sex..yohoho..org cupu lebih tekun mendalaminya,sampai membeli kitab sakti kamasutra -_-‘,lalu mikirin tentang sex,membayangkan,memimpikan (ya..namanya aja cowo), ini lebih baik dari tuan.pemuas nafsu semata kan? cek-in-crot-check out..awww girls,where’s the fun part?were not drunk everyday.</p>
<p>8.Secara relatif,mreka low-maintenance (ga mahal ngurusnya..hwhw),bisa diisi ulang hanya dengan pizza,snack,dan soda..ga ada makan malam yang ribet dibutuhkan disini, jadi kalo lu koki yang buruk? paling ga lu bisa order pizza kan.</p>
<p>9.Kalian ga perlu khawatir co kalian matanya blanja jelalatan ke cw yang mnurut mereka lebih wow dari kalian, karena sayangnya mreka lebih tertarik dengan barang elektronik terbaru, misalnya :</p>
<p>cw: “wahh…model victoria secret..kurus bangett,feminim banget ya,bdnnya bagus..!”</p>
<p>co : “oooooooo….”</p>
<p>cw : “hey!!!” *memperhatikan cowonya melihat leptop apple terbaru di toko eletronik*</p>
<p>co : “apaan???”</p>
<p>cw : “ngga jd dh..never mind”</p>
<p>10.Jika mreka ga mau pergi ke suatu tempat bareng kalian, kalian ga usah khawatir dia pergi ke tempat lain untuk hunting cw lg, paling jg ntar pas kalian pulang, bakal nemuin mreka tertidur di depan komputernya sambil berlumuran soda yg tumpah..tenang, ini normal ko buat mreka, selimbutin aja terus matiin lampunya <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>11.Teman-temannya(yang sama-sama cupu)ga ada yg kurang ajar, kalian ga akan terlalu stress kan mendengar respon tmnnya si cupu seperti “OMG!! CEWE!! ,,gw boleh liat ga?!,cantik kya di komik X” daripada mendengar respon “wew,,nice ass..blh dong hha..ada tmn km yg jomblo ga?,seksi bgt lu,,(suit2,senggol2,colek2)”.</p>
<p>12.Kebanyakan ga terlalu posesif, dan kalian bisa jadi diri sendiri di hadapan mreka, kalian mau berkeliaran di rumah dengan t-shirt kumal dengan santainya ga masalah, soalnya mreka jg gtu!hhe..dan mreka ga terganggu kalo kalian ga dandan atow nambah berat badan.</p>
<p>13.Terdidik dengan benar,jadi ga perlu ngedengerin mereka bacot tentang mobil mereka (ya mungkin dikit), dia lebih punya banyak topik yg menarik seperti politik,kejadian di dunia,dll.</p>
<p>14.Hampir ga akan lagi mendengar kata-kata sambutan seperti “Yaw dawg whazzap!!” atau panggilan gaul mengganggu telinga lainnya lg, karena cowo cupu lebih berbicara dengan baik dan benar, memakai ejaan yg tepat.Dan bisa ngebedain antara toilet dan lantai, karena jarang jekpot (muntah karena mabok..-_-’), jadi ga perlu khawatir pulang kerumah dan ngeliat dia dan temannya tepar dilantai dengan botol bir, ya mungkin botol2 soda sh iya,hx.</p>
<p>15.Dan alasan terakhir kenapa cowo cupu bisa jadi pacar yang hebat, karena mereka sebenarnya peduli ama kalian, bukan karena kcantikan lu (wlowpun itu nilai tambah), atow karena seberapa kurus kalian,dan sebanyak apa make up di muka kalian, tapi mereka menyukai kalian apa adanya, itu bertahan lebih lama dari kata-kata “DaMN baby you got a fine ass!!!” atau rayuan gombal fisikly yang sejenis, percayalah..hha.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fithraleizure.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fithraleizure.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fithraleizure.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fithraleizure.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fithraleizure.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fithraleizure.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fithraleizure.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fithraleizure.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fithraleizure.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fithraleizure.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fithraleizure.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fithraleizure.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fithraleizure.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fithraleizure.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fithraleizure.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fithraleizure.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=13&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fithraleizure.wordpress.com/2008/06/23/kenapa-milih-cow-nerd-geek-dibanding-cow-gaul/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/813842d22e01131453494bb205a2b26c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fithraleizure</media:title>
		</media:content>
	</item>
		<item>
		<title>Never Let you Go by White lion</title>
		<link>http://fithraleizure.wordpress.com/2008/06/23/never-let-you-go-by-white-lion-2/</link>
		<comments>http://fithraleizure.wordpress.com/2008/06/23/never-let-you-go-by-white-lion-2/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 05:17:22 +0000</pubDate>
		<dc:creator>fithraleizure</dc:creator>
				<category><![CDATA[lyrics]]></category>

		<guid isPermaLink="false">http://fithraleizure.wordpress.com/?p=12</guid>
		<description><![CDATA[When the bed is cold as ice and tears are falling from your eyes Afraid to make your move But dying to be touched When the night is getting long and we are blind to what is wrong If only you could see with you I want to be When the questions in your head [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=12&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When the bed is cold as ice<br />
and tears are falling from your eyes<br />
Afraid to make your move<br />
But dying to be touched</p>
<p>When the night is getting long<br />
and we are blind to what is wrong<br />
If only you could see<br />
with you I want to be</p>
<p>When the questions in your head<br />
They are killing you<br />
Just remember what I’ve said<br />
and I promise you, promise you</p>
<p>I know…<br />
I know…<br />
I would never let you go<br />
and I will love you everyday</p>
<p>And I hold, I pray<br />
there would never come a day<br />
when we will say goodbye<br />
cause love can’t never die</p>
<p>There are times when nothing works<br />
and all you do just getting worse<br />
In your mind you giving up<br />
But waiting to be found</p>
<p>When your hope is gone and lost<br />
And you don’t know who you should trust<br />
You crying out for help<br />
You try to carry on</p>
<p>When the time is running out<br />
elapsed out<br />
Just remember what I’ve said<br />
and I promise you, I promise you</p>
<p>I know…<br />
I know…<br />
I would never let you go<br />
and I will love you everyday</p>
<p>And I hold, I pray<br />
there would never come a day<br />
when we will say goodbye<br />
cause love can’t never die</p>
<p>I know…<br />
I know…<br />
I would never let you go<br />
and I will love you everyday</p>
<p>And I hold, I pray<br />
there would never come a day<br />
when we will say goodbye<br />
cause love can’t never die</p>
<p>originally, you can see this lyrics in <a href="http://www.dewa108.com/?cat=11">here</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fithraleizure.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fithraleizure.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fithraleizure.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fithraleizure.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fithraleizure.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fithraleizure.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fithraleizure.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fithraleizure.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fithraleizure.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fithraleizure.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fithraleizure.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fithraleizure.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fithraleizure.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fithraleizure.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fithraleizure.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fithraleizure.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=12&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fithraleizure.wordpress.com/2008/06/23/never-let-you-go-by-white-lion-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/813842d22e01131453494bb205a2b26c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fithraleizure</media:title>
		</media:content>
	</item>
		<item>
		<title>Take Me Home by White Lion</title>
		<link>http://fithraleizure.wordpress.com/2008/06/23/never-let-you-go-by-white-lion/</link>
		<comments>http://fithraleizure.wordpress.com/2008/06/23/never-let-you-go-by-white-lion/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 05:04:26 +0000</pubDate>
		<dc:creator>fithraleizure</dc:creator>
				<category><![CDATA[lyrics]]></category>

		<guid isPermaLink="false">http://fithraleizure.wordpress.com/?p=10</guid>
		<description><![CDATA[Standing on the outside looking at you Trying so hard calling for you I haven’t given a place in your heart Now there is something that torn in apart Wandering far Blind to the lies Now can you see that I’ve open my eyes Out in the rain I’m calling for you Take me home [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=10&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Standing on the outside looking at you<br />
Trying so hard calling for you<br />
I haven’t given a place in your heart<br />
Now there is something that torn in apart</p>
<p>Wandering far<br />
Blind to the lies<br />
Now can you see that I’ve open my eyes<br />
Out in the rain I’m calling for you</p>
<p>Take me home<br />
Out of the cold<br />
Back in the warmth of your arms<br />
Take me home<br />
Love me till death<br />
Hold me like never before</p>
<p>Somebody told me that saw you alone<br />
looking to empty eyes like a stone<br />
Far in the distance I call out your name<br />
hoping that somehow you do the same</p>
<p>Wasting the time<br />
Wasting the day<br />
Trying to reach you but you far away<br />
Deep in the night I’m waiting for you</p>
<p>Take me home<br />
Out of the cold<br />
Back in the warmth of your arms<br />
Take me home<br />
Love me till death<br />
Hold me like never before</p>
<p>In a while…<br />
was I such a fool ?…I didn’t know<br />
You try to show me many time and let me know<br />
Now here I am again knocking on your door<br />
Showing you this man is not the way he was before</p>
<p>Wandering far<br />
Blind to the lies<br />
Now can you see that I’ve open my eyes<br />
Out in the rain… I’m waiting…</p>
<p>Take me home<br />
Out of the cold<br />
Back in the warmth of your arms<br />
Take me home<br />
Love me till death<br />
Hold me like never before</p>
<p>Take me home<br />
Out of the cold<br />
Back in the warmth of your arms<br />
Take me home<br />
And love me till death<br />
Hold me like never before</p>
<p>you can see the lyrics originally <a href="http://www.dewa108.com/?cat=11">here</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fithraleizure.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fithraleizure.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fithraleizure.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fithraleizure.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fithraleizure.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fithraleizure.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fithraleizure.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fithraleizure.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fithraleizure.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fithraleizure.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fithraleizure.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fithraleizure.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fithraleizure.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fithraleizure.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fithraleizure.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fithraleizure.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fithraleizure.wordpress.com&amp;blog=3893369&amp;post=10&amp;subd=fithraleizure&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fithraleizure.wordpress.com/2008/06/23/never-let-you-go-by-white-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/813842d22e01131453494bb205a2b26c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">fithraleizure</media:title>
		</media:content>
	</item>
	</channel>
</rss>
