<?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>The RoarinPenguin Techiezone &#187; authentication</title>
	<atom:link href="http://techiezone.rottigni.net/category/authentication/feed/" rel="self" type="application/rss+xml" />
	<link>http://techiezone.rottigni.net</link>
	<description>Notes, hints, tips... in one word: experience!</description>
	<lastBuildDate>Thu, 26 Jan 2012 03:17:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Nice way to generate a password</title>
		<link>http://techiezone.rottigni.net/2011/05/nice-way-to-generate-a-password/</link>
		<comments>http://techiezone.rottigni.net/2011/05/nice-way-to-generate-a-password/#comments</comments>
		<pubDate>Sun, 15 May 2011 06:11:28 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[authentication]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Password generation]]></category>

		<guid isPermaLink="false">http://techiezone.rottigni.net/2011/05/nice-way-to-generate-a-password/</guid>
		<description><![CDATA[Nice way, grabbed from a discussion, to generate a password. You should have a Linux console available or an MD5 hashing utility. Console Linux: $ echo &#8220;nel mezzo del cammin di nostra vita&#8221; &#124; md5sum 5b14c45d2ae299904da0c4c8e251a05f]]></description>
			<content:encoded><![CDATA[<p>Nice way, grabbed from a discussion, to generate a password.<br />
You should have a Linux console available or an MD5 hashing utility.</p>
<p>Console Linux:</p>
<p>$ echo &#8220;nel mezzo del cammin di nostra vita&#8221; | md5sum<br />
5b14c45d2ae299904da0c4c8e251a05f</p>
]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2011/05/nice-way-to-generate-a-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo add Radius Authentication to Apache2</title>
		<link>http://techiezone.rottigni.net/2011/04/howto-add-radius-authentication-to-apache2/</link>
		<comments>http://techiezone.rottigni.net/2011/04/howto-add-radius-authentication-to-apache2/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 12:48:24 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[mod_radius]]></category>
		<category><![CDATA[Radius]]></category>

		<guid isPermaLink="false">http://techiezone.rottigni.net/?p=174</guid>
		<description><![CDATA[Few notes to myself, to avoid forgetting a cool thing I&#8217;ve just learned. The need is to implement radius based authentication to access a directory on Apache2 Web server. Here&#8217;s how to proceed (instructions have been tested on an Ubuntu 10.10). First, you need to install the needed module for Radius authentication on Apache2, using [...]]]></description>
			<content:encoded><![CDATA[<p>Few notes to myself, to avoid forgetting a cool thing I&#8217;ve just learned.</p>
<p>The need is to implement radius based authentication to access a directory on Apache2 Web server.</p>
<p>Here&#8217;s how to proceed (instructions have been tested on an Ubuntu 10.10).</p>
<p>First, you need to install the needed module for Radius authentication on Apache2, using the command:</p>
<p>apt-get install libapache2-mod-auth-radius</p>
<p>Then, you need to enable it with command:</p>
<p>a2enmod auth_radius</p>
<p>You need now to make your apache web server aware of where to send authentication requests for Radius. There are two ways, depending if you want to make this configuration apache-wide (therefore edit /etc/apache2/http.conf) or if you want to limit it to a specific virtual host (thus you&#8217;ll edit /etc/apache2/sites-enabled/&lt;yoursitename&gt;.conf).</p>
<p>Add the line:</p>
<p>AddRadiusAuth &lt;IP address of the Radius server&gt;:&lt;port where Radius service is listening&gt; &lt;shared secret&gt; [timeout [:retries]]</p>
<p>Assuming you want to protect a specific directory called auth-test, you can insert the following directive in your site/virtualhost configuration file (/etc/apache2/sites-enabled/&lt;yoursitename&gt;.conf):</p>
<p>&lt;Directory &#8220;/var/www/testmyauth&#8221;&gt;<br />
Options Indexes FollowSymlinks<br />
AuthType Basic<br />
AuthName &#8220;Roarin RADIUS Authentication&#8221;<br />
AuthBasicAuthoritative Off<br />
AuthBasicProvider radius<br />
AuthRadiusAuthoritative on<br />
AuthRadiusActive On<br />
Require valid-user<br />
&lt;/Directory&gt;</p>
<p>&nbsp;</p>
<p>Naturally you might add the above directives also in a .htaccess file in the directory you want to protect with Radius based authentication&#8230;</p>
<p>Finally, restart or reload you apache2 using one of the commands:</p>
<p>service apache2 reload</p>
<p>service apache2 restart</p>
<p>Enjoy <img src='http://techiezone.rottigni.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2011/04/howto-add-radius-authentication-to-apache2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freesshd on Windows 2003: authentication with Public Key</title>
		<link>http://techiezone.rottigni.net/2008/10/freesshd-on-windows-2003-authentication-with-public-key/</link>
		<comments>http://techiezone.rottigni.net/2008/10/freesshd-on-windows-2003-authentication-with-public-key/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 16:30:11 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[authentication]]></category>
		<category><![CDATA[Freesshd]]></category>
		<category><![CDATA[public key]]></category>
		<category><![CDATA[windows 2003]]></category>

		<guid isPermaLink="false">http://techiezone.rottigni.net/?p=47</guid>
		<description><![CDATA[Small howto to setup Freesshd on a Windows box and authenticate your client machine using Public Key. There is plenty of howto on the &#8216;Net explaining procedures, but almost all of them are missing the most important thing. Once you have created the file containing your Public Key you have to store it in folder [...]]]></description>
			<content:encoded><![CDATA[<p>Small howto to setup <a title="Freesshd" href="http://www.freesshd.com" target="_blank">Freesshd</a> on a Windows box and authenticate your client machine using Public Key.</p>
<p>There is <a title="Google search for it" href="http://www.google.it/search?hl=it&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=wHV&amp;q=freesshd+windows+2003+public+key&amp;btnG=Cerca&amp;meta=" target="_blank">plenty of howto</a> on the &#8216;Net explaining procedures, but almost all of them are missing the most important thing.</p>
<p>Once you have created the file containing your Public Key you have to store it in folder configured in Freesshd GUI in <em>Authentication</em> tab&#8230; calling the file with the user name you&#8217;re using to connect.</p>
<p>In my case it is root, thus instead of calling it ssh_public_hey or authorized_key you have to call it root.</p>
<p>Tested and working on Windows Vista and Windows 2003.</p>
]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2008/10/freesshd-on-windows-2003-authentication-with-public-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

