<?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>Vladislas's Blog</title>
	<atom:link href="http://vladislas.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vladislas.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 01 Jan 2009 21:47:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vladislas.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Vladislas's Blog</title>
		<link>http://vladislas.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vladislas.wordpress.com/osd.xml" title="Vladislas&#039;s Blog" />
	<atom:link rel='hub' href='http://vladislas.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Konfigurasi Firewall dengan MikroTik</title>
		<link>http://vladislas.wordpress.com/2009/01/01/konfigurasi-firewall-dengan-mikrotik/</link>
		<comments>http://vladislas.wordpress.com/2009/01/01/konfigurasi-firewall-dengan-mikrotik/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 21:44:11 +0000</pubDate>
		<dc:creator>vladislas</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[MiktoTik RouterOS]]></category>

		<guid isPermaLink="false">http://vladislas.wordpress.com/?p=3</guid>
		<description><![CDATA[MikroTik, Jaringan, Networking<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vladislas.wordpress.com&amp;blog=6019292&amp;post=3&amp;subd=vladislas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Security Router MikroTik<br />
/ ip firewall filter</p>
<ul>
<li><span style="font-size:x-small;">add chain=input connection-state=established comment=”Accept established connections”</span></li>
<li><span style="font-size:x-small;">add chain=input connection-state=related comment=”Accept related connections”</span></li>
<li><span style="font-size:x-small;">add chain=input connection-state=invalid action=drop comment=”Drop invalid connections” </span></li>
<li><span style="font-size:x-small;">add chain=input protocol=udp action=accept comment=”UDP” disabled=no </span></li>
<li><span style="font-size:x-small;">add chain=input protocol=icmp limit=50/5s,2 comment=”Allow limited pings” </span></li>
<li><span style="font-size:x-small;">add chain=input protocol=icmp action=drop comment=”Drop excess pings” </span></li>
<li><span style="font-size:x-small;">add chain=input protocol=tcp dst-port=22 comment=”SSH for secure shell”</span></li>
<li><span style="font-size:x-small;">add chain=input protocol=tcp dst-port=8291 comment=”winbox” # Edit these rules to reflect your actual IP addresses! # </span></li>
<li><span style="font-size:x-small;">add chain=input src-address=159.148.172.192/28 comment=”From Mikrotikls network” </span></li>
<li><span style="font-size:x-small;">add chain=input src-address=10.0.0.0/8 comment=”From our private LAN”# End of Edit #</span></li>
<li><span style="font-size:x-small;">add chain=input action=log log-prefix=”DROP INPUT” comment=”Log everything else”</span></li>
<li><span style="font-size:x-small;">add chain=input action=drop comment=”Drop everything else” </span></li>
</ul>
<p>Setting Keamanan Jaringan Hanya untuk Lokal Area:<br />
/ip firewall filter</p>
<ul>
<li><span style="font-size:x-small;">add chain=forward connection-state=established comment=”allow established connections” </span></li>
<li><span style="font-size:x-small;">add chain=forward connection-state=related comment=”allow related connections”</span></li>
<li><span style="font-size:x-small;">add chain=forward connection-state=invalid action=drop comment=”drop invalid connections” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=135-139 action=drop comment=”Drop Blaster Worm” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=udp dst-port=135-139 action=drop comment=”Drop Messenger Worm” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=445 action=drop comment=”Drop Blaster Worm” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=udp dst-port=445 action=drop comment=”Drop Blaster Worm” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=593 action=drop comment=”________” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=1024-1030 action=drop comment=”________” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=1080 action=drop comment=”Drop MyDoom” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=1214 action=drop comment=”________” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=1363 action=drop comment=”ndm requester” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=1364 action=drop comment=”ndm server” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=1368 action=drop comment=”screen cast”</span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=1373 action=drop comment=”hromgrafx” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=1377 action=drop comment=”cichlid” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=1433-1434 action=drop comment=”Worm” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=2745 action=drop comment=”Bagle Virus” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=2283 action=drop comment=”Drop Dumaru.Y”</span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=2535 action=drop comment=”Drop Beagle” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=2745 action=drop comment=”Drop Beagle.C-K” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=3127-3128 action=drop comment=”Drop MyDoom” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=3410 action=drop comment=”Drop Backdoor OptixPro”</span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=4444 action=drop comment=”Worm” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=udp dst-port=4444 action=drop comment=”Worm” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=5554 action=drop comment=”Drop Sasser” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=8866 action=drop comment=”Drop Beagle.B” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=9898 action=drop comment=”Drop Dabber.A-B” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=10000 action=drop comment=”Drop Dumaru.Y” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=10080 action=drop comment=”Drop MyDoom.B” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=12345 action=drop comment=”Drop NetBus” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=17300 action=drop comment=”Drop Kuang2″ </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=27374 action=drop comment=”Drop SubSeven” </span></li>
<li><span style="font-size:x-small;">add chain=virus protocol=tcp dst-port=65506 action=drop comment=”Drop PhatBot, Agobot, Gaobot”</span></li>
</ul>
<p>Matikan Port yang Biasa di pakai Spam :</p>
<ul>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=135-139 protocol=tcp action=drop</span></li>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=135-139 protocol=udp action=drop</span></li>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=445 protocol=tcp action=drop</span></li>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=445 protocol=udp action=drop</span></li>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=593 protocol=tcp action=drop</span></li>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=4444 protocol=tcp action=drop</span></li>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=5554 protocol=tcp action=drop</span></li>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=9996 protocol=tcp action=drop</span></li>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=995-999 protocol=udp action=drop</span></li>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=53 protocol=tcp action=drop</span></li>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=55 protocol=tcp action=drop</span></li>
</ul>
<p>Anda juga dapat menambah rule untuk pertahanan kemudian hari<br />
anda dapat menganalisa port yang digunakan suatu aplikasi yang tidak anda inginkan aplikasi tersebut mengakses ke internet<br />
sebagai contoh ingin mematikan port yang digunakan MIrc</p>
<ul>
<li><span style="font-size:x-small;">/ip firewall filter add chain=forward dst-port=6665-6668 protocol=tcp action=drop</span></li>
</ul>
<p>anda bisa menggunakan AVG plus firewall untuk analisa program yang mengunakan akses keluar</p>
<p>Selamat Mencobanya..<br />
jika ada yang dipertanyakan lagi dapat contact di mail yang di proxy</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vladislas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vladislas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vladislas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vladislas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vladislas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vladislas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vladislas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vladislas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vladislas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vladislas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vladislas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vladislas.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vladislas.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vladislas.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vladislas.wordpress.com&amp;blog=6019292&amp;post=3&amp;subd=vladislas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vladislas.wordpress.com/2009/01/01/konfigurasi-firewall-dengan-mikrotik/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1970898812c9177042005bb57704befb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vladislas</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://vladislas.wordpress.com/2009/01/01/hello-world/</link>
		<comments>http://vladislas.wordpress.com/2009/01/01/hello-world/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 21:30:27 +0000</pubDate>
		<dc:creator>vladislas</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vladislas.wordpress.com&amp;blog=6019292&amp;post=1&amp;subd=vladislas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vladislas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vladislas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vladislas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vladislas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vladislas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vladislas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vladislas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vladislas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vladislas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vladislas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vladislas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vladislas.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vladislas.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vladislas.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vladislas.wordpress.com&amp;blog=6019292&amp;post=1&amp;subd=vladislas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vladislas.wordpress.com/2009/01/01/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1970898812c9177042005bb57704befb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vladislas</media:title>
		</media:content>
	</item>
	</channel>
</rss>
