<?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>okami.de &#187; Code</title>
	<atom:link href="http://www.okami.de/category/howtos/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.okami.de</link>
	<description>Die Jagd nach dem Wolf</description>
	<lastBuildDate>Wed, 04 Jan 2012 14:16:17 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Gateway Firewall Script II (optimiert)</title>
		<link>http://www.okami.de/2008/02/01/gateway-firewall-script-ii-optimiert/</link>
		<comments>http://www.okami.de/2008/02/01/gateway-firewall-script-ii-optimiert/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 13:34:31 +0000</pubDate>
		<dc:creator>okami</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[diskless router]]></category>
		<category><![CDATA[dmz]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[sicherheit]]></category>

		<guid isPermaLink="false">http://www.okami.de/2008/02/01/gateway-firewall-script-ii-optimiert</guid>
		<description><![CDATA[Im Folgenden seht ihr ein Skript, das alle nötigen Einstellungen für eine grobe Firewall und Gateway-Funktionalität bietet. #!/bin/sh /sbin/modprobe ip_conntrack_ftp CONNECTION_TRACKING="1" ACCEPT_AUTH="0" SSH_SERVER="0" FTP_SERVER="0" WEB_SERVER="0" SSL_SERVER="0" DHCP_CLIENT="1" IPT="/sbin/iptables" # Location of iptables on your system INTERNET="eth0" # Internet-connected interface LOOPBACK_INTERFACE="lo" # however your system names it IPADDR="my.ip.address" # your IP address SUBNET_BASE="my.subnet.base" # ISP network [...]]]></description>
		<wfw:commentRss>http://www.okami.de/2008/02/01/gateway-firewall-script-ii-optimiert/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HPing &#8211; Remote DoS für Cisco IOS</title>
		<link>http://www.okami.de/2008/01/01/hping-remote-dos-fur-cisco-ios/</link>
		<comments>http://www.okami.de/2008/01/01/hping-remote-dos-fur-cisco-ios/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 18:25:46 +0000</pubDate>
		<dc:creator>okami</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[beispiel]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[hpin2]]></category>
		<category><![CDATA[hping]]></category>
		<category><![CDATA[hping2]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[sicherheit]]></category>

		<guid isPermaLink="false">http://www.okami.de/2008/01/25/hping-remote-dos-fur-cisco-ios</guid>
		<description><![CDATA[Cisco Systems hat kürzlich eine Warnung in Bezug auf die Router und Switches des Unternehmens herausgegeben, die unter der Internetwork Operating System (IOS) Software von Cisco laufen und für die Verarbeitung von IPv4-Paketen (Internet Protocol Version 4) konfiguriert sind. In der betreffenden Warnmit-teilung hat Cisco auf die Anfälligkeit gegenüber Remote-DoS-Attacken (Denial of Service) hingewiesen. #!/bin/tcsh [...]]]></description>
		<wfw:commentRss>http://www.okami.de/2008/01/01/hping-remote-dos-fur-cisco-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gateway Firewall Script</title>
		<link>http://www.okami.de/2007/11/21/gateway-firewall-script/</link>
		<comments>http://www.okami.de/2007/11/21/gateway-firewall-script/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 13:45:25 +0000</pubDate>
		<dc:creator>okami</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[dmz]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[sicherheit]]></category>

		<guid isPermaLink="false">http://www.okami.de/2007/12/21/gateway-firewall-script/</guid>
		<description><![CDATA[Im Folgenden seht ihr ein Skript, das alle nötigen Einstellungen für eine grobe Firewall und Gateway-Funktionalität bietet. #!/bin/sh /sbin/modprobe ip_conntrack_ftp CONNECTION_TRACKING="1" ACCEPT_AUTH="0" DHCP_SERVER="1" IPT="/sbin/iptables" # Location of iptables on your system DMZ_INTERFACE="eth0" # network interface to the DMZ LAN_INTERFACE="eth1" # network interface to the LAN LOOPBACK_INTERFACE="lo" # however your system names it DMZ_IPADDR="192.168.1.126" # DMZ [...]]]></description>
		<wfw:commentRss>http://www.okami.de/2007/11/21/gateway-firewall-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

