<?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>odrakir.com &#187; Networking</title>
	<atom:link href="http://www.odrakir.com/blog/category/computer-stuff/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.odrakir.com/blog</link>
	<description>my site / my stuff / my thoughts / my way</description>
	<lastBuildDate>Thu, 24 Jun 2010 12:58:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Integrating Squid with Active Directory</title>
		<link>http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/</link>
		<comments>http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 15:01:31 +0000</pubDate>
		<dc:creator>Odrakir</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.odrakir.com/blog/?p=926</guid>
		<description><![CDATA[Recently I needed to integrate a Squid Proxy server in an Active Directory environment. The main objective was to grant / deny access to the Internet by user / group validation, using single sign on. The solution might not be the most elegant, but it&#8217;s a working one. You&#8217;ll need to install the Kerberos, Samba, [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I needed to integrate a Squid Proxy server in an Active Directory environment. The main objective was to grant / deny access to the Internet by user / group validation, using single sign on.</p>
<p>The solution might not be the most elegant, but it&#8217;s a working one. You&#8217;ll need to install the Kerberos, Samba, Squid and NTP packages.</p>
<p>In this solution will be allowing all users in the <strong>InternetOn</strong> AD group to have access automatically. Any users outside this group will be denied access. Computers outside the AD trying to use the proxy will be prompt for username and password.</p>
<p><strong>krb5.conf</strong></p>
<pre>[logging]
default = FILE:/var/log/krb5libs.log
kdc = FILE:/var/log/krb5kdc.log
admin_server = FILE:/var/log/kadmind.log</pre>
<pre>[libdefaults]
default_realm = YOURDOMAIN
dns_lookup_realm = false
dns_lookup_kdc = false
ticket_lifetime = 24h
forwardable = yes</pre>
<pre>[realms]
YOURDOMAIN = {
kdc = yourpdc
admin_server = yourpdc
default_domain = YOURDOMAIN
kpasswd_server = yourpdc
}</pre>
<pre>[domain_realm]
.yourdomain = yourdomain</pre>
<pre>[kdc]
profile = /var/kerberos/krb5kdc/kdc.conf</pre>
<pre>[appdefaults]
pam = {
debug = false
ticket_lifetime = 36000
renew_lifetime = 36000
forwardable = true
krb4_convert = false
}</pre>
<p>#####################################################</p>
<p><strong>smb.conf</strong></p>
<pre>[global]
workgroup = YOURDOMAIN
server string = SQUIDPROXY (or any other name you want)
security = ADS
auth methods = winbind
encrypt passwords = yes
idmap uid = 70001-90000
winbind enum users = yes
winbind gid = 70001-90000
winbind enum groups = yes
client use spnego = yes
winbind separator = \\
load printers = yes
cups options = raw
log file = /var/log/samba/%m.log
max log size = 50
password server = yourpdcIP
realm = YOURDOMAIN
dns proxy = no</pre>
<pre>[homes]
comment = Home Directories
browseable = no
writable = yes

[printers]
comment = All Printers
path = /usr/spool/samba
browseable = no
guest ok = no
writable = no
printable = yes</pre>
<p>#####################################################</p>
<p><strong>squid.conf</strong></p>
<pre>http_port 8080
hierarchy_stoplist cgi-bin ?
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
hosts_file /etc/hosts
refresh_pattern ^ftp: 1440 20% 10080
refresh_pattern ^gopher: 1440 0% 1440
refresh_pattern . 0 20% 4320
access_log /var/log/squid/access.log squid
emulate_httpd_log on</pre>
<pre><strong>auth_param ntlm program /usr/bin/ntlm_auth --helper-protocol=squid-2.5-ntlmssp</strong>
auth_param ntlm children 5
<strong>auth_param basic program /usr/bin/ntlm_auth --helper-protocol=squid-2.5-basic</strong>
auth_param basic children 5
auth_param basic realm Squid proxy-caching web server
auth_param basic credentialsttl 2 hours</pre>
<pre><strong>external_acl_type ADS %LOGIN /usr/lib/squid/wbinfo_group.pl</strong>
<strong>acl interneton external ADS InternetOn</strong>

acl blocksites url_regex "/etc/squid/squid-block.acl"
acl all src 0.0.0.0/0.0.0.0
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl to_localhost dst 127.0.0.0/8
acl SSL_ports port 443 563 # https, snews
acl SSL_ports port 873 # rsync
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # waisacl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl Safe_ports port 631 # cups
acl Safe_ports port 873 # rsync
acl Safe_ports port 901 # SWAT
acl purge method PURGE
acl CONNECT method CONNECT</pre>
<pre><strong>acl AuthorizedUsers proxy_auth REQUIRED</strong></pre>
<pre>http_access deny blocksites
<strong>http_access allow interneton</strong>
http_access allow manager localhost
http_access deny manager
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access deny all
http_reply_access allow all
icp_access allow all
coredump_dir /var/spool/squid</pre>
<p>#####################################################</p>
<p><strong>Start samba, winbind and squid by this order.</strong></p>
<p><strong>Synchronize your squid server with the AD</strong></p>
<pre>ntpdate yourprimarydomaincontroller</pre>
<p><strong>Initialise Kerberos</strong></p>
<pre>kinit administrator@YOURDOMAIN</pre>
<p><strong>Test Kerberos connection</strong></p>
<pre>klist</pre>
<p><strong>Join Squid Server to AD</strong></p>
<pre>net ads join -S yourpdc -U administrator</pre>
<p><strong>Validate Trust</strong></p>
<pre>wbinfo -t</pre>
<p><strong>Validate if the wbinfo_group.pl script is working</strong></p>
<pre>echo "youralloweduser InternetOn" | /usr/lib/squid/wbinfo_group.pl -d
(it returns OK or ERR if the user is in the InternetOn group or not)</pre>
<p><strong>You might have some problems with the winbindd_privileged directory. If that&#8217;s the case:</strong></p>
<pre>cd /var/cache/samba
chgrp squid winbindd_privileged
chmod 750 winbindd_privileged</pre>
<p><strong>The problem with this setup is that when you change the InternetOn members, Samba / Winbind aren&#8217;t aware of the change until the cache clears, so I made a small script you can run in cron or manually.</strong></p>
<p><strong>clearcache.sh</strong></p>
<pre>#!/bin/bash
/etc/init.d/smb stop
/etc/init.d/winbind stop
rm -f /var/cache/samba/*.tdb
/etc/init.d/smb start
/etc/init.d/winbind start
/etc/init.d/squid reload</pre>
<p>Test this at your own risk. <img src='http://www.odrakir.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Integrating+Squid+with+Active+Directory++-+http://tinyurl.com/yfz72ce+%28via+%40odrakir%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/&amp;t=Integrating+Squid+with+Active+Directory+" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/&amp;title=Integrating+Squid+with+Active+Directory+" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Integrating+Squid+with+Active+Directory+&amp;body=Link: http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Recently%20I%20needed%20to%20integrate%20a%20Squid%20Proxy%20server%20in%20an%20Active%20Directory%20environment.%20The%20main%20objective%20was%20to%20grant%20%2F%20deny%20access%20to%20the%20Internet%20by%20user%20%2F%20group%20validation%2C%20using%20single%20sign%20on.%0D%0A%0D%0AThe%20solution%20might%20not%20be%20the%20most%20elegant%2C%20but%20it%27s%20a%20working%20one.%20You%27ll%20need%20to%20install%20the%20Ke" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/&amp;title=Integrating+Squid+with+Active+Directory+" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/&amp;title=Integrating+Squid+with+Active+Directory+&amp;srcUrl=http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/&amp;srcTitle=Integrating+Squid+with+Active+Directory+&amp;snippet=Recently%20I%20needed%20to%20integrate%20a%20Squid%20Proxy%20server%20in%20an%20Active%20Directory%20environment.%20The%20main%20objective%20was%20to%20grant%20%2F%20deny%20access%20to%20the%20Internet%20by%20user%20%2F%20group%20validation%2C%20using%20single%20sign%20on.%0D%0A%0D%0AThe%20solution%20might%20not%20be%20the%20most%20elegant%2C%20but%20it%27s%20a%20working%20one.%20You%27ll%20need%20to%20install%20the%20Ke" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/&amp;title=Integrating+Squid+with+Active+Directory+" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Integrating+Squid+with+Active+Directory+&amp;link=http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/&amp;title=Integrating+Squid+with+Active+Directory+" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/&amp;title=Integrating+Squid+with+Active+Directory+" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.odrakir.com/blog/2009/11/19/integrating-squid-with-active-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LAN IPs on Mail.app Email Headers</title>
		<link>http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/</link>
		<comments>http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 11:57:11 +0000</pubDate>
		<dc:creator>Odrakir</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.odrakir.com/blog/?p=917</guid>
		<description><![CDATA[Dear Apple, please explain why is my computer (added to not be mistaken with the router&#8217;s IP) LAN IP address showing on the email headers of the mails I send with Mail.app. Thanks! Bellow, in red, my computer&#8217;s private LAN IP Address. In green my Router&#8217;s Public/WAN IP address which is &#8220;normal&#8221; to be included [...]]]></description>
			<content:encoded><![CDATA[<p>Dear Apple,</p>
<p>please explain why is my <strong>computer </strong><em>(added to not be mistaken with the router&#8217;s IP)</em><strong> LAN IP</strong> address showing on the email headers of the mails I send with Mail.app.</p>
<p>Thanks!</p>
<p>Bellow, in red, my computer&#8217;s private LAN IP Address. In green my Router&#8217;s Public/WAN IP address which is &#8220;normal&#8221; to be included on most email headers.</p>
<pre>Return-Path: &lt;rsaramago@gmail.com&gt;
Received: from<span style="color: #ff0000;"> ?XX.XX.XX.XX?</span> (pa6-XX-XX-XXX-XXX.netvisao.pt [<span style="color: #00ff00;">XX.XX.XXX.XXX</span>])
 by mx.google.com with ESMTPS id 7sm502355eyb.8.2009.11.13.01.07.07
 (version=TLSv1/SSLv3 cipher=RC4-MD5);
 Fri, 13 Nov 2009 01:07:08 -0800 (PST)
Subject: Teste
Mime-Version: 1.0 (Apple Message framework v1077)
Content-Type: multipart/alternative; boundary=Apple-Mail-1-623152288
From: Ricardo Saramago &lt;rsaramago@gmail.com&gt;
To: Testy McTest &lt;test@test.pt&gt;
X-Mailer: Apple Mail (2.1077)</pre>
<p><strong>Update:</strong> I&#8217;ve clarified some descriptions above after some user comments, I realized that It wasn&#8217;t clear what IPs I was referring to.</p>
<p>It seems that this is common on most email clients, except for Outlook. This &#8220;issue&#8221; triggered my attention when I was looking into the mail headers from a mail I sent from Mail.app in response to a mail from Outlook and they were indeed different in this aspect.</p>
<p>The client&#8217;s computer Local IP address and the Router&#8217;s / Firewall / Modem / whatever public IP address are added by the SMTP Server to the Envelop&#8217;s &#8220;Received&#8221; line, which it probably gets from the EHLO.</p>
<p>Still, this isn&#8217;t secure as it allows malicious attackers to map a victims network very easy.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=LAN+IPs+on+Mail.app+Email+Headers+-+http://tinyurl.com/ygdgphd+%28via+%40odrakir%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/&amp;t=LAN+IPs+on+Mail.app+Email+Headers" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/&amp;title=LAN+IPs+on+Mail.app+Email+Headers" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=LAN+IPs+on+Mail.app+Email+Headers&amp;body=Link: http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Dear%20Apple%2C%0D%0A%0D%0Aplease%20explain%20why%20is%20my%20computer%20%28added%20to%20not%20be%20mistaken%20with%20the%20router%27s%20IP%29%20LAN%20IP%20address%20showing%20on%20the%20email%20headers%20of%20the%20mails%20I%20send%20with%20Mail.app.%0D%0A%0D%0AThanks%21%0D%0A%0D%0ABellow%2C%20in%20red%2C%20my%20computer%27s%20private%20LAN%20IP%20Address.%20In%20green%20my%20Router%27s%20Public%2FWAN%20IP%20address%20which%20is%20%22nor" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/&amp;title=LAN+IPs+on+Mail.app+Email+Headers" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/&amp;title=LAN+IPs+on+Mail.app+Email+Headers&amp;srcUrl=http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/&amp;srcTitle=LAN+IPs+on+Mail.app+Email+Headers&amp;snippet=Dear%20Apple%2C%0D%0A%0D%0Aplease%20explain%20why%20is%20my%20computer%20%28added%20to%20not%20be%20mistaken%20with%20the%20router%27s%20IP%29%20LAN%20IP%20address%20showing%20on%20the%20email%20headers%20of%20the%20mails%20I%20send%20with%20Mail.app.%0D%0A%0D%0AThanks%21%0D%0A%0D%0ABellow%2C%20in%20red%2C%20my%20computer%27s%20private%20LAN%20IP%20Address.%20In%20green%20my%20Router%27s%20Public%2FWAN%20IP%20address%20which%20is%20%22nor" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/&amp;title=LAN+IPs+on+Mail.app+Email+Headers" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=LAN+IPs+on+Mail.app+Email+Headers&amp;link=http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/&amp;title=LAN+IPs+on+Mail.app+Email+Headers" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/&amp;title=LAN+IPs+on+Mail.app+Email+Headers" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.odrakir.com/blog/2009/11/16/lan-ips-on-mail-app/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>JoikuSpot &#8211; A WiFi Spot on your Mobile</title>
		<link>http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/</link>
		<comments>http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 15:01:08 +0000</pubDate>
		<dc:creator>Odrakir</dc:creator>
				<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Joiku]]></category>
		<category><![CDATA[JoikuSpot]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[WiFi]]></category>

		<guid isPermaLink="false">http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/</guid>
		<description><![CDATA[JoikuSpot is a free mobile software solution that turns Nokia Smartphones to WLAN HotSpots. JoikuSpot software is installed directly to the phone. When switched on, laptops and ipods can establish instant and fast wireless internet connection via smartphone&#8217;s JoikuSpot access point using phone&#8217;s own 3G internet connection. Multiple devices can connect to JoikuSpot in parallel [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><a href="http://www.joiku.com/?action=products&#038;mode=productDetails&#038;product_id=310">JoikuSpot</a> is a free mobile software solution that turns Nokia Smartphones to WLAN HotSpots.</p>
<p>JoikuSpot software is installed directly to the phone. When switched on, laptops and ipods can establish instant and fast wireless internet connection via smartphone&#8217;s JoikuSpot access point using phone&#8217;s own 3G internet connection.</p>
<p>Multiple devices can connect to JoikuSpot in parallel and seamlessly share the same 3G internet connection. JoikuSpot acts thus as an internet gateway to external WLAN devices.</p></blockquote>
<p>Useful isn&#8217;t it? <img src='http://www.odrakir.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=JoikuSpot+-+A+WiFi+Spot+on+your+Mobile+-+http://tinyurl.com/y88zjvg+%28via+%40odrakir%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/&amp;t=JoikuSpot+-+A+WiFi+Spot+on+your+Mobile" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/&amp;title=JoikuSpot+-+A+WiFi+Spot+on+your+Mobile" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=JoikuSpot+-+A+WiFi+Spot+on+your+Mobile&amp;body=Link: http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A JoikuSpot%20is%20a%20free%20mobile%20software%20solution%20that%20turns%20Nokia%20Smartphones%20to%20WLAN%20HotSpots.%0D%0A%0D%0AJoikuSpot%20software%20is%20installed%20directly%20to%20the%20phone.%20When%20switched%20on%2C%20laptops%20and%20ipods%20can%20establish%20instant%20and%20fast%20wireless%20internet%20connection%20via%20smartphone%27s%20JoikuSpot%20access%20point%20using%20phone%27s%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/&amp;title=JoikuSpot+-+A+WiFi+Spot+on+your+Mobile" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/&amp;title=JoikuSpot+-+A+WiFi+Spot+on+your+Mobile&amp;srcUrl=http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/&amp;srcTitle=JoikuSpot+-+A+WiFi+Spot+on+your+Mobile&amp;snippet=JoikuSpot%20is%20a%20free%20mobile%20software%20solution%20that%20turns%20Nokia%20Smartphones%20to%20WLAN%20HotSpots.%0D%0A%0D%0AJoikuSpot%20software%20is%20installed%20directly%20to%20the%20phone.%20When%20switched%20on%2C%20laptops%20and%20ipods%20can%20establish%20instant%20and%20fast%20wireless%20internet%20connection%20via%20smartphone%27s%20JoikuSpot%20access%20point%20using%20phone%27s%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/&amp;title=JoikuSpot+-+A+WiFi+Spot+on+your+Mobile" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=JoikuSpot+-+A+WiFi+Spot+on+your+Mobile&amp;link=http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/&amp;title=JoikuSpot+-+A+WiFi+Spot+on+your+Mobile" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/&amp;title=JoikuSpot+-+A+WiFi+Spot+on+your+Mobile" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.odrakir.com/blog/2008/02/06/joikuspot-a-wifi-spot-on-your-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Little Snitch 2.0 Beta 6</title>
		<link>http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/</link>
		<comments>http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/#comments</comments>
		<pubDate>Fri, 31 Aug 2007 23:33:02 +0000</pubDate>
		<dc:creator>Odrakir</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/</guid>
		<description><![CDATA[Little Snitch is a Mac OS X app that runs in the background and hooks with the kernel. As the name indicates, Little Snitch warns you when an application tries to make a network connection, asking you to decide if you allow, deny or add a permanent rule for that specific app in future connections. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.odrakir.com/blog/wp-content/uploads/2007/08/littlesnitch.jpg" class="noborder" /></p>
<p></p>
<p><a href="http://www.obdev.at/products/littlesnitch/index.html">Little Snitch</a> is a Mac OS X app that runs in the background and hooks with the kernel. As the name indicates, Little Snitch warns you when an application tries to make a network connection, asking you to decide if you allow, deny or add a permanent rule for that specific app in future connections. </p>
<p>A good amount of information on the connection being made is presented to the user, and on version 2 (still in beta), besides the improved network filtering, a visual Network Monitor has been implemented, allowing the user to have real time access to the connections as well as some some send / receive icons like Zone Labs&#8217; Zone Alarm. The configuration interface has suffered some changes and it&#8217;s now more functional and user friendly than the previous version.</p>
<p>[tags]Little Snitch, Security, Networking, Mac OS X[/tags] </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Little+Snitch+2.0+Beta+6+-+http://tinyurl.com/yeak3g5+%28via+%40odrakir%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/&amp;t=Little+Snitch+2.0+Beta+6" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/&amp;title=Little+Snitch+2.0+Beta+6" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Little+Snitch+2.0+Beta+6&amp;body=Link: http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0A%0D%0A%0D%0ALittle%20Snitch%20is%20a%20Mac%20OS%20X%20app%20that%20runs%20in%20the%20background%20and%20hooks%20with%20the%20kernel.%20As%20the%20name%20indicates%2C%20Little%20Snitch%20warns%20you%20when%20an%20application%20tries%20to%20make%20a%20network%20connection%2C%20asking%20you%20to%20decide%20if%20you%20allow%2C%20deny%20or%20add%20a%20permanent%20rule%20for%20that%20specific%20app%20in%20future%20connec" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/&amp;title=Little+Snitch+2.0+Beta+6" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/&amp;title=Little+Snitch+2.0+Beta+6&amp;srcUrl=http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/&amp;srcTitle=Little+Snitch+2.0+Beta+6&amp;snippet=%0D%0A%0D%0A%0D%0A%0D%0ALittle%20Snitch%20is%20a%20Mac%20OS%20X%20app%20that%20runs%20in%20the%20background%20and%20hooks%20with%20the%20kernel.%20As%20the%20name%20indicates%2C%20Little%20Snitch%20warns%20you%20when%20an%20application%20tries%20to%20make%20a%20network%20connection%2C%20asking%20you%20to%20decide%20if%20you%20allow%2C%20deny%20or%20add%20a%20permanent%20rule%20for%20that%20specific%20app%20in%20future%20connec" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/&amp;title=Little+Snitch+2.0+Beta+6" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Little+Snitch+2.0+Beta+6&amp;link=http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/&amp;title=Little+Snitch+2.0+Beta+6" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/&amp;title=Little+Snitch+2.0+Beta+6" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.odrakir.com/blog/2007/08/31/little-snitch-20-beta-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jack?</title>
		<link>http://www.odrakir.com/blog/2006/12/13/jack/</link>
		<comments>http://www.odrakir.com/blog/2006/12/13/jack/#comments</comments>
		<pubDate>Wed, 13 Dec 2006 12:26:59 +0000</pubDate>
		<dc:creator>Odrakir</dc:creator>
				<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.odrakir.com/blog/?p=461</guid>
		<description><![CDATA[I&#8217;m getting a few hits from someone with this user agent: JACK-O`-LANTERN/1.1 I&#8217;ve googled it and came and found nothing&#8230; Does anyone know who&#8217;s using this? [tags]JACK-O`-LANTERN, User Agent, Browser, Search Engine, Crawlers[/tags] Tweet This! Share this on Facebook Post on Google Buzz Share this on del.icio.us Email this via Gmail Add this to Google [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m getting a few hits from someone with this user agent: JACK-O`-LANTERN/1.1</p>
<p>I&#8217;ve googled it and came and found nothing&#8230; Does anyone know who&#8217;s using this?</p>
<p>[tags]JACK-O`-LANTERN, User Agent, Browser, Search Engine, Crawlers[/tags]</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Jack%3F+-+http://tinyurl.com/yaywowy+%28via+%40odrakir%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.odrakir.com/blog/2006/12/13/jack/&amp;t=Jack%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.odrakir.com/blog/2006/12/13/jack/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.odrakir.com/blog/2006/12/13/jack/&amp;title=Jack%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Jack%3F&amp;body=Link: http://www.odrakir.com/blog/2006/12/13/jack/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%27m%20getting%20a%20few%20hits%20from%20someone%20with%20this%20user%20agent%3A%20JACK-O%60-LANTERN%2F1.1%0D%0A%0D%0AI%27ve%20googled%20it%20and%20came%20and%20found%20nothing...%20Does%20anyone%20know%20who%27s%20using%20this%3F%0D%0A%0D%0A%5Btags%5DJACK-O%60-LANTERN%2C%20User%20Agent%2C%20Browser%2C%20Search%20Engine%2C%20Crawlers%5B%2Ftags%5D" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.odrakir.com/blog/2006/12/13/jack/&amp;title=Jack%3F" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.odrakir.com/blog/2006/12/13/jack/&amp;title=Jack%3F&amp;srcUrl=http://www.odrakir.com/blog/2006/12/13/jack/&amp;srcTitle=Jack%3F&amp;snippet=I%27m%20getting%20a%20few%20hits%20from%20someone%20with%20this%20user%20agent%3A%20JACK-O%60-LANTERN%2F1.1%0D%0A%0D%0AI%27ve%20googled%20it%20and%20came%20and%20found%20nothing...%20Does%20anyone%20know%20who%27s%20using%20this%3F%0D%0A%0D%0A%5Btags%5DJACK-O%60-LANTERN%2C%20User%20Agent%2C%20Browser%2C%20Search%20Engine%2C%20Crawlers%5B%2Ftags%5D" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.odrakir.com/blog/2006/12/13/jack/&amp;title=Jack%3F" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Jack%3F&amp;link=http://www.odrakir.com/blog/2006/12/13/jack/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.odrakir.com/blog/2006/12/13/jack/&amp;title=Jack%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.odrakir.com/blog/2006/12/13/jack/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.odrakir.com/blog/2006/12/13/jack/&amp;title=Jack%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.odrakir.com/blog/2006/12/13/jack/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.odrakir.com/blog/2006/12/13/jack/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Your Own Personal Mail Server</title>
		<link>http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/</link>
		<comments>http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/#comments</comments>
		<pubDate>Sat, 26 Aug 2006 23:59:07 +0000</pubDate>
		<dc:creator>Odrakir</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.odrakir.com/blog/?p=402</guid>
		<description><![CDATA[Are you sick of having all your mail spread arround on your computers? When you have more than one pc, or even if you check your email at work and then at home, it&#8217;s a nightmare to keep track of so many emails. And if you&#8217;re like me, I have multiple mail accounts, meaning more [...]]]></description>
			<content:encoded><![CDATA[<p>Are you sick of having all your mail spread arround on your computers? When you have more than one pc, or even if you check your email at work and then at home, it&#8217;s a nightmare to keep track of so many emails. And if you&#8217;re like me, I have multiple mail accounts, meaning more mail from diferent sources, well the solution isn&#8217;t spending all your day sending mail back and forward from one account to another. The solution is actually preety simple: <a href="http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol">IMAP</a>!</p>
<p>This how to covers <a href="http://www.ubuntu.com/server">Ubuntu 6.06 Server</a> (yes the server version of Ubuntu duh!) but it&#8217;s preety simple to adapt to other distros. Let&#8217;s start!</p>
<p><strong>Be warned that you may loose some email messages in the process so test this first with a dummy account!</strong></p>
<p>Assuming you have Ubuntu installed and updated, open a shell and type:<br />
<code><br />
mkdir Maildir</code> (create this on your home folder)</p>
<p><code>sudo apt-get install dovecot</code></p>
<p>Let it install all the packages need for dependecies.</p>
<p><a href="http://www.dovecot.org/">Dovecot</a> is an open source IMAP and POP3 server, is very simple to install / configure and suports the <a href="http://en.wikipedia.org/wiki/Maildir">Maildir</a> format which is a standard and the one we&#8217;re going to use. Dovecot is very complete and has <a href="http://wiki.dovecot.org/MainConfig">several options</a>, most of them related to security, I&#8217;m not covering those so feel free to <a href="http://wiki.dovecot.org/">explore</a>.</p>
<p>So, back to the shell and enter:</p>
<p><code>sudo nano /etc/dovecot/dovecot.conf</code></p>
<p>Now change the following:</p>
<p><code># Protocols we want to be serving:<br />
#  imap imaps pop3 pop3s<br />
#protocols = imap imaps<br />
#protocols = imap imaps</code></p>
<p>to</p>
<p><code># Protocols we want to be serving:<br />
#  imap imaps pop3 pop3s<br />
#protocols = imap imaps<br />
protocols = imap imaps</code></p>
<p>Save the file and run dovecot:</p>
<p><code>sudo /usr/sbin/dovecot</code></p>
<p>And now test your IMAP Server:</p>
<p><code>mutt -f imap://yourusername@localhost</code></p>
<p>You should get a little nagging about the certificates but after that you enter your password and you should be able to see your empty IMAP folder.</p>
<p>Now the next part is to get the email from the other accounts and for this we&#8217;re using a little app named <a href="http://pyropus.ca/software/getmail/">Getmail</a>. Getmail can check your POP and IMAP accounts, I&#8217;ll cover only the POP accounts but there&#8217;s some examples you can check. Getmail also features some very usefull mail sorting options you can check later.</p>
<p>So, if you&#8217;re using Ubuntu 6.06 &#8220;normal&#8221; then you should be able to download Getmail via apt-get:</p>
<p><code>sudo apt-get install getmail</code></p>
<p>If you&#8217;re using the Ubuntu server version you won&#8217;t get this package via apt-get unless you add the right repository or download the package and install it manually:</p>
<p><code></p>
<p>wget http://archive.ubuntu.com/ubuntu/pool/universe/g/getmail4/getmail4_4.4.3-1_all.deb</code></p>
<p><code>dpkg -i getmail4_4.4.3-1_all.deb</code></p>
<p>Now comes the lame part <img src='http://www.odrakir.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>You&#8217;ll have to write a little configuration file for each of the POP / IMAP accounts you want to check. I&#8217;m going to give you an example for a regular POP account and for a GMAIL account.</p>
<p>Again, back to the shell and type:</p>
<p><code>cd<br />
cd .getmail<br />
touch gmailrc<br />
sudo nano gmailrc</code></p>
<p>The configuration file for a GMAIL account:</p>
<p><code>[retriever]<br />
type = SimplePOP3SSLRetriever<br />
server = pop.gmail.com<br />
port = 995<br />
username = yourusername@gmail.com<br />
password = yourpassword</p>
<p>[destination]<br />
type = Maildir<br />
path = ~yourhomedirectory/Maildir/</p>
<p>[options]<br />
delete = true</code></p>
<p>Save it and repeat the process for a regular POP account:</p>
<p><code>touch ispmailrc<br />
sudo nano ispmailrc</p>
<p>[retriever]<br />
type = SimplePOP3Retriever<br />
server = pop3.myisp.com<br />
username = yourusername@myisp.com<br />
password = yourpassword</p>
<p>[destination]<br />
type = Maildir<br />
path = ~yourhomedirectory/Maildir/</p>
<p>[options]<br />
delete = true</code></p>
<p>Save and test it:</p>
<p><code>sudo /usr/bin/getmail --rcfile=gmailrc</code></p>
<p>If all goes well you&#8217;ll get a few messages like this:</p>
<p><code>getmail version 4.4.3<br />
Copyright (C) 1998-2005 Charles Cazabon.  Licensed under the GNU GPL version 2.<br />
SimplePOP3SSLRetriever:username@gmail.com@pop.gmail.com:995:<br />
  0 messages retrieved, 0 skipped</code></p>
<p>This means Getmail is working, now send yourself some messages to your accounts to test it and run getmail again to check if it delivers to your IMAP folders. You can check it using Mutt like we did earlier.</p>
<p>By now everything should be working perfectly, we just have to automate the email <a href="http://www.easyonlinepaydayloan.com">checking</a>. Let&#8217;s use crontab. Go to the shell and enter:</p>
<p><code>crontab -e</code></p>
<p>Now copy this line and save the file:</p>
<p><code>* * * * * /usr/bin/getmail --rcfile=gmailrc --rcfile=ispmailrc >> /dev/null 2>&#038;1</code></p>
<p><strong>(this has to be all in one line, don&#8217;t break it or it won&#8217;t work correctly!)</strong></p>
<p>And we&#8217;re done! Now use an IMAP compatible client like Mozilla Thunderbir or Evolution and you&#8217;ll never have to worry with email again.</p>
<p>[tags]IMAP, POP, E-Mail, Email, GMail, Personal Mail Server, Linux, Ubuntu, Ubuntu Server, Getmail, Dovecot[/tags]</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Your+Own+Personal+Mail+Server+-+http://tinyurl.com/ydjfrn3+%28via+%40odrakir%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/&amp;t=Your+Own+Personal+Mail+Server" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/&amp;title=Your+Own+Personal+Mail+Server" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Your+Own+Personal+Mail+Server&amp;body=Link: http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Are%20you%20sick%20of%20having%20all%20your%20mail%20spread%20arround%20on%20your%20computers%3F%20When%20you%20have%20more%20than%20one%20pc%2C%20or%20even%20if%20you%20check%20your%20email%20at%20work%20and%20then%20at%20home%2C%20it%27s%20a%20nightmare%20to%20keep%20track%20of%20so%20many%20emails.%20And%20if%20you%27re%20like%20me%2C%20I%20have%20multiple%20mail%20accounts%2C%20meaning%20more%20mail%20from%20diferent%20sou" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/&amp;title=Your+Own+Personal+Mail+Server" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/&amp;title=Your+Own+Personal+Mail+Server&amp;srcUrl=http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/&amp;srcTitle=Your+Own+Personal+Mail+Server&amp;snippet=Are%20you%20sick%20of%20having%20all%20your%20mail%20spread%20arround%20on%20your%20computers%3F%20When%20you%20have%20more%20than%20one%20pc%2C%20or%20even%20if%20you%20check%20your%20email%20at%20work%20and%20then%20at%20home%2C%20it%27s%20a%20nightmare%20to%20keep%20track%20of%20so%20many%20emails.%20And%20if%20you%27re%20like%20me%2C%20I%20have%20multiple%20mail%20accounts%2C%20meaning%20more%20mail%20from%20diferent%20sou" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/&amp;title=Your+Own+Personal+Mail+Server" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Your+Own+Personal+Mail+Server&amp;link=http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/&amp;title=Your+Own+Personal+Mail+Server" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/&amp;title=Your+Own+Personal+Mail+Server" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.odrakir.com/blog/2006/08/26/your-own-personal-mail-server/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Ubuntu 6.06 and WPA</title>
		<link>http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/</link>
		<comments>http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/#comments</comments>
		<pubDate>Mon, 03 Jul 2006 20:59:16 +0000</pubDate>
		<dc:creator>Odrakir</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.odrakir.com/blog/?p=350</guid>
		<description><![CDATA[Last week after recieving the Ubuntu cds from Canonical as usual, I installed Dapper on my Asus A2 laptop. Installation went fine, except for the same old problem with my SMC 2835 wireless pcmcia card. Once again I had to go through all that process of getting my wireless connection working, but this time I [...]]]></description>
			<content:encoded><![CDATA[<p>Last week after recieving the Ubuntu cds from Canonical as usual, I installed Dapper on my Asus A2 laptop. Installation went fine, except for the same old problem with my <a href="http://www.smc.com">SMC 2835</a> wireless pcmcia card. Once again I had to go through all that process of getting my wireless connection working, but this time I took an alternative road.</p>
<p>- First of all install <a href="http://www.ubuntuforums.org/showthread.php?t=177646">Automatix</a>, this script will install the NDISWrapper and Gnome NetworkManager packages need to simplify the process.</p>
<p>- If you do a <code>ifconfig</code> you&#8217;ll probably see your wireless card listed as eth2, this will change later to wlan0.</p>
<p>- Make sure you have the NDISWrapper installed doing <code>ndiswrapper</code> on a terminal window. If you get a &#8220;command not found&#8221; error then something went wrong with Automatix, make sure you check the wreless networking packages. If you get an error response from the NDISWrapper that&#8217;s fine, it means you have it installed.</p>
<p>- This is one of the most important steps. Ubuntu loads the Prism54 kernel module, but this conflicts with the NDISWrapper, so you&#8217;ll have to <code>sudo rmmod prism54</code> and then <code>sudo gedit /etc/modprobe.d/blacklist</code> and add the line <code>blacklist prism54</code> to the file and save.</p>
<p>- Reboot.</p>
<p>- Now, download the <a href="http://www.smc.com">SMC 2835 Windows XP drivers</a>, unpack and install with Windows Wireless Drivers (System > Administration > Windows Wireless Drivers and then Install New Driver).</p>
<p>- By now your Wireless NIC should be listed as <code>Wlan0</code> on <code>ifconfig</code>.</p>
<p>- You should have the Gnome NetworkManager applet on the Gnome panel near the clock, click it and choose &#8220;Connect to Other Wireless Network&#8221; and you&#8217;ll see WEP and WPA options. Just enter your Wireless Network SSID and password and you&#8217;re done.</p>
<p>You can probably adapt this mini tutorial to another wireless nic so let me know if this works with you.</p>
<p>[tags]Linux, Ubuntu, Dapper, Wireless, SMC, SMC 2835, NDISWrapper, Automatix, Gnome[/tags]</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Ubuntu+6.06+and+WPA+-+http://tinyurl.com/ycm8bpm+%28via+%40odrakir%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/&amp;t=Ubuntu+6.06+and+WPA" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/&amp;title=Ubuntu+6.06+and+WPA" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Ubuntu+6.06+and+WPA&amp;body=Link: http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Last%20week%20after%20recieving%20the%20Ubuntu%20cds%20from%20Canonical%20as%20usual%2C%20I%20installed%20Dapper%20on%20my%20Asus%20A2%20laptop.%20Installation%20went%20fine%2C%20except%20for%20the%20same%20old%20problem%20with%20my%20SMC%202835%20wireless%20pcmcia%20card.%20Once%20again%20I%20had%20to%20go%20through%20all%20that%20process%20of%20getting%20my%20wireless%20connection%20working%2C%20but%20thi" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/&amp;title=Ubuntu+6.06+and+WPA" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/&amp;title=Ubuntu+6.06+and+WPA&amp;srcUrl=http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/&amp;srcTitle=Ubuntu+6.06+and+WPA&amp;snippet=Last%20week%20after%20recieving%20the%20Ubuntu%20cds%20from%20Canonical%20as%20usual%2C%20I%20installed%20Dapper%20on%20my%20Asus%20A2%20laptop.%20Installation%20went%20fine%2C%20except%20for%20the%20same%20old%20problem%20with%20my%20SMC%202835%20wireless%20pcmcia%20card.%20Once%20again%20I%20had%20to%20go%20through%20all%20that%20process%20of%20getting%20my%20wireless%20connection%20working%2C%20but%20thi" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/&amp;title=Ubuntu+6.06+and+WPA" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Ubuntu+6.06+and+WPA&amp;link=http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/&amp;title=Ubuntu+6.06+and+WPA" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/&amp;title=Ubuntu+6.06+and+WPA" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.odrakir.com/blog/2006/07/03/ubuntu-606-and-wpa/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>DNS and the B(L)IND</title>
		<link>http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/</link>
		<comments>http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/#comments</comments>
		<pubDate>Fri, 16 Jun 2006 22:26:49 +0000</pubDate>
		<dc:creator>Odrakir</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.odrakir.com/blog/?p=329</guid>
		<description><![CDATA[I recently changed my domain to this server. Everything went well except for the pain on the behind that was the DNS. After wating more than 72 hours for the TLDs to update (with no sucess), I had to change the DNS server where my domain was registred (again). Another problem I came across was [...]]]></description>
			<content:encoded><![CDATA[<p>I recently changed my domain to this server. Everything went well except for the pain on the behind that was the DNS. After wating more than 72 hours for the TLDs to update (with no sucess), I had to change the DNS server where my domain was registred (again). Another problem I came across was with my ISP&#8217;s secondary DNS server. It had a different records than the primary name server, so once in a while I got no access to my mail accounts. Once I flushed the DNS cache everthing went fine, but minutes later I got the wrong ip adress AGAIN.</p>
<p>Now everything seems to be working fine, but I decided to catch up on some reading to refresh my knowledge on DNS. I found a very nice link collection on <a href="http://www.linuxjournal.com/">Linux Journal</a>, check it out. </p>
<dl>
<dt>The Open Source version of DNS</dt>
<dt><a href="http://www.opennic.unrated.net/">OpenNIC: Democratic Name System DNS</a></dt>
</dl>
<dl>
<dt>Tutorials, Tips and Tricks, HowTo and other Articles</dt>
<dt><a href="http://www.stamey.nu/DNS/Default.asp">DNS Concepts</a></dt>
<dt><a href="http://www.yolinux.com/HOWTO/DNS-HOWTO.html">DNS HOWTO</a></dt>
<dt><a href="http://www.dns.net/dnsrd/trick.html">DNS tricks and tips</a></dt>
<dt><a href="http://www.zytrax.com/books/dns/">DNS for Rocket Scientists</a></dt>
<dt><a href="http://www.aunic.net/dns.html">Internet Domain Name Structure</a></dt>
<dt><a href="http://www.scit.wlv.ac.uk/%7Ejphb/comms/dns.html">Domain Name System</a></dt>
<dt><a href="http://www.menandmice.com/9000/9000_the_dns_place.html">Men &amp; Mice &#8211; DNS Resources</a></dt>
<dt><a href="http://www.linux.com/howtos/Domain-6.shtml">Setting Up Your New Domain Mini-HOWTO</a></dt>
<dt><a href="http://www.rfc-ignorant.org/how_to_domain.php">How to Use Domain-Based Blacklist Zones</a></dt>
</dl>
<dl>
<dt>Bind and Dnsmasq</dt>
<dt><a href="http://freshmeat.net/projects/dnsmasq/">freshmeat.net: Project details for Dnsmasq</a></dt>
<dt><a href="http://rimuhosting.com/support/bindviawebmin.jsp">Configuring BIND with Webmin &#8211; RimuHosting</a></dt>
<dt><a href="http://www.isc.org/sw/bind/arm93/Bv9ARM.html">BIND 9 Administrator Reference Manual</a></dt>
<dt><a href="http://www.redhat.com/docs/manuals/linux/RHL-8.0-Manual/ref-guide/ch-bind.html">Berkeley Internet Name Domain (BIND)</a></dt>
</dl>
<dl>
<dt>Free DNS hosting</dt>
<dt><a href="http://www.granitecanyon.com/">The Public DNS Service</a></dt>
<dt><a href="http://www.freesitex.com/domain.html">List of free DNS hosting sites</a></dt>
<dt><a href="http://www.free-webhosts.com/free-dns-hosting.php">Another list of free DNS hosting sites</a></dt>
</dl>
<dl>
<dt></dt>
<dt>Setting up Dynamic DNS at Home</dt>
<dt><a href="http://www.aboutdebian.com/dns.htm">How To Set Static and Dynamic DNS for Your ISP</a></dt>
<dt><a href="http://www.thefreecountry.com/webmaster/freedns.shtml">Free Dynamic and Static DNS</a></dt>
<dt><a href="http://www.dyndns.org/">Dynamic Network Services</a></dt>
</dl>
<dl>
<dt>Online Tools for the Beginner to play with</dt>
<dt><a href="http://www.dnsstuff.com/">DNS, Network and other tools.</a></dt>
<dt><a href="http://www.expireworks.com/">Expired Domain Name Search</a></dt>
<dt><a href="http://network-tools.com/">E-Mail relay, DNS, Network and other tools</a></dt>
</dl>
<p>[tags]DNS, BIND, Dnsmasq, Zones, Domains, Networking[/tags]</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=DNS+and+the+B%28L%29IND+-+http://tinyurl.com/yhqgkrq+%28via+%40odrakir%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/&amp;t=DNS+and+the+B%28L%29IND" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/&amp;title=DNS+and+the+B%28L%29IND" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=DNS+and+the+B%28L%29IND&amp;body=Link: http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20recently%20changed%20my%20domain%20to%20this%20server.%20Everything%20went%20well%20except%20for%20the%20pain%20on%20the%20behind%20that%20was%20the%20DNS.%20After%20wating%20more%20than%2072%20hours%20for%20the%20TLDs%20to%20update%20%28with%20no%20sucess%29%2C%20I%20had%20to%20change%20the%20DNS%20server%20where%20my%20domain%20was%20registred%20%28again%29.%20Another%20problem%20I%20came%20across%20was%20with%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/&amp;title=DNS+and+the+B%28L%29IND" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/&amp;title=DNS+and+the+B%28L%29IND&amp;srcUrl=http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/&amp;srcTitle=DNS+and+the+B%28L%29IND&amp;snippet=I%20recently%20changed%20my%20domain%20to%20this%20server.%20Everything%20went%20well%20except%20for%20the%20pain%20on%20the%20behind%20that%20was%20the%20DNS.%20After%20wating%20more%20than%2072%20hours%20for%20the%20TLDs%20to%20update%20%28with%20no%20sucess%29%2C%20I%20had%20to%20change%20the%20DNS%20server%20where%20my%20domain%20was%20registred%20%28again%29.%20Another%20problem%20I%20came%20across%20was%20with%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/&amp;title=DNS+and+the+B%28L%29IND" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=DNS+and+the+B%28L%29IND&amp;link=http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/&amp;title=DNS+and+the+B%28L%29IND" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/&amp;title=DNS+and+the+B%28L%29IND" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.odrakir.com/blog/2006/06/16/dns-and-the-blind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nyxem.E</title>
		<link>http://www.odrakir.com/blog/2006/01/23/nyxeme/</link>
		<comments>http://www.odrakir.com/blog/2006/01/23/nyxeme/#comments</comments>
		<pubDate>Mon, 23 Jan 2006 13:40:21 +0000</pubDate>
		<dc:creator>Odrakir</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.odrakir.com/blog/?p=250</guid>
		<description><![CDATA[Following the news over the F-Secure site, I&#8217;ve noticed that the Nyxem.E worm has been ranked as a Level 2 Alert (meaning that is only one level below the highest alert level). This guy is spreading like mad all over the world from the USA to Australia. The web counter used by the Nyxem worm [...]]]></description>
			<content:encoded><![CDATA[<p>Following the news over the F-Secure site, I&#8217;ve noticed that the Nyxem.E worm has been ranked as a Level 2 Alert (meaning that is only one level below the highest alert level). This guy is spreading like mad all over the world from the USA to Australia. The web counter used by the Nyxem worm now shows over 510,000 infections and keeps rising.</p>
<p>The &#8216;Nyxem.e&#8217; is a mass-mailing worm that also tries to spread using remote shares. It also tries to disable security-related and file sharing software as well as destroys files of certain types. It is similar to the &#8216;Email-Worm.Win32.VB.bi&#8217; that was found a few days ago.</p>
<p>The worm&#8217;s destructive payload is activated on every third day of the month and replaces the content of user&#8217;s files with a text string &#8220;DATA Error [47 0F 94 93 F4 K5]&#8220;. Among these files are: DOC, XLS, MDB, MDE, PPT, PPS, ZIP, RAR, PDF, PSD and DMP.</p>
<p>You can get more info on Nyxem.E <a href="http://www.f-secure.com/v-descs/nyxem_e.shtml">here</a>.</p>
<p>[tags]Nyxem.E, virus, trojan, worm, DATA Error [47 0F 94 93 F4 K5][/tags]</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Nyxem.E+-+http://tinyurl.com/ye76htr+%28via+%40odrakir%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.odrakir.com/blog/2006/01/23/nyxeme/&amp;t=Nyxem.E" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.odrakir.com/blog/2006/01/23/nyxeme/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.odrakir.com/blog/2006/01/23/nyxeme/&amp;title=Nyxem.E" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Nyxem.E&amp;body=Link: http://www.odrakir.com/blog/2006/01/23/nyxeme/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Following%20the%20news%20over%20the%20F-Secure%20site%2C%20I%27ve%20noticed%20that%20the%20Nyxem.E%20worm%20has%20been%20ranked%20as%20a%20Level%202%20Alert%20%28meaning%20that%20is%20only%20one%20level%20below%20the%20highest%20alert%20level%29.%20This%20guy%20is%20spreading%20like%20mad%20all%20over%20the%20world%20from%20the%20USA%20to%20Australia.%20The%20web%20counter%20used%20by%20the%20Nyxem%20worm%20now%20sho" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.odrakir.com/blog/2006/01/23/nyxeme/&amp;title=Nyxem.E" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.odrakir.com/blog/2006/01/23/nyxeme/&amp;title=Nyxem.E&amp;srcUrl=http://www.odrakir.com/blog/2006/01/23/nyxeme/&amp;srcTitle=Nyxem.E&amp;snippet=Following%20the%20news%20over%20the%20F-Secure%20site%2C%20I%27ve%20noticed%20that%20the%20Nyxem.E%20worm%20has%20been%20ranked%20as%20a%20Level%202%20Alert%20%28meaning%20that%20is%20only%20one%20level%20below%20the%20highest%20alert%20level%29.%20This%20guy%20is%20spreading%20like%20mad%20all%20over%20the%20world%20from%20the%20USA%20to%20Australia.%20The%20web%20counter%20used%20by%20the%20Nyxem%20worm%20now%20sho" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.odrakir.com/blog/2006/01/23/nyxeme/&amp;title=Nyxem.E" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Nyxem.E&amp;link=http://www.odrakir.com/blog/2006/01/23/nyxeme/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.odrakir.com/blog/2006/01/23/nyxeme/&amp;title=Nyxem.E" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.odrakir.com/blog/2006/01/23/nyxeme/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.odrakir.com/blog/2006/01/23/nyxeme/&amp;title=Nyxem.E" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.odrakir.com/blog/2006/01/23/nyxeme/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.odrakir.com/blog/2006/01/23/nyxeme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dump</title>
		<link>http://www.odrakir.com/blog/2006/01/05/dump/</link>
		<comments>http://www.odrakir.com/blog/2006/01/05/dump/#comments</comments>
		<pubDate>Thu, 05 Jan 2006 14:10:45 +0000</pubDate>
		<dc:creator>Odrakir</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Computer Stuff]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.odrakir.com/blog/?p=223</guid>
		<description><![CDATA[Dunno wich Linux distrib is the best for you? Check the Linux Distribution Chooser. Speaking about Linux, In my daily basis I&#8217;ve been blessed to work with Window$ at full time. Sometimes I have to retrieve and edit information from several text files and logs in order to troubleshoot problems that occurr. Not having a [...]]]></description>
			<content:encoded><![CDATA[<p>Dunno wich Linux distrib is the best for you? Check the <a href="http://www.zegeniestudios.net/ldc/index.php">Linux Distribution Chooser</a>.</p>
<p>Speaking about Linux, In my daily basis I&#8217;ve been blessed <not> to work with Window$ at full time. Sometimes I have to retrieve and edit information from several text files and logs in order to troubleshoot problems that occurr. Not having a single Linux box in our network (except the proxy), I was in need to find utilities like tail, grep and other gnu/linux utils that worked in win32. I could install Cygwin, but I rather have something native instead of an emulated environment, so I installed <a href="http://unxutils.sourceforge.net/">UnxUtils</a> &#8211; native Win32 ports of the GNU utilities I was looking for. It works like a charm!</p>
<p>Other app that I call essential is <a href="http://www.ultraedit.com/">UltraEdit 32</a>. Although it&#8217;s paid software, UltraEdit has <a href="http://www.ultraedit.com/index.php?name=Content&#038;pa=showpage&#038;pid=10">great</a> <a href="http://www.ultraedit.com/index.php?name=UE_AdvFeatures">feautures</a>.</p>
<p>Skipping to another topic: Reading.</p>
<p>I would like to share with you two excelent pieces of tech literature. One is a <a href="http://voipspeak.net/index.php?/content/view/33/2/">free book</a> on <a href="http://www.asterisk.org/">Asterisk</a> provided by <a href="http://www.oreilly.com/">OReilly</a> , the other is a <a href="http://www.jinx.com/forum/topic.asp?TOPIC_ID=40526">tutorial</a> on Subnets.</p>
<p>[tags]Linux, Windows, GNU, grep, tail, Cygnwin, UltraEdit32, Asterisk, Subnet[/tags]</not></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Dump+-+http://tinyurl.com/ya4n6dc+%28via+%40odrakir%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.odrakir.com/blog/2006/01/05/dump/&amp;t=Dump" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.odrakir.com/blog/2006/01/05/dump/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.odrakir.com/blog/2006/01/05/dump/&amp;title=Dump" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Dump&amp;body=Link: http://www.odrakir.com/blog/2006/01/05/dump/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Dunno%20wich%20Linux%20distrib%20is%20the%20best%20for%20you%3F%20Check%20the%20Linux%20Distribution%20Chooser.%0D%0A%0D%0ASpeaking%20about%20Linux%2C%20In%20my%20daily%20basis%20I%27ve%20been%20blessed%20%20to%20work%20with%20Window%24%20at%20full%20time.%20Sometimes%20I%20have%20to%20retrieve%20and%20edit%20information%20from%20several%20text%20files%20and%20logs%20in%20order%20to%20troubleshoot%20problems%20th" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.odrakir.com/blog/2006/01/05/dump/&amp;title=Dump" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://www.odrakir.com/blog/2006/01/05/dump/&amp;title=Dump&amp;srcUrl=http://www.odrakir.com/blog/2006/01/05/dump/&amp;srcTitle=Dump&amp;snippet=Dunno%20wich%20Linux%20distrib%20is%20the%20best%20for%20you%3F%20Check%20the%20Linux%20Distribution%20Chooser.%0D%0A%0D%0ASpeaking%20about%20Linux%2C%20In%20my%20daily%20basis%20I%27ve%20been%20blessed%20%20to%20work%20with%20Window%24%20at%20full%20time.%20Sometimes%20I%20have%20to%20retrieve%20and%20edit%20information%20from%20several%20text%20files%20and%20logs%20in%20order%20to%20troubleshoot%20problems%20th" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.odrakir.com/blog/2006/01/05/dump/&amp;title=Dump" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Dump&amp;link=http://www.odrakir.com/blog/2006/01/05/dump/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.odrakir.com/blog/2006/01/05/dump/&amp;title=Dump" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.odrakir.com/blog/2006/01/05/dump/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.odrakir.com/blog/2006/01/05/dump/&amp;title=Dump" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.odrakir.com/blog/2006/01/05/dump/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.odrakir.com/blog/2006/01/05/dump/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
