<?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>Lyle Backenroth &#187; Networking</title>
	<atom:link href="http://www.lylebackenroth.com/blog/tag/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lylebackenroth.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 23 Jul 2010 01:07:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to set up dual-NIC bonding in Ubuntu</title>
		<link>http://www.lylebackenroth.com/blog/2009/02/13/how-to-set-up-dual-nic-bonding-in-ubuntu/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-set-up-dual-nic-bonding-in-ubuntu</link>
		<comments>http://www.lylebackenroth.com/blog/2009/02/13/how-to-set-up-dual-nic-bonding-in-ubuntu/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 05:10:40 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=312</guid>
		<description><![CDATA[REPOST: Source: Only Ubuntu Linux:
Bonding is creation of a single bonded interface by combining 2 or more ethernet interfaces. This helps in high availability and performance improvement.
How to setup dual-dual bonding (two bonds of two interfaces each) on Ubuntu as quickly as possible.
1. Add two lines to /etc/modules
bonding bond0 -o bond0 mode=1 miimon=100
bonding bond1 -o [...]]]></description>
			<content:encoded><![CDATA[<p>REPOST: Source: <a href="http://onlyubuntu.blogspot.com/2009/02/howto-setup-dual-dual-nic-bonding-on.html" target="_blank">Only Ubuntu Linux</a>:</p>
<p>Bonding is creation of a single bonded interface by combining 2 or more ethernet interfaces. This helps in high availability and performance improvement.</p>
<p>How to setup dual-dual bonding (two bonds of two interfaces each) on Ubuntu as quickly as possible.</p>
<p>1. Add two lines to /etc/modules</p>
<p>bonding bond0 -o bond0 mode=1 miimon=100</p>
<p>bonding bond1 -o bond1 mode=1 miimon=100</p>
<p>If you’re very good at managing your time, just remember that miimon’s option determines how often the bond is monitored for failure and that mode can be one of:</p>
<p>0 &#8211; Round robin balancing</p>
<p>1 &#8211; Active back-up</p>
<p>2 &#8211; Transmit based on MAC address for load balancing/fault tolerance</p>
<p>3 &#8211; Broadcasting &#8211; provides fault tolerance by transmitting on all slave interfaces</p>
<p>4 &#8211; Aggregates links, assuming all nics support same speeds and duplex settings</p>
<p>5 &#8211; Transmit load balancing &#8211; balancing is handled by the bond based on load</p>
<p>6 &#8211; Same as 5, but also uses arp to balance load “better</p>
<p>2. Install the ifenslave package if you haven’t already. You can use apt-get to grab it if you don’t:</p>
<p>sudo apt-get install ifenslave-x.x</p>
<p>3. Ensure that the package actually installed:</p>
<p>sudo dpkg –get-selections | grep enslave</p>
<p>ifenslave-x.x install</p>
<p>4. Set up your interface files:</p>
<p># cat /etc/network/interfaces (only including the parts you probably need &#8211; substitute IP addresses, netmasks, etc):</p>
<p>auto lo</p>
<p>iface lo inet loopback</p>
<p>auto bond0</p>
<p>iface bond0 inet static</p>
<p>address 10.10.125.88</p>
<p>netmask 255.255.255.0</p>
<p>network 10.10.125.0</p>
<p>gateway 10.10.125.1</p>
<p>post-up ifenslave bond0 eth0 eth2</p>
<p>pre-down ifenslave -d bond0 eth0 eth2</p>
<p>auto bond1</p>
<p>iface bond1 inet static</p>
<p>address 10.10.127.88</p>
<p>netmask 255.255.255.0</p>
<p>network 10.10.127.0</p>
<p>gateway 10.10.127.1</p>
<p>post-up ifenslave bond1 eth1 eth3</p>
<p>pre-down ifenslave -d bond1 eth1 eth3</p>
<p>5. Add lines to the bottom of your architecture’s modprobe files, reboot<br />
and pray:</p>
<p>sudo cat /etc/modprobe.d/arch/i386</p>
<p>alias bond0 bonding</p>
<p>options bond0 mode=1 miimon=5000 max_bonds=2</p>
<p>alias bond1 bonding</p>
<p>options bond1 mode=1 miimon=5000 max_bonds=2</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2009/02/13/how-to-set-up-dual-nic-bonding-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GroundWork Monitor Community Edition</title>
		<link>http://www.lylebackenroth.com/blog/2008/10/27/groundwork-monitor-community-edition/#utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=groundwork-monitor-community-edition</link>
		<comments>http://www.lylebackenroth.com/blog/2008/10/27/groundwork-monitor-community-edition/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 09:52:59 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=208</guid>
		<description><![CDATA[From the site:
GroundWork Monitor Community Edition provides a essential IT monitoring solution that enables you to maintain network visibility and control.
This is a single server deployment that leverages the strengths of 15 other open source projects such as Nagios, rrdtool and nmap. It combines the results of these projects in to a system that evaluates [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.groundworkopensource.com/community/community-edition.html" target="_blank">From the site:</a></p>
<blockquote><p>GroundWork Monitor Community Edition provides a essential IT monitoring solution that enables you to maintain network visibility and control.</p>
<p>This is a single server deployment that leverages the strengths of 15 other open source projects such as Nagios, rrdtool and nmap.<!-- – see the project list here (link). --> It combines the results of these projects in to a system that evaluates the status, events and performance of monitored devices and presents these results in an easy to understand web application.</p>
<p>This open source project distributed on sourceforge.net is available under the GNU Public License (GPL v2). It is ideal for operations who already have deployed one or more open source monitoring projects and need to expand its capability.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/10/27/groundwork-monitor-community-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)

Served from: lylebackenroth.com @ 2010-09-09 17:29:37 -->