<?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>Marco&#039;s Informatik Blog &#187; Shorewall</title>
	<atom:link href="http://www.ciacci.biz/category/linux/shorewall/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ciacci.biz</link>
	<description>Version : 0.79 Build 2904</description>
	<lastBuildDate>Thu, 22 Jul 2010 13:57:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Shorewall, un muro per il Pinguino</title>
		<link>http://www.ciacci.biz/2006/12/22/shorewall-un-muro-per-il-pinguino/</link>
		<comments>http://www.ciacci.biz/2006/12/22/shorewall-un-muro-per-il-pinguino/#comments</comments>
		<pubDate>Fri, 22 Dec 2006 21:21:50 +0000</pubDate>
		<dc:creator>marco</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shorewall]]></category>
		<category><![CDATA[Sicurezza]]></category>
		<category><![CDATA[Trustix]]></category>
		<category><![CDATA[dansguardian]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.ciacci.biz/2006/12/22/shorewall-un-muro-per-il-pinguino/</guid>
		<description><![CDATA[Uno dei principali usi del nostro amato GNU/Linux è sicuramente quello del firewall.
Potente, economico, versatile e facile da configurare&#8230;bhe non sempre!!!
Rispetto ad ipchains, il vecchio firewall che stava nei kenrnel 2.0, Iptables/Netfilter ha reso la sintassi meno contorta, ma per creare regole elaborate può essere sempre una pratica ostica.
Inoltre le appliances firewall commerciali più conosciute, permettono [...]]]></description>
			<content:encoded><![CDATA[<p>Uno dei principali usi del nostro amato GNU/Linux è sicuramente quello del firewall.<br />
Potente, economico, versatile e facile da configurare&#8230;bhe non sempre!!!<br />
Rispetto ad ipchains, il vecchio firewall che stava nei kenrnel 2.0, Iptables/Netfilter ha reso la sintassi meno contorta, ma per creare regole elaborate può essere sempre una pratica ostica.<br />
Inoltre le appliances firewall commerciali più conosciute, permettono di considerare il traffico entrante ed uscente non in schede di rete, ma in visione più ampia, in zone.<br />
Ogni zona può &#8220;gestire&#8221; anche più schede di rete, e le interazioni tra zone saranno governate da policy di default che potranno essere &#8220;superate&#8221; da regole specifiche, ma andiamo con calma!!<br />
Il files fondamentali che troverete in <strong>/etc/shorewall</strong> sono i seguenti</p>
<ul>
<li>zones</li>
<li>interfaces</li>
<li>policy</li>
<li>rules</li>
</ul>
<p>Ovviamente i nomi sono esplicativi, definizione delle zone, delle interfacce per ogni zona, delle policy di default tra zone e le specifiche regole.<br />
<strong>Adesso vi riporterò una configurazione tipica con due schede di rete, con regole che bloccano il traffico di ingresso se non verso determinati ip, blocco totale del traffico in uscita (nattato) escluso determinate porte ed inoltre dei redirect per l&#8217;interazione con Dansguardian/Squid e p3scan</strong>, ovviamente il nome delle zone sono indicativi <img src='http://www.ciacci.biz/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>/etc/shorewall/zones</p>
<blockquote><p>#ZONE   TYPE            OPTIONS         IN                      OUT<br />
#                                       OPTIONS                 OPTIONS<br />
fw      firewall<br />
verde   ipv4<br />
rossa   ipv4<br />
#LAST LINE &#8211; ADD YOUR ENTRIES ABOVE THIS ONE &#8211; DO NOT REMOVE</p></blockquote>
<p>/etc/shorewall/interfaces</p>
<blockquote><p>#ZONE   INTERFACE       BROADCAST       OPTIONS<br />
verde   eth0<br />
rossa   eth1    -       routeback<br />
#LAST LINE &#8212; ADD YOUR ENTRIES BEFORE THIS ONE &#8212; DO NOT REMOVE</p></blockquote>
<p>/etc/shorewall/policy</p>
<blockquote><p>#SOURCE         DEST            POLICY          LOG             LIMIT:BURST<br />
#                                               LEVEL<br />
rossa   fw      DROP<br />
rossa   verde   DROP<br />
verde   fw      ACCEPT<br />
verde   rossa   DROP<br />
fw      verde   ACCEPT<br />
fw      rossa   ACCEPT<br />
#LAST LINE &#8212; DO NOT REMOVE</p></blockquote>
<p>/etc/shorewall/rules</p>
<blockquote><p>#ACTION SOURCE          DEST            PROTO   DEST    SOURCE          ORIGINAL        RATE            USER/<br />
#                                               PORT(S) PORT(S)         DEST            LIMIT           GROUP<br />
#SECTION ESTABLISHED<br />
#SECTION RELATED<br />
SECTION NEW<br />
LOG:info        verde   fw      tcp     22<br />
LOG:info        verde   fw      tcp     10000<br />
ACCEPT  rossa:XX.XX.XX.XX   $FW     tcp     22<br />
ACCEPT  rossa:XX.XX.XX.XX   $FW     tcp     10000<br />
DNAT    rossa:XX.XX.XX.XX     verde:192.168.0.113     tcp     3389<br />
REDIRECT        verde   8110    tcp     110<br />
REDIRECT        verde   8080    tcp     80<br />
ACCEPT  verde   rossa   tcp     13,17,21,22,23,25,43,53,80,81,110,113,119,143,443<br />
ACCEPT  verde   rossa   tcp     465,993,995,1352,1755,1863,2003,2345,3389,4711<br />
ACCEPT  verde   rossa   tcp     2082,2401,4800,4899,5190,5900,7070,8080,8081,8443,8827,8775,10000<br />
ACCEPT  verde   rossa   tcp     50022,50080<br />
ACCEPT  verde   rossa   tcp     6665:6669<br />
ACCEPT  verde   rossa   tcp     1001:1010<br />
ACCEPT  verde   rossa   tcp     65120:65122<br />
ACCEPT  verde   rossa   tcp     60000:60010<br />
ACCEPT  verde   rossa   tcp     31443<br />
ACCEPT  verde   rossa   udp     37,53,123,3052,4569</p></blockquote>
<p>Due breve righe su casi particolari (messi per esempio)<br />
ACCEPT  rossa:XX.XX.XX.XX   $FW     tcp     22 (accetta collegamenti ssh da un determinato ip)<br />
ACCEPT  rossa:XX.XX.XX.XX   $FW     tcp     10000 (accetta collegamenti sulla porta <a href="http://www.webmin.com" target="_blank">webmin</a>)<br />
DNAT    rossa:XX.XX.XX.XX     verde:192.168.0.113     tcp     3389 (port forwarding su un server windows 2003 interno. sempre solo da un determinato ip esterno)<br />
REDIRECT        verde   8110    tcp     110 (per il check del traffico da parte di p3scan)<br />
REDIRECT        verde   8080    tcp     80 (per il controllo dei contenuti da parte di Dansguardian)<br />
Questa serie di regole dovrebbero permettervi una navigazione tranquilla degli utenti, ma anche una certa sicurezza (ad esempio impedire il peer to peer)<br />
Maggiori info sulla sintassi le trovate nella <a href="http://www.shorewall.net/Documentation_Index.html" target="_blank">documentazione ufficiale</a>.<br />
Inoltre le distro più adatte per questo uso, IMHO sono Debian e Trustix.<br />
A presto con nuovi articoli sul tema!<br />
Ah dimenticavo, un ottimo frontend per Shorewall è l&#8217;onnipresente <a href="http://www.webmin.com" target="_blank">Webmin</a>!</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d72').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Social Bookmarks</em></strong></a>
<br />
<div class="d72" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Shorewall%2C+un+muro+per+il+Pinguino&amp;Description=Shorewall%2C+un+muro+per+il+Pinguino&amp;Url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bloglines.com/sub/http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F" rel="nofollow" title="Add to&nbsp;Bloglines"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/bloglines.png" title="Add to&nbsp;Bloglines" alt="Add to&nbsp;Bloglines" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Blogmarks"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/bmarks.png" title="Add to&nbsp;Blogmarks" alt="Add to&nbsp;Blogmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.connotea.org/addpopup?continue=confirm&amp;uri=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Connotea"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/connotea.png" title="Add to&nbsp;Connotea" alt="Add to&nbsp;Connotea" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.diigo.com/post?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Diigo"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/diigo.png" title="Add to&nbsp;Diigo" alt="Add to&nbsp;Diigo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;DotNetKicks"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/dotnetkicks.png" title="Add to&nbsp;DotNetKicks" alt="Add to&nbsp;DotNetKicks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.dzone.com/links/add.html?description=Shorewall%2C+un+muro+per+il+Pinguino&amp;url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;DZone"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/dzone.png" title="Add to&nbsp;DZone" alt="Add to&nbsp;DZone" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://cgi.fark.com/cgi/fark/farkit.pl?u=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;h=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Fark"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/fark.png" title="Add to&nbsp;Fark" alt="Add to&nbsp;Fark" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;t=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Faves"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/bluedot.png" title="Add to&nbsp;Faves" alt="Add to&nbsp;Faves" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://fleck.com/litebookmarklet.php?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Fleck"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/fleck.png" title="Add to&nbsp;Fleck" alt="Add to&nbsp;Fleck" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://FriendSite.com/users/bookmarks/?u=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;t=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;FriendSite"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/friendsite.png" title="Add to&nbsp;FriendSite" alt="Add to&nbsp;FriendSite" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kaboodle.com/za/selectpage?p_pop=false&amp;pa=url&amp;u=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F" rel="nofollow" title="Add to&nbsp;Kaboodle"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/kaboodle.png" title="Add to&nbsp;Kaboodle" alt="Add to&nbsp;Kaboodle" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.maple.nu/cgi-bin/search6/usa/ss_submit.cgi?fct=100&amp;url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Maple"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/maple.png" title="Add to&nbsp;Maple" alt="Add to&nbsp;Maple" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;bm_description=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;T=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://netvouz.com/action/submitBookmark?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino&amp;popup=no" rel="nofollow" title="Add to&nbsp;Netvouz"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/netvouz.png" title="Add to&nbsp;Netvouz" alt="Add to&nbsp;Netvouz" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;h=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Newsvine"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/newsvine.png" title="Add to&nbsp;Newsvine" alt="Add to&nbsp;Newsvine" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.plugim.com/submit?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;PlugIM"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/plugim.png" title="Add to&nbsp;PlugIM" alt="Add to&nbsp;PlugIM" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.simpy.com/simpy/LinkAdd.do?href=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Simpy"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/simpy.png" title="Add to&nbsp;Simpy" alt="Add to&nbsp;Simpy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.kirtsy.com//submit.php?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F" rel="nofollow" title="Add to&nbsp;Kirtsy"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/skirt.png" title="Add to&nbsp;Kirtsy" alt="Add to&nbsp;Kirtsy" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Slashdot"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/slashdot.png" title="Add to&nbsp;Slashdot" alt="Add to&nbsp;Slashdot" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.shoutwire.com/?p=submit&amp;link=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F" rel="nofollow" title="Add to&nbsp;Shoutwire"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/shoutwire.png" title="Add to&nbsp;Shoutwire" alt="Add to&nbsp;Shoutwire" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.squidoo.com/lensmaster/bookmark?http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F" rel="nofollow" title="Add to&nbsp;Squidoo"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/squidoo.png" title="Add to&nbsp;Squidoo" alt="Add to&nbsp;Squidoo" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.sphere.com/sphereit/http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F" rel="nofollow" title="Add to&nbsp;SphereIt"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/sphereit.png" title="Add to&nbsp;SphereIt" alt="Add to&nbsp;SphereIt" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Spurl"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/spurl.png" title="Add to&nbsp;Spurl" alt="Add to&nbsp;Spurl" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.thisnext.com/pick/new/submit/sociable/?url=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;name=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;ThisNext"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/thisnext.png" title="Add to&nbsp;ThisNext" alt="Add to&nbsp;ThisNext" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://webride.org/discuss/split.php?uri=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Webride"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/webride.png" title="Add to&nbsp;Webride" alt="Add to&nbsp;Webride" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.wists.com/t.php?c=null&amp;r=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;u=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;title={text}" rel="nofollow" title="Add to&nbsp;Wists"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/wists.png" title="Add to&nbsp;Wists" alt="Add to&nbsp;Wists" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.ciacci.biz%2F2006%2F12%2F22%2Fshorewall-un-muro-per-il-pinguino%2F&amp;t=Shorewall%2C+un+muro+per+il+Pinguino" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.ciacci.biz/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d72').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.ciacci.biz/2006/12/22/shorewall-un-muro-per-il-pinguino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
