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

<channel>
	<title>Technik, Gothic und Anderes &#187; Netzwerk</title>
	<atom:link href="http://blog.oncode.info/category/systemtechnik/netzwerk/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.oncode.info</link>
	<description>Technik ist Spiel, Gothic ist ernst und Zeit hat man zuviel</description>
	<lastBuildDate>Thu, 09 Sep 2010 09:27:07 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Zertifikat erstellen und http-Anfragen auf https umleiten</title>
		<link>http://blog.oncode.info/2007/08/05/zertifikat-erstellen-und-http-anfragen-auf-https-umleiten/</link>
		<comments>http://blog.oncode.info/2007/08/05/zertifikat-erstellen-und-http-anfragen-auf-https-umleiten/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 21:42:20 +0000</pubDate>
		<dc:creator>skaldrom</dc:creator>
				<category><![CDATA[Netzwerk]]></category>
		<category><![CDATA[Webapplikationen]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://blog.oncode.info/2007/08/05/zertifikat-erstellen-und-http-anfragen-auf-https-umleiten/</guid>
		<description><![CDATA[Anleitung zum Umleiten aller Anfragen beim Apache von http automatisch auf https (secure http).]]></description>
			<content:encoded><![CDATA[<p>Um zu einem SSL- Zertifikat zu kommen, kann unter Debian folgendes Kommando verwendet werden: [cc]apache2-ssl-certificate[/cc]</p>
<p>Dieses k&#246;nnte man nun signieren lassen oder wenn man nur die Verschl&#252;sselungseigenschaften braucht einfach so belassen. Wenn Apache das Modul <a href="http://httpd.apache.org/docs/2.2/de/ssl/">mod_ssl</a> geladen hat,  kann man nun noch die Datei ans richtige Ort bewegen (Siehe <tt>SSLCertificateFile</tt> Parameter weiter unten).</p>
<p>Port 443 ist der Port auf dem der Apache auf https Verbindungen h&#246;rt. Dass er dort ein Ohr platziert muss <tt>/vserver/webv2/etc/apache2/ports.conf</tt> angepasst werden;</p>
<p>[cc lang="bash"]<br />
Listen 80<br />
Listen 443<br />
[/cc]</p>
<p>Man hat ein sch&#246;nes Zertifikat mit ganz vielen Bitlein und nun sollen die Benutzer dies auch gef&#228;lligst nutzen. Auf gut Deutsch: man zwingt alle http-Anfragen auf https (http://sicher.oncode.info soll zu https://sicher.oncode.info werden). <a href="http://www.modrewrite.de/">mod_rewrite</a> f&#252;r Apache kann das gut, sehr gut sogar und erst noch automatisch. Daf&#252;r muss Apache folgendermassen konfiguriert werden: </p>
<p>Datei <tt>/vserver/webv2/etc/apache2/sites-available/default</tt></p>
<p>[cc lang="xml"]<br />
NameVirtualHost *:443<br />
NameVirtualHost *:80</p>
<p><virtualhost *:80><br />
        RewriteEngine On<br />
        RewriteCond %{HTTPS} !=on<br />
        RewriteRule ^/(.*) https://%{SERVER_NAME}%{REQUEST_URI} [R]<br />
</virtualhost></p>
<p><virtualhost *:443><br />
        ServerName sicher.oncode.info<br />
        ServerAdmin apache.admin@onc0de.info<br />
        SSLEngine On<br />
        SSLCertificateFile /etc/apache2/ssl/apache.pem<br />
[...]<br />
</virtualhost>[/cc]</p>
<p>Ein nettes Tutorial gibt es auch auf <a href="http://www.tim-bormann.de/?section=145#mod_1290">Tim Bormans Blog</a>.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Teile und geniesse:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F" title="Technorati"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F&amp;title=Zertifikat%20erstellen%20und%20http-Anfragen%20auf%20https%20umleiten&amp;notes=Anleitung%20zum%20Umleiten%20aller%20Anfragen%20beim%20Apache%20von%20http%20automatisch%20auf%20https%20%28secure%20http%29." title="del.icio.us"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F&amp;bm_description=Zertifikat%20erstellen%20und%20http-Anfragen%20auf%20https%20umleiten&amp;plugin=soc" title="MisterWong"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F&amp;title=Zertifikat%20erstellen%20und%20http-Anfragen%20auf%20https%20umleiten&amp;bodytext=Anleitung%20zum%20Umleiten%20aller%20Anfragen%20beim%20Apache%20von%20http%20automatisch%20auf%20https%20%28secure%20http%29." title="Digg"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F&amp;title=Zertifikat%20erstellen%20und%20http-Anfragen%20auf%20https%20umleiten" title="StumbleUpon"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F&amp;t=Zertifikat%20erstellen%20und%20http-Anfragen%20auf%20https%20umleiten" title="Facebook"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F&amp;title=Zertifikat%20erstellen%20und%20http-Anfragen%20auf%20https%20umleiten&amp;annotation=Anleitung%20zum%20Umleiten%20aller%20Anfragen%20beim%20Apache%20von%20http%20automatisch%20auf%20https%20%28secure%20http%29." title="Google Bookmarks"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.netvibes.com/share?title=Zertifikat%20erstellen%20und%20http-Anfragen%20auf%20https%20umleiten&amp;url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F" title="Netvibes"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F&amp;title=Zertifikat%20erstellen%20und%20http-Anfragen%20auf%20https%20umleiten" title="Reddit"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Zertifikat%20erstellen%20und%20http-Anfragen%20auf%20https%20umleiten%20-%20http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F" title="Twitter"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F&amp;partner=sociable" title="Print"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Zertifikat%20erstellen%20und%20http-Anfragen%20auf%20https%20umleiten&amp;body=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F" title="email"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://linkarena.com/bookmarks/addlink/?url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fzertifikat-erstellen-und-http-anfragen-auf-https-umleiten%2F&amp;title=Zertifikat%20erstellen%20und%20http-Anfragen%20auf%20https%20umleiten" title="LinkArena"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/linkarena.png" title="LinkArena" alt="LinkArena" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.oncode.info/2007/08/05/zertifikat-erstellen-und-http-anfragen-auf-https-umleiten/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PEAP &#8211; 802.1X unter Linux</title>
		<link>http://blog.oncode.info/2007/08/05/peap-8021x-unter-linux/</link>
		<comments>http://blog.oncode.info/2007/08/05/peap-8021x-unter-linux/#comments</comments>
		<pubDate>Sun, 05 Aug 2007 21:13:11 +0000</pubDate>
		<dc:creator>skaldrom</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Netzwerk]]></category>
		<category><![CDATA[802.1X]]></category>
		<category><![CDATA[PEAP]]></category>

		<guid isPermaLink="false">http://blog.oncode.info/2007/08/05/peap-8021x-unter-linux/</guid>
		<description><![CDATA[802.1X ist ein Standard zur Authentifizierung von Netzteilnehmern, urspr&#252;nglich f&#252;r Mobilnetze entwickelt, aber immer mehr auch bei Festnetzen im Einsatz. Auch unter Linux kann man am Netz teilnehmen...
]]></description>
			<content:encoded><![CDATA[<p><img height='90' src='http://blog.oncode.info/wp-content/uploads/2008/04/lock.png' alt='Lock' align='left' class='lead'/>802.1X ist ein <a href="http://www.cryptoshop.com/index.php">Standard zur Authentifizierung von Netzteilnehmern</a>, urspr&#252;nglich f&#252;r Mobilnetze entwickelt, aber immer mehr auch bei Festnetzen im Einsatz. </p>
<p>Ben&#246;tigt wird <a href="http://open1x.sourceforge.net/">xsupplicant</a> bzw. <a href="http://hostap.epitest.fi/wpa_supplicant/">wpa_supplicant</a> als Open Source implementierung des IEEE 802.1X Standards.</p>
<p>Die meisten Distributionen bringen xsupplicant in ihrer Packetverwaltung mit. Die Installation/Konfiguration kann sich unterscheiden.</p>
<h3>Debian</h3>
<h4>Installation</h4>
<p>Zuerst muss xsupplicant installiert werden. Als root folgende Zeile eingeben:<br />
[cc lang="bash"]apt-get install xsupplicant[/cc]<br />
Damit w&#228;re xsupplicant installiert.</p>
<h4>Konfiguration</h4>
<p>Damit xsupplicant beim Booten startet, muss die Datei <tt>/etc/default/xsupplicant</tt> editiert werden. Sie nimmt die Startparameter auf:</p>
<p>[cc lang="perl"]<br />
# /etc/default/xsupplicant</p>
<p># WARNING! Before enabling xsupplicant, make sure you have a valid<br />
# configuration file, (/etc/xsupplicant/xsupplicant.conf), and that<br />
# you have set a list of arguments below.<br />
ENABLED=1</p>
<p># At a minimum you need to set an interface with the -i argument. See<br />
# the man page xsupplicant(8) for more options and information.<br />
ARGS=&#8221;-c /etc/xsupplicant/xsupplicant.conf -i eth0&#8243;<br />
[/cc]</p>
<p><tt>eth0</tt> ist dabei das Interface, auf dem xsupplicant arbeiten soll.</p>
<p>Die eigentliche Konfigurationsdatei <tt>/etc/xsupplicant/xsupplicant.conf</tt> muss nun mit den Daten des BBB Netzes gef&#252;llt werden. Die folgende gilt f&#252;r Version 1.2.4.dfsg.1-1:</p>
<p>[cc lang="perl"]<br />
network_list = all<br />
default_netname = default<br />
logfile = syslog<br />
log_facility = daemon<br />
default_interface = eth0<br />
default<br />
{<br />
  type = wired<br />
  allow_types = all<br />
  identity = skaldrom.sarg@oncode.info</p>
<p>  eap-peap {<br />
      root_cert = NONE<br />
      random_file = /dev/urandom<br />
      session_resume = yes<br />
      proper_peap_v1_keying = yes<br />
      allow_types = all # where all = MSCHAPv2, MD5, OTP, GTC, SIM<br />
      #allow_types = eap_mschapv2</p>
<p>      eap-mschapv2 {<br />
        username = Michael.Schneider<br />
        #ntpwdhash = E653E6452753C97E46792567DFF599B6<br />
        password = &#8220;PaSsWoRT&#8221;<br />
      }<br />
  }<br />
}<br />
[/cc]</p>
<p><tt>skaldrom.sarg@oncode.info</tt> respektive <tt>PaSsWoRT</tt> m&#252;ssen nat&#252;rlich mit den eigenen, h&#246;chselbstigen Angaben ersetzt werden.</p>
<h4>Start</h4>
<p>Bei eingeschaltetem Netzwerkinterface (<tt>ifconfig eth0 up</tt>) kann nun xsupplicant gestartet werden und sollte sich authentifizieren. Die DHCP Anfrage, etc, sollte danach nach Standard funktionieren (<tt>ifup eth0</tt>).</p>
<h4>Debugging</h4>
<p>Um dem xsupplicant bei der Arbeit zuzusehen kann er im Vordergrund gestartet werden:</p>
<p>[cc lang="bash"]xsupplicant -f -dA -c /etc/xsupplicant/xsupplicant.conf -i eth0[/cc]</p>
<h3>Ubuntu Dapper</h3>
<p>Gebraucht wird <tt>wpasupplicant</tt> und nicht <tt>xsupplicant</tt>.</p>
<p>Schnell eine <tt>wpa_supplicant.conf</tt> erstellt:</p>
<p>[cc lang="bash"]<br />
ctrl_interface=/var/run/wpa_supplicant<br />
ap_scan=0<br />
network={<br />
   key_mgmt=IEEE8021X<br />
   eap=PEAP<br />
   identity=&#8221;Vorname.Nachname&#8221;<br />
   password=&#8221;passwort&#8221;<br />
   eapol_flags=0<br />
}<br />
[/cc]</p>
<p>Danach kann man wpa_supplicant gestartet werden:<br />
[cc lang="bash"]wpa_supplicant -Dwired -c ~/wpa.conf -i eth0[/cc]</p>
<h3>Weitere Probleme</h3>
<p>Es ist ein Fall bekannt, in welchem <tt>dhcp3-client</tt> (der neue Standard-DHCP-Client in Debian?) nicht mitgespielt hat und erst mit <tt>dhcp-client</tt> eine IP vergeben wurde (ganz unabh&#228;ngig von *supplicant).</p>
<p>Ebenfalls haben schon automatische Netzwerkkabeleinsteckdetektoren Probleme verursacht.</p>
<p>Ein <strong>No network configuration found for the current AP</strong> kann darauf hindeuten, dass die Netzwerkkarte nicht unterst&#252;tzt ist oder dass der Treiber kein WPA hat.</p>
<h3>Reconnect-Scripts</h3>
<p>Dieses kleine Script authentifiziert (unter Debian) und wartet bis der Vorgang abgeschlossen ist. Per Polling wird <tt>/etc/syslog</tt> gepr&#252;ft. Das Script w&#228;re ausbaubar (Abbruch bein Nichtauthentifizierung, Timeout, &#8230;), ich w&#252;rde sehr gerne &#220;berarbeitungen entgegen nehmen.</p>
<p>[cc lang="bash"]<br />
#! /bin/bash<br />
ifdown eth0<br />
/etc/init.d/xsupplicant stop<br />
ifconfig eth0 down<br />
ifconfig eth0 up<br />
/etc/init.d/xsupplicant start<br />
while ! tail /var/log/syslog | grep &#8220;Successfully authenticated eth0&#8243;<br />
do<br />
  echo -n &#8220;*&#8221;<br />
  sleep 5<br />
done<br />
echo &#8220;\n&#8221;<br />
ifup eth0<br />
[/cc]</p>
<h3>Bitte</h3>
<p>Ich w&#228;re froh f&#252;r jede Info, wenn es jemand geschafft hat &#252;ber das Zertifikat eines Windows Zertifikatsserver zu authentifizieren&#8230; Als Belohnung g&#228;bs einen virtuellen Blumenstrauss <img src='http://blog.oncode.info/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  &#8230;</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Teile und geniesse:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F" title="Technorati"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F&amp;title=PEAP%20-%20802.1X%20unter%20Linux&amp;notes=802.1X%20ist%20ein%20Standard%20zur%20Authentifizierung%20von%20Netzteilnehmern%2C%20urspr%C3%BCnglich%20f%C3%BCr%20Mobilnetze%20entwickelt%2C%20aber%20immer%20mehr%20auch%20bei%20Festnetzen%20im%20Einsatz.%20Auch%20unter%20Linux%20kann%20man%20am%20Netz%20teilnehmen...%0D%0A" title="del.icio.us"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F&amp;bm_description=PEAP%20-%20802.1X%20unter%20Linux&amp;plugin=soc" title="MisterWong"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F&amp;title=PEAP%20-%20802.1X%20unter%20Linux&amp;bodytext=802.1X%20ist%20ein%20Standard%20zur%20Authentifizierung%20von%20Netzteilnehmern%2C%20urspr%C3%BCnglich%20f%C3%BCr%20Mobilnetze%20entwickelt%2C%20aber%20immer%20mehr%20auch%20bei%20Festnetzen%20im%20Einsatz.%20Auch%20unter%20Linux%20kann%20man%20am%20Netz%20teilnehmen...%0D%0A" title="Digg"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F&amp;title=PEAP%20-%20802.1X%20unter%20Linux" title="StumbleUpon"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F&amp;t=PEAP%20-%20802.1X%20unter%20Linux" title="Facebook"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F&amp;title=PEAP%20-%20802.1X%20unter%20Linux&amp;annotation=802.1X%20ist%20ein%20Standard%20zur%20Authentifizierung%20von%20Netzteilnehmern%2C%20urspr%C3%BCnglich%20f%C3%BCr%20Mobilnetze%20entwickelt%2C%20aber%20immer%20mehr%20auch%20bei%20Festnetzen%20im%20Einsatz.%20Auch%20unter%20Linux%20kann%20man%20am%20Netz%20teilnehmen...%0D%0A" title="Google Bookmarks"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.netvibes.com/share?title=PEAP%20-%20802.1X%20unter%20Linux&amp;url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F" title="Netvibes"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/netvibes.png" title="Netvibes" alt="Netvibes" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://reddit.com/submit?url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F&amp;title=PEAP%20-%20802.1X%20unter%20Linux" title="Reddit"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=PEAP%20-%20802.1X%20unter%20Linux%20-%20http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F" title="Twitter"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F&amp;partner=sociable" title="Print"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=PEAP%20-%20802.1X%20unter%20Linux&amp;body=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F" title="email"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://linkarena.com/bookmarks/addlink/?url=http%3A%2F%2Fblog.oncode.info%2F2007%2F08%2F05%2Fpeap-8021x-unter-linux%2F&amp;title=PEAP%20-%20802.1X%20unter%20Linux" title="LinkArena"><img src="http://blog.oncode.info/wp-content/plugins/sociable/images/linkarena.png" title="LinkArena" alt="LinkArena" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.oncode.info/2007/08/05/peap-8021x-unter-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
