<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Daily logs &#187; Spoofing</title>
	<atom:link href="http://blog.pnyet.web.id/tag/spoofing/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.pnyet.web.id</link>
	<description>A Nobody trying to become a Somebody</description>
	<lastBuildDate>Wed, 25 Jan 2012 15:26:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Optimasi Kernel Linux dengan Systcl.conf</title>
		<link>http://blog.pnyet.web.id/2010/02/11/optimasi-kernel-linux-dengan-systcl-conf.html</link>
		<comments>http://blog.pnyet.web.id/2010/02/11/optimasi-kernel-linux-dengan-systcl-conf.html#comments</comments>
		<pubDate>Thu, 11 Feb 2010 04:46:54 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[DOS]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Spoofing]]></category>

		<guid isPermaLink="false">http://blog.pnyet.web.id/?p=87</guid>
		<description><![CDATA[Sudah lama saya menuliskan optimasi kernel Linux dengan konfigurasi systcl.conf, tapi berhubung arsip di main blog saya http://pnyet.web.id tidak terekam search engine dengan baik maka saya menuliskan ulang disini. Konfigurasi sysctl.conf ini bertujuan untuk performance tunning, dan security tunning di sistem operasi Linux. Secara spesifik, konfigurasi ini saya gunakan di CentOS namun konfigurasi bukan tidak [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.pnyet.web.id%2F2010%2F02%2F11%2Foptimasi-kernel-linux-dengan-systcl-conf.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.pnyet.web.id%2F2010%2F02%2F11%2Foptimasi-kernel-linux-dengan-systcl-conf.html&amp;source=pnyet&amp;style=normal&amp;service=bit.ly&amp;hashtags=centos,DOS,Kernel,Linux,Security,Spoofing&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;"><img style="float: left;" title="CentOS" src="http://blog.pnyet.web.id/wp-content/uploads/2010/02/c35.png" alt="CentOS" width="316" height="237" />Sudah lama saya menuliskan optimasi kernel <a href="http://blog.pnyet.web.id/2011/08/18/setting-time-on-linux.html">Linux</a> dengan konfigurasi systcl.conf, tapi berhubung arsip di main blog saya http://pnyet.web.id tidak terekam search engine dengan baik maka saya menuliskan ulang disini. Konfigurasi sysctl.conf ini bertujuan untuk performance tunning, dan security tunning di sistem operasi <a href="http://blog.pnyet.web.id/2011/08/18/setting-time-on-linux.html">Linux</a>. Secara spesifik, konfigurasi ini saya gunakan di CentOS namun konfigurasi bukan tidak mungkin untuk digunakan di GNU/<a href="http://blog.pnyet.web.id/2011/08/18/setting-time-on-linux.html">Linux</a> varian lainnya.<span id="more-87"></span>Dalam kaitannya dengan keamanan maka konfigurasi dibawah ini dapat menghindarkan server dari serangan DOS maupun Spoofing. Sebagai catatan, dalam konfigurasi ini saya menggunakan eth0 sebagai primary networking interface.</p>
<blockquote>
<div># Controls IP packet forwarding<br />
 net.ipv4.ip_forward = 0</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p># Do not accept source routing<br />
 net.ipv4.conf.all.accept_source_route = 0<br />
 net.ipv4.conf.lo.accept_source_route = 0<br />
 net.ipv4.conf.eth0.accept_source_route = 0<br />
 net.ipv4.conf.default.accept_source_route = 0</p>
<p># Enable IP spoofing protection, turn on source route verification<br />
 net.ipv4.conf.all.rp_filter = 1<br />
 net.ipv4.conf.lo.rp_filter = 1<br />
 net.ipv4.conf.eth0.rp_filter = 1<br />
 net.ipv4.conf.default.rp_filter = 1</p>
<p># Disable ICMP Redirect Acceptance<br />
 net.ipv4.conf.all.accept_redirects = 0<br />
 net.ipv4.conf.lo.accept_redirects = 0<br />
 net.ipv4.conf.eth0.accept_redirects = 0<br />
 net.ipv4.conf.default.accept_redirects = 0</p>
<p># Enable Log Spoofed Packets, Source Routed Packets, Redirect Packets<br />
 net.ipv4.conf.all.log_martians = 0<br />
 net.ipv4.conf.lo.log_martians = 0<br />
 net.ipv4.conf.eth0.log_martians = 0</p>
</div>
<div># Decrease the time default value for tcp_fin_timeout connection<br />
 net.ipv4.tcp_fin_timeout = 15</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p># Decrease the time default value for tcp_keepalive_time connection<br />
 net.ipv4.tcp_keepalive_time = 1800</p>
<p># Turn off the tcp_window_scaling<br />
 net.ipv4.tcp_window_scaling = 0</p>
<p># Turn off the tcp_sack<br />
 net.ipv4.tcp_sack = 0</p>
<p># Turn off the tcp_timestamps<br />
 net.ipv4.tcp_timestamps = 0</p>
<p># Controls whether core dumps will append the PID to the core filename<br />
 # Useful for debugging multi-threaded applications<br />
 kernel.core_uses_pid = 1</p>
<p># Controls the use of TCP syncookies<br />
 net.ipv4.tcp_syncookies = 1</p>
<p># Controls the maximum size of a message, in bytes<br />
 kernel.msgmnb = 65536</p>
<p># Controls the default maxmimum size of a mesage queue<br />
 kernel.msgmax = 65536</p>
<p># Controls the maximum shared segment size, in bytes<br />
 kernel.shmmax = 4294967295</p>
<p># Controls the maximum number of shared memory segments, in pages<br />
 kernel.shmall = 268435456</p>
</div>
<div>#Ignore Ping<br />
 net.ipv4.icmp_echo_ignore_all = 0</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p>#Ignore Broadcast ICMP Request<br />
 net.ipv4.icmp_echo_ignore_broadcasts = 1</p>
<p># Enable bad error message Protection<br />
 net.ipv4.icmp_ignore_bogus_error_responses = 1</p>
<p># Log Spoofed Packets, Source Routed Packets, Redirect Packets<br />
 net.ipv4.conf.all.log_martians = 1</p>
<p># Increases the size of the socket queue (effectively, q0).<br />
 net.ipv4.tcp_max_syn_backlog = 1024</p>
<p># Increase the tcp-time-wait buckets pool size<br />
 net.ipv4.tcp_max_tw_buckets = 1440000</p>
<p># Allowed local port range<br />
 net.ipv4.ip_local_port_range = 16384 65536</p>
</div>
</blockquote>
<div>Adapun saran atau kritikan atau referensi yang lebih baik untuk konfigurasi sysctl.conf silahkan memberikan komentar.</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pnyet.web.id/2010/02/11/optimasi-kernel-linux-dengan-systcl-conf.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

