<?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>Abi Rendon - Sysadmin</title>
	<atom:link href="http://www.abirendon.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.abirendon.com</link>
	<description>The trials and tribulations of a web developer and sysadmin.</description>
	<lastBuildDate>Tue, 03 Nov 2009 20:11:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VPN Tunnel Between Cisco ASA and Juniper SSG Firewalls</title>
		<link>http://www.abirendon.com/index.php/2009/11/03/vpn-tunnel-between-cisco-asa-and-juniper-ssg-firewalls/</link>
		<comments>http://www.abirendon.com/index.php/2009/11/03/vpn-tunnel-between-cisco-asa-and-juniper-ssg-firewalls/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 20:03:42 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Labor]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[juniper]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.abirendon.com/?p=205</guid>
		<description><![CDATA[Recently at work I was tasked with configuring a VPN tunnel between Cisco ASA 5505 to a Juniper SSG 320M. After hearing that it wasn&#8217;t compatible from many sources including our partners I just could not believe that this was the case, ipsec tunnels are a standard protocol and both Juniper and Cisco should be [...]]]></description>
			<content:encoded><![CDATA[<p>Recently at work I was tasked with configuring a VPN tunnel between Cisco ASA 5505 to a Juniper SSG 320M. After hearing that it wasn&#8217;t compatible from many sources including our partners I just could not believe that this was the case, ipsec tunnels are a standard protocol and both Juniper and Cisco should be compatible with ipsec.</p>
<p>After a day of google searches and troubleshooting I couldn&#8217;t find a proper solution that was easy and explained properly for my type of standard setup. Here is how I configured an ipsec VPN tunnel between the SSG and ASA.</p>
<p><strong>Cisco ASA 5505</strong></p>
<ul>
<li>IP: 1.1.1.1</li>
<li>Network: 192.168.1.0/24</li>
</ul>
<p><strong>Juniper SSG 320M</strong></p>
<ul>
<li>IP: 2.2.2.2</li>
<li>Network: 192.168.2.0/24</li>
</ul>
<blockquote><p>
192.168.1.0/24 < -> 1.1.1.1 < --VPN Tunnel--> 2.2.2.2 < -> 192.168.2.0/24
</p></blockquote>
<p>Here is the actual configuration including all the access list to allow all traffic through, you will probably want to lock this down as it will allow all traffic through.</p>
<p><strong>Cisco ASA 5505 Configuration</strong></p>
<blockquote><p>
object-group network local_cisco_network<br />
 network-object 192.168.1.0 255.255.255.0<br />
object-group network remote_juniper_network<br />
 network-object 192.168.2.0 255.255.255.0</p>
<p>access-list ciscovpn_nat_junipervpn extended permit ip object-group local_cisco_network object-group remote_juniper_network<br />
access-list ciscovpn_nat_junipervpn extended permit ip object-group remote_juniper_network object-group local_cisco_network</p>
<p>access-list ciscotojuniper_cryptomap extended permit ip 192.168.1.0 255.255.255.0 192.168.2.0 255.255.255.0</p>
<p>crypto map outside_map 1 match address ciscotojuniper_cryptomap<br />
crypto map outside_map 1 set pfs<br />
crypto map outside_map 1 set peer 2.2.2.2<br />
crypto map outside_map 1 set transform-set ESP-3DES-SHA</p>
<p>tunnel-group 2.2.2.2 type ipsec-l2l<br />
tunnel-group 2.2.2.2 ipsec-attributes<br />
 pre-shared-key <mypresharedkey><br />
</mypresharedkey></p></blockquote>
<p><strong>Juniper SSG 320M Configuration</strong></p>
<blockquote><p>
set address &#8220;Trust&#8221; &#8220;192.168.2.0/24&#8243; 10.248.1.0 255.255.255.0<br />
set address &#8220;Untrust&#8221; &#8220;192.168.1.0/24&#8243; 10.0.10.0 255.255.255.0</p>
<p>set ike gateway &#8220;1.1.1.1&#8243; address 1.1.1.1 Main outgoing-interface &#8220;ethernet0/1&#8243; preshare &#8220;<mypresharedkey>&#8221; proposal &#8220;pre-g2-3des-sha&#8221;</p>
<p>set vpn &#8220;1.1.1.1&#8243; gateway &#8220;1.1.1.1&#8243; no-replay tunnel idletime 0 proposal &#8220;g2-esp-3des-sha&#8221;<br />
set policy id 2 name &#8220;1.1.1.1&#8243; from &#8220;Trust&#8221; to &#8220;Untrust&#8221;  &#8220;192.168.2.0/24&#8243; &#8220;192.168.1.0/24&#8243; &#8220;ANY&#8221; tunnel vpn &#8220;1.1.1.1&#8243; id 0xa pair-policy 1<br />
set policy id 2<br />
exit<br />
set policy id 1 name &#8220;1.1.1.1&#8243; from &#8220;Untrust&#8221; to &#8220;Trust&#8221;  &#8220;192.168.1.0/24&#8243; &#8220;192.168.2.0/24&#8243; &#8220;ANY&#8221; tunnel vpn &#8220;1.1.1.1&#8243; id 0xa pair-policy 2<br />
set policy id 1<br />
exit<br />
</mypresharedkey></p></blockquote>
<p>This configuration will allow traffic from 192.168.1.0/24 to 192.168.2.0/24 and vice versa. On the Juniper side the name of the vpn and gateway I think are important otherwise the Phase 1 negotiation will not work. If I&#8217;ve missed something or if you don&#8217;t understand something please let me know.</p>
<p>I will probably need to configure this against a Cisco router in the near future so stay tuned for an update for the cisco side.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2009/11/03/vpn-tunnel-between-cisco-asa-and-juniper-ssg-firewalls/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Science Vs Religion</title>
		<link>http://www.abirendon.com/index.php/2009/06/09/science-vs-religion/</link>
		<comments>http://www.abirendon.com/index.php/2009/06/09/science-vs-religion/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 06:51:46 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[religion]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://www.abirendon.com/?p=200</guid>
		<description><![CDATA[The conflict between religion and science astounds me. The philosophical basis of nearly all popular religions stress the importance of humility. Is there a more humble institution than science? Its foundation stands on the idea that you must give up your preconceptions in the face of evidence to the contrary, no matter how much you [...]]]></description>
			<content:encoded><![CDATA[<p>The conflict between religion and science astounds me. The philosophical basis of nearly all popular religions stress the importance of humility. Is there a more humble institution than science? Its foundation stands on the idea that you must give up your preconceptions in the face of evidence to the contrary, no matter how much you may be comfortable in your ways. This idea doesn&#8217;t only apply to things like the elemental composition of the corona of distant stars, it goes for anything a thinking creature observes in its environment if it wants to do anything more than eat and fuck and swing from trees.</p>
<p>The power to collectively observe and document our world is an incredible gift, and is responsible for everything humanity has created, from the worldwide computer network with which you read this, to the actual written word language in which this opinion is expressed.</p>
<p>To deny science is to deny that which makes you human. </p>
<p>Quote from forum user <a href="http://forums.somethingawful.com/member.php?action=getinfo&#038;userid=47828">the_ruiner</a> of <a href="http://forums.somethingawful.com/showthread.php?threadid=3144740&#038;userid=0&#038;perpage=40&#038;pagenumber=6#post361350465">somethingawful.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2009/06/09/science-vs-religion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install OSX on Dell Mini 9</title>
		<link>http://www.abirendon.com/index.php/2009/04/17/install-osx-on-dell-mini-9/</link>
		<comments>http://www.abirendon.com/index.php/2009/04/17/install-osx-on-dell-mini-9/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 08:12:50 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Home]]></category>

		<guid isPermaLink="false">http://www.abirendon.com/?p=194</guid>
		<description><![CDATA[With help from MyDellMini.com I&#8217;ve installed OS X on my new Dell Mini 9 netbook.
Here&#8217;s a few pics from the install.




]]></description>
			<content:encoded><![CDATA[<p>With help from <a href="http://mydellmini.com">MyDellMini.com</a> I&#8217;ve installed OS X on my new Dell Mini 9 netbook.</p>
<p>Here&#8217;s a few pics from the install.</p>
<p><img src="http://farm4.static.flickr.com/3404/3449661936_ec7bb0249d.jpg?v=0" /></p>
<p><img src="http://farm4.static.flickr.com/3407/3449827202_660b014d0f.jpg?v=0" /></p>
<p><img src="http://farm4.static.flickr.com/3595/3449828552_36e95824d7.jpg?v=0" /></p>
<p><img src="http://farm4.static.flickr.com/3634/3449014965_6134370e0f.jpg?v=0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2009/04/17/install-osx-on-dell-mini-9/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CrapHost Logo</title>
		<link>http://www.abirendon.com/index.php/2009/04/02/craphost-logo/</link>
		<comments>http://www.abirendon.com/index.php/2009/04/02/craphost-logo/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 17:40:59 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://www.abirendon.com/?p=190</guid>
		<description><![CDATA[Just testing out a logo for my craphost.com design, this will essentially be a clustered fault tolerant scalable hosting system that I&#8217;ve been working on for quite some time. Starting out with craphost.com for beta testing and trying out pricing models and will start up professional services with more features and uptime guarantees as I [...]]]></description>
			<content:encoded><![CDATA[<p>Just testing out a logo for my craphost.com design, this will essentially be a clustered fault tolerant scalable hosting system that I&#8217;ve been working on for quite some time. Starting out with craphost.com for beta testing and trying out pricing models and will start up professional services with more features and uptime guarantees as I work out the kinks.</p>
<p><img src="http://www.abirendon.com/wp-content/uploads/2009/04/craphost_logo.png" alt="craphost_logo" title="craphost_logo" width="493" height="201" class="alignnone size-full wp-image-191" /></p>
<div class="unt_lp_mood"><strong>Current Mood: </strong> <img src="http://stat.livejournal.com/img/mood/classic/tired.gif
"alt="(sleepy)" />&nbsp;sleepy</div>]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2009/04/02/craphost-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adam Carolla Podcast!</title>
		<link>http://www.abirendon.com/index.php/2009/02/23/adam-carolla-podcast/</link>
		<comments>http://www.abirendon.com/index.php/2009/02/23/adam-carolla-podcast/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 14:58:34 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[carolla]]></category>
		<category><![CDATA[radio]]></category>

		<guid isPermaLink="false">http://www.abirendon.com/?p=188</guid>
		<description><![CDATA[Now that The Adam Carolla Show is off the air he&#8217;s moved over to a podcast format, listen to him now!
http://carollaradio.com/2009/02/23/acp-20090223/
Check him out, uncensored and unedited.
]]></description>
			<content:encoded><![CDATA[<p>Now that The Adam Carolla Show is off the air he&#8217;s moved over to a podcast format, listen to him now!</p>
<p><a href="http://carollaradio.com/2009/02/23/acp-20090223/">http://carollaradio.com/2009/02/23/acp-20090223/</a></p>
<p>Check him out, uncensored and unedited.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2009/02/23/adam-carolla-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Blog Test</title>
		<link>http://www.abirendon.com/index.php/2009/02/19/iphone-blog-test/</link>
		<comments>http://www.abirendon.com/index.php/2009/02/19/iphone-blog-test/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 00:24:13 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://www.abirendon.com/index.php/2009/02/19/iphone-blog-test/</guid>
		<description><![CDATA[I&#8217;m just testing the wordpress plugin for the iPhone. So far it looks like it&#8217;s pretty good. I&#8217;m still looking for new iPhone apps too.


]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m just testing the wordpress plugin for the iPhone. So far it looks like it&#8217;s pretty good. I&#8217;m still looking for new iPhone apps too.</p>
<p><a href="http://www.abirendon.com/wp-content/uploads/2009/02/p-640-480-45f71667-b2e3-45ce-a11c-afa1bb7572ef.jpeg"><img src="http://www.abirendon.com/wp-content/uploads/2009/02/p-640-480-45f71667-b2e3-45ce-a11c-afa1bb7572ef.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://www.abirendon.com/wp-content/uploads/2009/02/p-640-480-e2cb6b60-ec5d-4280-a0e7-9594faba5d6c.jpeg"><img src="http://www.abirendon.com/wp-content/uploads/2009/02/p-640-480-e2cb6b60-ec5d-4280-a0e7-9594faba5d6c.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2009/02/19/iphone-blog-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New URL and Design</title>
		<link>http://www.abirendon.com/index.php/2009/02/19/new-url-and-design/</link>
		<comments>http://www.abirendon.com/index.php/2009/02/19/new-url-and-design/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 23:12:09 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.abirendon.com/?p=171</guid>
		<description><![CDATA[As some might have noticed, I&#8217;ve recently updated my domain to abirendon.com and I&#8217;ve also applied a new wordpress theme, just made a few tweaks but it all seems to be working splendidly and it looks good.
I&#8217;ll be posting some guides on setting up and configuring VMWare ESXi, converting VMWare Server VMs to ESXi format, [...]]]></description>
			<content:encoded><![CDATA[<p>As some might have noticed, I&#8217;ve recently updated my domain to <a href="http://www.abirendon.com">abirendon.com</a> and I&#8217;ve also applied a new wordpress theme, just made a few tweaks but it all seems to be working splendidly and it looks good.</p>
<p>I&#8217;ll be posting some guides on setting up and configuring VMWare ESXi, converting VMWare Server VMs to ESXi format, configuring a raid 5 array on an MSA20 via linux command line and hopefully some more interesting pictures.</p>
<p>I&#8217;ve also just bought an iphone so I&#8217;ll probably be messing around with doing updates on the go.</p>
<div class="unt_lp_mood"><strong>Current Mood: </strong> <img src="http://stat.livejournal.com/img/mood/classic/smile.gif
"alt="(good)" />&nbsp;good</div>]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2009/02/19/new-url-and-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Snowpocalypse Lynnwood &#8216;08</title>
		<link>http://www.abirendon.com/index.php/2008/12/22/snowpocalypse-lynnwood-08/</link>
		<comments>http://www.abirendon.com/index.php/2008/12/22/snowpocalypse-lynnwood-08/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 07:21:24 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[snow]]></category>

		<guid isPermaLink="false">http://www.azuretek.com/?p=168</guid>
		<description><![CDATA[After many warnings and fears there was in fact many a snow fall in the greater Seattle area&#8230; I&#8217;ve documented my neighborhood and what has come to pass&#8230;


Outside my living room window

Cat prints

Trees

Parking Lot

Path I walk to the bus every morning

Main Road West (my bus stop across the road there)

Main Road East

Road to my apartment [...]]]></description>
			<content:encoded><![CDATA[<p>After many warnings and fears there was in fact many a snow fall in the greater Seattle area&#8230; I&#8217;ve documented my neighborhood and what has come to pass&#8230;</p>
<p><span id="more-168"></span></p>
<div class="ljcut">
Outside my living room window<br />
<img src="http://photos-3.getdropbox.com/i/l/9qGuIyYhRGdzAXf8_CH6LV6DuraZmIZFhSHfGLMKgiI#7" alt="living room window" /></p>
<p>Cat prints<br />
<img src="http://photos-4.getdropbox.com/i/l/qIemA3GXfjTQzquv2Be0Gv2t9Qii4LMPCU-iILDBSp0#8" alt="cat prints" /></p>
<p>Trees<br />
<img src="http://photos-1.getdropbox.com/i/l/S6wwBq5KlI92PrgbN4u5_GS7pRYUTtykjR1StUq38NE#1" alt="trees" /></p>
<p>Parking Lot<br />
<img src="http://photos-4.getdropbox.com/i/l/iWwUlek4XlbtRo_oFELUXfJLKBfQFBDXM0sJxmTlL8A#4" alt="Parking Lot" /></p>
<p>Path I walk to the bus every morning<br />
<img src="http://photos-1.getdropbox.com/i/l/R4dkBePSTAdH2oLtlKniZgRoQ-I7r0yYmqQnDX1lniI#9" alt="path to bus" /></p>
<p>Main Road West (my bus stop across the road there)<br />
<img src="http://photos-2.getdropbox.com/i/l/VVkd2kjJMjkl91zaYRgiwp7TQ6g7oc0CUTelaJ3LZtk#14" alt="main road west" /></p>
<p>Main Road East<br />
<img src="http://photos-3.getdropbox.com/i/l/8zhJ1ia5LWHd6YcNE8usvyKLa_Tudh9AVtg1MI85Oto#15" alt="main road east" /></p>
<p>Road to my apartment complex<br />
<img src="http://photos-4.getdropbox.com/i/l/GYiPKrjwLrxBevyEX_7yZ222Y6bpari7S024kB_RyfA#16" alt="road to apartment complex" /></p>
<p>Same road<br />
<img src="http://photos-2.getdropbox.com/i/l/qjW3AZyCl4GRp3jCyAQEULXzH1y-fPCZwygFQi2SfRQ#6" alt="same road" /></p>
<p>A couple squirrels ran by<br />
<img src="http://photos-3.getdropbox.com/i/l/wyj7Fv1C7NKiPnN2SqG97XMe3hudZXnm8_Za08o_pGI#7" alt="squirrels" /></p>
<p>An icicle<br />
<img src="http://photos-2.getdropbox.com/i/l/fTmoJejvwhvAmqqbnJCohoUzorB66zLSYgAAxK6_UOw#10" alt="icicle" /></p>
<p><a href="http://dl.getdropbox.com/u/49757/videos/MOV00429.MPG">Here&#8217;s a quick video I took</a></p>
<p>Shortly after the video one of those birds shit on my head, luckily I wasn&#8217;t too far from my apartment so I just went home and showered.</p>
</div>
<div class="unt_lp_mood"><strong>Current Mood: </strong> <img src="http://stat.livejournal.com/img/mood/classic/smile.gif
"alt="(pleased)" />&nbsp;pleased</div>]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2008/12/22/snowpocalypse-lynnwood-08/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://dl.getdropbox.com/u/49757/videos/MOV00429.MPG" length="8355149" type="video/mpeg" />
		</item>
		<item>
		<title>New Hardware for WTFServe</title>
		<link>http://www.abirendon.com/index.php/2008/11/19/new-hardware-for-wtfserve/</link>
		<comments>http://www.abirendon.com/index.php/2008/11/19/new-hardware-for-wtfserve/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 07:26:00 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[wtfserve]]></category>

		<guid isPermaLink="false">http://www.azuretek.com/?p=163</guid>
		<description><![CDATA[Today was a busy day, at Airbiquity we went live with the Ford Sync Project, but before that I did some work for my own project.
We installed some new hardware, this includes 2 new VM servers and a storage array as well as networking equipment.


The List:

HP Procurve 2626 &#8211; 24 port 10/100 Switch

HP Procurve 6108 [...]]]></description>
			<content:encoded><![CDATA[<p>Today was a busy day, at Airbiquity we went live with the Ford Sync Project, but before that I did some work for my own project.</p>
<p>We installed some new hardware, this includes 2 new VM servers and a storage array as well as networking equipment.</p>
<p><span id="more-163"></span></p>
<div class="ljcut">
The List:</p>
<ul>
<li>HP Procurve 2626 &#8211; 24 port 10/100 Switch
</li>
<li>HP Procurve 6108 &#8211; 8 port 10/100/1000 Switch
</li>
<li>HP DL360, Dual 3.0Ghz Xeon, 8GB RAM, 2 72GB 10K SCSI (in RAID1)</li>
<li>HP DL360, Dual 3.0Ghz Xeon, 8GB RAM, 2 72GB 10K SCSI (in RAID1)</li>
<li>HP MSA20 Storage Array, 3 1TB Drives in RAID 5</li>
</ul>
<p>And I took pictures and video during the install&#8230;</p>
<p><a href="http://dl.getdropbox.com/u/49757/wtfserve/DSC00347.JPG"><img src="http://dl.getdropbox.com/u/49757/wtfserve/DSC00347.JPG" height="300"/></a></p>
<p><a href="http://dl.getdropbox.com/u/49757/wtfserve/DSC00348.JPG"><img src="http://dl.getdropbox.com/u/49757/wtfserve/DSC00348.JPG" height="300"/></a></p>
<p><a href="http://dl.getdropbox.com/u/49757/wtfserve/DSC00349.JPG"><img src="http://dl.getdropbox.com/u/49757/wtfserve/DSC00349.JPG" height="300"/></a></p>
<p><a href="http://dl.getdropbox.com/u/49757/wtfserve/MOV00342.MPG">http://dl.getdropbox.com/u/49757/wtfserve/MOV00342.MPG</a><br />
<a href="http://dl.getdropbox.com/u/49757/wtfserve/MOV00350.MPG">http://dl.getdropbox.com/u/49757/wtfserve/MOV00350.MPG</a>
</div>
<div class="unt_lp_mood"><strong>Current Mood: </strong> <img src="http://stat.livejournal.com/img/mood/classic/smile.gif
"alt="(cheerful)" />&nbsp;cheerful</div>]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2008/11/19/new-hardware-for-wtfserve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://dl.getdropbox.com/u/49757/wtfserve/MOV00350.MPG" length="4965159" type="video/mpeg" />
<enclosure url="http://dl.getdropbox.com/u/49757/wtfserve/MOV00342.MPG" length="5217617" type="video/mpeg" />
		</item>
		<item>
		<title>I am voting for&#8230;</title>
		<link>http://www.abirendon.com/index.php/2008/10/30/i-am-voting-for/</link>
		<comments>http://www.abirendon.com/index.php/2008/10/30/i-am-voting-for/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 05:33:07 +0000</pubDate>
		<dc:creator>Abi Rendon</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.azuretek.com/?p=120</guid>
		<description><![CDATA[<strong>Nobody!</strong>

If you're an American of the United States variety you may have noticed there's an election going on, and on, and on, and on. It's been a long standing tradition amongst our culture in this great nation to stretch out events as long as possible, if you're not picking out presents in August you might as well end it all now because god knows your grandchildren need new socks at the ready for that special day oh so many months away.]]></description>
			<content:encoded><![CDATA[<p><strong>Nobody!</strong></p>
<p>If you&#8217;re an American of the United States variety you may have noticed there&#8217;s an election going on, and on, and on, and on. It&#8217;s been a long standing tradition amongst our culture in this great nation to stretch out events as long as possible, if you&#8217;re not picking out presents in August you might as well end it all now because god knows your grandchildren need new socks at the ready for that special day oh so many months away.</p>
<p><span id="more-120"></span></p>
<div class="ljcut">
It seems like it&#8217;s been 2 years since this Election&#8217;s campaigns started, some might even say they&#8217;ve been going on for longer, speculation of Hilary Clinton running for office was going on since before the 2000 election. I ask you though, why? Why is there this need for us to constantly be waiting for an event that ultimately means nothing?</p>
<p>You might be shaking your head, asking &#8220;What&#8217;s with this guy? Of course it means something, it means everything!&#8221; But does it really? When was the last time you were directly affected by a new president? You might be saying &#8220;My brother is in a foreign country because of war!&#8221; or &#8220;I&#8217;m in the poor house because our president ruined the economy!&#8221;. Well I have a secret for you, economic turns and wars happen regardless of who is in office!</p>
<p>We had a VERY prosperous 10 years or so during the Clinton era, what else happened during that time? The dot com boom, and what happened around 9/11? The dot com bubble burst! Several new jobs were created and just as quickly several jobs were just as quickly dissipated. Same with wars and threats, we have Vietnam, Iraq v1, Kosovo, Cuban missle crisis hell every little skirmish in the middle east ties up our military for decades. Do you think it really makes that much of a difference who is in office?</p>
<p>I grew up in Arizona and McCain has always been great he&#8217;s changed in his political views a lot during this campaign. Obama is a great charismatic person who has a lot of views that fall in line with my own, but how can we really know who he is? In the end what is the difference between the candidates? Race? Age? Tax plans that have a history of not being enacted and even so are different by mere fractions? It&#8217;s always going to be the same, the rich people will always be taxed more, the poor people will always want more social services.</p>
<p>Nothing will change and we will always progress regardless of who&#8217;s in theoretical charge. I say we vote, vote for apathy, don&#8217;t vote at all who cares in the end anyway? If you decide to vote anyway, vote for progress, progress for progress sake is better than doing nothing regardless of the outcome.</p>
<p>edit: Vote Stephen Baldwin<br />
<img src="http://dl.getdropbox.com/u/49757/blog/baldwin.png" />
</div>
<div class="unt_lp_mood"><strong>Current Mood: </strong> <img src="http://stat.livejournal.com/img/mood/classic/blah.gif
"alt="(apathetic)" />&nbsp;apathetic</div>]]></content:encoded>
			<wfw:commentRss>http://www.abirendon.com/index.php/2008/10/30/i-am-voting-for/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
