<?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>SurlyJake &#187; Networking</title>
	<atom:link href="http://www.surlyjake.com/tag/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.surlyjake.com</link>
	<description></description>
	<lastBuildDate>Fri, 30 Dec 2011 15:28:12 +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>Securing and configuring HP switches</title>
		<link>http://www.surlyjake.com/2009/01/securing-and-configuring-hp-switches/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=securing-and-configuring-hp-switches</link>
		<comments>http://www.surlyjake.com/2009/01/securing-and-configuring-hp-switches/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 19:20:28 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Switch Networking]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.surlyjake.com/?p=264</guid>
		<description><![CDATA[We got some Procurve 2810 Gigabit switches. they play some critical roles, so I wanted to keep others from playing with them. The exact code below would enable https for web management, enable ssh for console management, change the port ssh runs on, and disable telnet and unencrypted web management. config crypto key generate ssh [...]]]></description>
			<content:encoded><![CDATA[<p>We got some Procurve 2810 Gigabit switches. they play some critical roles, so I wanted to keep others from playing with them. The exact code below would enable https for web management, enable ssh for console management, change the port ssh runs on, and disable telnet and unencrypted web management.</p>
<pre><code>
config
crypto key generate ssh
show crypto host-public-key
crypto key generate cert 512
crypto host-cert generate self-signed 01/01/2009 01/01/2020 [ip address] [department] [company] Chicago IL us
ip ssh
no telnet-server
no web-management plaintext
ip ssh port [port num]
web management ssl
write memory
</code></pre>
<div class="none"><div class="g-plusone" data-href="http://www.surlyjake.com/2009/01/securing-and-configuring-hp-switches/" size="standard" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.surlyjake.com/2009/01/securing-and-configuring-hp-switches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debian 4.0r4 NIC bonding</title>
		<link>http://www.surlyjake.com/2008/09/debian-40r4-nic-bonding/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=debian-40r4-nic-bonding</link>
		<comments>http://www.surlyjake.com/2008/09/debian-40r4-nic-bonding/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 18:26:21 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Debian Etch]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[aggregating]]></category>
		<category><![CDATA[bonding]]></category>

		<guid isPermaLink="false">http://www.surlyjake.com/?p=20</guid>
		<description><![CDATA[Install package ifenslave-2.6. apt-get install ifenslave make sure the real NICs kernel modules are loaded automatically modprobe --list &#124; grep -i bonding edit /etc/network/interfaces to look like this: auto bond0 iface bond0 inet static address 192.168.1.59 netmask 255.255.255.0 gateway 192.168.1.1 up /sbin/ifenslave bond0 eth0 eth1 down /sbin/ifenslave -d bond0 eth0 eth1 broadcast 192.168.1.255 make sure [...]]]></description>
			<content:encoded><![CDATA[<p>Install package ifenslave-2.6.</p>
<pre><code>apt-get install ifenslave
</code></pre>
<p>make sure the real NICs kernel modules are loaded automatically</p>
<pre><code>modprobe --list | grep -i <a href="http://www.surlyjake.com/tag/bonding/" class="st_tag internal_tag" rel="tag" title="Posts tagged with bonding">bonding</a>
</code></pre>
<p>edit /etc/network/interfaces to look like this:</p>
<pre><code>auto bond0
iface bond0 inet static
address 192.168.1.59
netmask 255.255.255.0
gateway 192.168.1.1
up /sbin/ifenslave bond0 eth0 eth1
down /sbin/ifenslave -d bond0 eth0 eth1
broadcast 192.168.1.255</code></pre>
<p>make sure to remove ALL of the lines refering to old eth0 or eth1 settings.</p>
<p>add the following lines to your /etc/modprobe.d/arch/i386:</p>
<pre><code>alias bond0 bonding
options bonding mode=1 miimon=100 downdelay=200 updelay=200</code></pre>
<div class="none"><div class="g-plusone" data-href="http://www.surlyjake.com/2008/09/debian-40r4-nic-bonding/" size="standard" count="true"></div></div>]]></content:encoded>
			<wfw:commentRss>http://www.surlyjake.com/2008/09/debian-40r4-nic-bonding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

