<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Linux Certification LPIC - 117-102-114</title>
    <link>http://www.lpi-certification.de/</link>
    <description>Schulung zur LPI-Prüfung des Linux Professional Institutes</description>
    <dc:language>de</dc:language>
    <generator>Serendipity 1.5.1 - http://www.s9y.org/</generator>
    
    

<item>
    <title>Firewall konfigurieren</title>
    <link>http://www.lpi-certification.de/archives/99-Firewall-konfigurieren.html</link>
            <category>117-102-114</category>
    
    <comments>http://www.lpi-certification.de/archives/99-Firewall-konfigurieren.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=99</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.lpi-certification.de/rss.php?version=2.0&amp;type=comments&amp;cid=99</wfw:commentRss>
    

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    Das Kernstück zu Handhabung der Firewall ab Linux Kernel 2.4 ist &quot;&lt;strong&gt;iptables&lt;/strong&gt;&quot;. Hiermit kann ein regelbasierter Paket-Filter aufgebaut werden.&lt;br /&gt;
&lt;br /&gt;
Mit der Option &quot;&lt;strong&gt;-L&lt;/strong&gt;&quot; kann man sich alle Regeln anzeigen lassen.&lt;br /&gt;
&lt;br /&gt;
Die Option &quot;-t&quot; ist nützlich, um sich nur einen bestimmten Typ von Regeln ausgeben zu lassen, z.B. alle Regeln zum Masquerading (auch als NAT bekannt) mit &quot;&lt;strong&gt;-t NAT&lt;/strong&gt;&quot;.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 28 May 2007 11:10:38 +0200</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/99-guid.html</guid>
    
</item>
<item>
    <title>Secure Shell OpenSSH einrichten</title>
    <link>http://www.lpi-certification.de/archives/98-Secure-Shell-OpenSSH-einrichten.html</link>
            <category>117-102-114</category>
    
    <comments>http://www.lpi-certification.de/archives/98-Secure-Shell-OpenSSH-einrichten.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=98</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.lpi-certification.de/rss.php?version=2.0&amp;type=comments&amp;cid=98</wfw:commentRss>
    

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    Das Programm &quot;&lt;strong&gt;ssh-keygen&lt;/strong&gt;&quot; kann RSA- und TSA-Schlüsselpaare für SSH2 erzeugen. Damit kann man ein &lt;a href=&quot;http://wiki.linux-club.de/opensuse/Einrichten_von_public_keys_mit_ssh#Publickey-Authentifizierung&quot; &gt;einloggen ohne Passwort&lt;/a&gt; erreichen. 
    </content:encoded>

    <pubDate>Mon, 28 May 2007 10:52:43 +0200</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/98-guid.html</guid>
    
</item>
<item>
    <title>Zugriff auf Dienste verweigern</title>
    <link>http://www.lpi-certification.de/archives/97-Zugriff-auf-Dienste-verweigern.html</link>
            <category>117-102-114</category>
    
    <comments>http://www.lpi-certification.de/archives/97-Zugriff-auf-Dienste-verweigern.html#comments</comments>
    <wfw:comment>http://www.lpi-certification.de/wfwcomment.php?cid=97</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.lpi-certification.de/rss.php?version=2.0&amp;type=comments&amp;cid=97</wfw:commentRss>
    

    <author>nospam@example.com (LPIC)</author>
    <content:encoded>
    Die Konfigurationsdateien des TCP-Wrappers wie &quot;&lt;strong&gt;tcpd&lt;/strong&gt;&quot; sind &quot;/etc/hosts.allow&quot; und &quot;/etc/hosts.deny&quot; können mit &quot;&lt;strong&gt;tcpdchk&lt;/strong&gt;&quot; überprüft werden.&lt;br /&gt;
&lt;br /&gt;
In der Datei &quot;/etc/&lt;strong&gt;hosts.deny&lt;/strong&gt;&quot; kann eingetragen werden, welche Netze oder Hosts keine Verbindungen zur Maschine aufbauen dürfen sollen. Beispiel: &lt;blockquote&gt;in.ftpd : .boehseonkelz.de : twist /bin/echo &quot;421 Du kommst hier nicht rein.&quot; &lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
In die Datei &quot;&lt;strong&gt;/etc/hosts.allow&lt;/strong&gt;&quot; können auch Dienste freigegeben werden wie z.B. &quot;&lt;strong&gt;in.tftpd: LOCAL&lt;/strong&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
Mit der Option &quot;&lt;strong&gt;PermitRootLogin No&lt;/strong&gt;&quot; kann für den ssh-Dämon verhindert werden, dass sich ein Benutzer als &quot;root&quot; einloggen kann. Es muss dann der Umweg über ein Benutzerkonto und &quot;su&quot; genommen werden.&lt;br /&gt;
&lt;br /&gt;
Um für bestimmte Benutzer Anmeldung mit einer Shell zu verhindern ist der typische Weg als Shell &quot;/bin/false&quot; in die &quot;/etc/passwd&quot; einzutragen.&lt;br /&gt;
&lt;br /&gt;
In der Datei &quot;/etc/&lt;strong&gt;ftpusers&lt;/strong&gt;&quot; kann man Benutzer eintragen, die sich &lt;strong&gt;nicht&lt;/strong&gt; per ftp einloggen dürfen.&lt;br /&gt;
&lt;br /&gt;
Wenn eine Datei mit dem Namen &quot;/etc/&lt;strong&gt;nologin&lt;/strong&gt;&quot; existiert, darf sich &lt;strong&gt;nur &quot;root&quot;&lt;/strong&gt; am System anmelden. 
    </content:encoded>

    <pubDate>Sat, 26 May 2007 10:44:34 +0200</pubDate>
    <guid isPermaLink="false">http://www.lpi-certification.de/archives/97-guid.html</guid>
    
</item>

</channel>
</rss>