<?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>Zarathustra Shall Speak &#187; Networking</title>
	<atom:link href="http://zarathustrashallspeak.com/tag/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://zarathustrashallspeak.com</link>
	<description>And you yourself are also this Will to Power.</description>
	<lastBuildDate>Fri, 06 Apr 2012 04:16:54 +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>Mikrotik/RouterOS and P2P Blocking</title>
		<link>http://zarathustrashallspeak.com/2009/12/06/mikrotikrouteros-and-p2pbittorrent-blocking/</link>
		<comments>http://zarathustrashallspeak.com/2009/12/06/mikrotikrouteros-and-p2pbittorrent-blocking/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 15:37:29 +0000</pubDate>
		<dc:creator>Akairenn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Mikrotik]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://zarathustrashallspeak.com/?p=184</guid>
		<description><![CDATA[Why is it that pirates can manage to distribute working copies, but companies offering digital download services can't?]]></description>
			<content:encoded><![CDATA[<p>Mikrotik allows one to very easily block the vast majority of P2P traffic on a network.  What you want is something like this:</p>
<pre class="code">
/ip firewall filter add chain=forward p2p=bit-torrent action=drop
</pre>
<p>Or, for those of you using WinBox:</p>
<ul>
<li>Navigate to IP &gt; Firewall</li>
<li>Click on the big red plus</li>
<li>General &gt; Chain: forward</li>
<li>General &gt; P2P: all-p2p</li>
<li>Action &gt; Action: drop</li>
</ul>
<p>Credit goes to Atari &#8211; without their terribly broken digital download service, I would&#8217;ve never been forced to accidentally test this rule. :p</p>
]]></content:encoded>
			<wfw:commentRss>http://zarathustrashallspeak.com/2009/12/06/mikrotikrouteros-and-p2pbittorrent-blocking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick RHEL/CentOS Network Configuration</title>
		<link>http://zarathustrashallspeak.com/2009/05/22/quick-and-dirty-rhelcentos-network-configuration/</link>
		<comments>http://zarathustrashallspeak.com/2009/05/22/quick-and-dirty-rhelcentos-network-configuration/#comments</comments>
		<pubDate>Fri, 22 May 2009 20:42:21 +0000</pubDate>
		<dc:creator>Akairenn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://zarathustrashallspeak.com/?p=67</guid>
		<description><![CDATA[Thankfully basic network configuration isn't a black art on most distributions these days.]]></description>
			<content:encoded><![CDATA[<p><strong>/etc/resolv.conf:</strong></p>
<pre class="code">
nameserver #.#.#.#
nameserver #.#.#.#
</pre>
<p>Naturally, replace #.#.#.# with the IP addresses of your nameservers.</p>
<p><strong>/etc/sysconfig/network:</strong></p>
<pre class="code">
NETWORKING=yes
HOSTNAME=BOX
DOMAIN=DOMAIN.FOO
</pre>
<p>HOSTNAME is, of course, where you put the hostname of your box.  This should not be a FQDN; the domain should end up in the DOMAIN variable.</p>
<p><strong>/etc/sysconfig/network-scripts/ifcfg-eth0:</strong></p>
<pre class="code">
DEVICE=eth0
BOOTPROTO=static
IPADDR=172.16.42.142
NETMASK=255.255.255.0
NETWORK=172.16.42.0
BROADCAST=172.16.42.255
GATEWAY=172.16.42.1
ONBOOT=yes
</pre>
<p>This assumes the IP of your box is 172.16.42.142 with a netmask of 255.255.255.0.  Network and broadcast will be set up in the same fashion, using .0 at the end of network and .255 for broadcast.  Gateway may fluctuate depending on your own network setup &#8211; usually, gateways are located at .1, but your mileage may vary.</p>
<pre class="code">
/etc/init.d/networking restart
</pre>
<p>&#8230;And yer off.</p>
]]></content:encoded>
			<wfw:commentRss>http://zarathustrashallspeak.com/2009/05/22/quick-and-dirty-rhelcentos-network-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

