<?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>Tue, 13 Jul 2010 18:35:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Yeah, Linux Is&#8230;</title>
		<link>http://zarathustrashallspeak.com/2009/10/21/yeah-linux-is/</link>
		<comments>http://zarathustrashallspeak.com/2009/10/21/yeah-linux-is/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 20:45:36 +0000</pubDate>
		<dc:creator>Akairenn</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://zarathustrashallspeak.com/?p=48</guid>
		<description><![CDATA[What a backwards operating system you have, -Lamb-.]]></description>
			<content:encoded><![CDATA[<p><i>Four Port Link Aggregation on Solaris:</i></p>
<p><code>dladm create-aggr -d e1000g0 -d e1000g1 -d e1000g2 -d e1000g3 1<br />
ifconfig aggr1 plumb 10.103.0.13 up<br />
dladm modify-aggr -L active -T short 1</code></p>
<p><i>Four Port Link Aggregation on Linux:</i></p>
<p><code>modprobe bonding mode=* miimon=100<br />
ifconfig bond0 hw ether randommacaddress<br />
ifconfig bond0 10.103.0.13 up<br />
ifenslave bond0 eth0<br />
ifenslave bond0 eth1<br />
ifenslave bond0 eth2<br />
ifenslave bond0 eth3</code></p>
<p>I won&#8217;t even get into the simplicity of Solaris&#8217; persistent configuration vs. Linux&#8217;s persistent configuration &#8211; which will change between distributions, even.</p>
<p>The more I play with Solaris and OpenSolaris, the more I&#8217;m forced to admit that Linux is a mere toy compared to either.</p>
<p>Three commands and link aggregation just works.  No hassle.  No debugging.  No conflicting instructions on how various bits should be configured.  No trying to figure out what mode to use, or why your selected mode isn&#8217;t working despite the fact that it should.</p>
<p>It&#8217;s unfortunate Solaris requires a logical method of thinking.  More people should be using it.  The learning curve is supposedly steep &#8211; I dare say it is, when you&#8217;re used to the nonsensical environments of Linux, Windows or even OS X.  Do yourself a favor and try to get past that.</p>
<p>Once you start discovering why things are so obviously set up the way they are, you&#8217;ll pause, perhaps scratch your chin, and say, &#8220;Damn &#8211; why the hell isn&#8217;t that other operating system like this?&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://zarathustrashallspeak.com/2009/10/21/yeah-linux-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick and Dirty 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>
		<category><![CDATA[SysAdmin]]></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><br />
<code>nameserver #.#.#.#<br />
nameserver #.#.#.#</code></p>
<p>Naturally, replace #.#.#.# with the IP addresses of your nameservers.</p>
<p><strong>/etc/sysconfig/network:</strong><br />
<code>NETWORKING=yes<br />
HOSTNAME=BOX<br />
DOMAIN=DOMAIN.FOO</code></p>
<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><br />
<code>DEVICE=eth0<br />
BOOTPROTO=static<br />
IPADDR=172.16.42.142<br />
NETMASK=255.255.255.0<br />
NETWORK=172.16.42.0<br />
BROADCAST=172.16.42.255<br />
GATEWAY=172.16.42.1<br />
ONBOOT=yes</code></p>
<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>
<p><code>/etc/init.d/networking restart</code></p>
<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>
