<?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>GregLedet.net</title>
	<atom:link href="http://www.gregledet.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.gregledet.net</link>
	<description>Adventures in networking, security, and other things</description>
	<lastBuildDate>Wed, 05 Jun 2013 15:29:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Create a Bitcoin/Litecoin ticker with your Raspberry Pi!</title>
		<link>http://www.gregledet.net/?p=668</link>
		<comments>http://www.gregledet.net/?p=668#comments</comments>
		<pubDate>Mon, 03 Jun 2013 19:49:10 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[bitcoin]]></category>
		<category><![CDATA[BTC]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[Goverlay]]></category>
		<category><![CDATA[gox]]></category>
		<category><![CDATA[greg]]></category>
		<category><![CDATA[lcd screen]]></category>
		<category><![CDATA[ledet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[litecoin]]></category>
		<category><![CDATA[mBTC]]></category>
		<category><![CDATA[mt. gox]]></category>
		<category><![CDATA[pi]]></category>
		<category><![CDATA[raspberry]]></category>
		<category><![CDATA[raspberry pi]]></category>
		<category><![CDATA[reddit]]></category>
		<category><![CDATA[STIG]]></category>
		<category><![CDATA[ticker]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=668</guid>
		<description><![CDATA[A quick and easy Raspberry Pi Bitcoin Ticker how-to]]></description>
				<content:encoded><![CDATA[<p>Not that long ago I ran across <a href="http://www.reddit.com/r/Bitcoin/comments/1ep1y3/i_hate_to_open_websites_and_clients_to_view_the/" target="_blank">this post on Reddit</a> that showed a guy's version of the Raspberry Pi Bitcoin ticker. Luckily I at least saved <a title="Raspberrypi Bitcoin LCD ticker by Stig Atle Steffensen" href="http://stigatle.net/index.php/linux-articles/42-linux/103-bitcointicker" target="_blank">the link to his "how-to"</a> (Thanks Stig!). Since I had a Raspberry Pi already, I figured I'd give it a shot.</p>
<p>The first thing you're going to need is obviously a Raspberry Pi. I picked up the <a title="CanaKit Raspberry Pi (512 MB) Complete Starter Kit (Raspberry Pi 512 MB + Clear Case + Micro USB Power Supply + Pre-Loaded 4GB SD Card + HDMI Cable)" href="http://www.amazon.com/gp/product/B008XVAVAW/ref=oh_details_o01_s00_i00?ie=UTF8&amp;psc=1" target="_blank">CanaKit Complete Starter Kit from Amazon</a>. While you're at it, <a title="Edimax EW-7811Un 150 Mbps Wireless 11n Nano Size USB Adapter with EZmax Setup Wizard" href="http://www.amazon.com/Edimax-EW-7811Un-Wireless-Adapter-Wizard/dp/B003MTTJOY/ref=pd_bxgy_pc_img_y" target="_blank">Edimax EW-7811 Wireless N USB adapter</a>. That way you can connect to your wireless network and not have to use a network cable.  You're also going to need the screen. The screen I used is also the same screen that Stig used in his, and <a title="USB 2.8&quot; TFT LCD module LCD sys info display temperature fan AIDA64 LCD Smartie" href="http://www.ebay.com/itm/USB-2-8-TFT-LCD-module-LCD-sys-info-display-temperature-fan-AIDA64-LCD-Smartie-/121004607232?pt=LH_DefaultDomain_0&amp;hash=item1c2c6fc700">it comes from eBay</a>. The drivers and everything that come with the zip file you'll be downloading soon work on that screen. I do not know if they work with any other screen, so I HIGHLY suggest you spend the $29.99 and get that particular screen. Once you have all your parts, you're ready to go!</p>
<p><strong>Step 1: Setting up your Raspberry Pi</strong></p>
<p>I'm not a Linux expert by any means of the imagination, but I've done some tinkering with it in the past. I got my Raspberry Pi because I wanted a small Linux box to mess with and this thing is perfect. The Edimax has drivers built in to the latest OS on the Raspberry Pi, so you shouldn't have any problems with that. Connect to it and get it connected to your home network. Once you have that setup, you're going to need some files before we move forward...</p>
<p><strong>Step 2: Setting up the ticker</strong></p>
<p><a title="Ticker files" href="http://www.gregledet.net/ticker/ticker_files.zip" target="_blank">DOWNLOAD THIS FILE FIRST</a>. That zip file contains all the files you'll need to make this work. Put them in a directory called lcdscreen. Since I was using the 'pi' login on my pi, the full directory was /home/pi/lcdscreen/. If you decide to use a different directory, you'll have to edit the ticker.sh file later on.</p>
<p>The working part of this thing is the file 'ticker.py'. It's Stig's code that's been edited down to display only the Mt. Gox info. If you want to make any changes to what's displayed, that's the file you'll need to edit. The file 'ticker.sh' is the script that's run to make the screen refresh every 60 seconds. If you want to change the refresh rate (say, to every 5 minutes), you just nano ticker.sh and change the sleep number to however many seconds you want it to wait to refresh. 2 minutes = 120 seconds, 5 minutes = 300 seconds, and so on.</p>
<p>If you use the files as they sit, your finished product will look like this:</p>
<div id="attachment_670" class="wp-caption alignnone" style="width: 665px"><a href="http://www.gregledet.net/wp-content/uploads/2013/06/ticker.png"><img class="wp-image-670 " alt="Mt. Gox Ticker" src="http://www.gregledet.net/wp-content/uploads/2013/06/ticker.png" width="655" height="491" /></a><p class="wp-caption-text">Mt. Gox Ticker</p></div>
<p>Once you have the files in the lcdscreen directory, you run the following command:</p>
<p>pi@raspberrypi ~/lcdscreen $ <strong>nohup ./ticker.sh &amp;</strong></p>
<p>This will allow you to run the ticker.sh script in the background. Ticker.sh calls ticker.py to get the info. Keep in mind that you have to be connected to the internet because it connects to <a title="Mt. Gox Data" href="http://data.mtgox.com/api/1/BTCUSD/ticker" target="_blank">Mt. Gox</a> in order to pull the pricing info.</p>
<p><strong>Step 3: Profit?</strong></p>
<p>That's all there is to setting this thing up. **Note:** You may need to copy the provided `99-lcdsysinfo.rules` file into`/etc/udev/rules.d/` in order to grant pylcdsysinfo permission to claim the device without running as root. If you're still having issues, leave a comment below and I'll do what I can to help you out.</p>
<p>EDIT: I have added Litecoin as well. <a title="Litecoin python" href="http://www.gregledet.net/ticker/litecoin.py">You can download the python file that shows both Litecoin and Bitcoin here</a>. If you would like to have both the Bitcoin screen and the Litecoin screen go through the rotation, add it to the ticker.sh file. You can do this with however many things you want to add to the rotation. Change the "sleep 60" to the number of seconds you want to take between screens. It would look like this:</p>
<pre>#!/bin/bash
while true
do
 /home/pi/lcdscreen/ticker.py
 sleep 60
 /home/pi/lcdscreen/litecoin.py
 sleep 60
done</pre>
<p><a href="http://www.gregledet.net/wp-content/uploads/2013/06/litecoin.png"><img class="wp-image-683 alignleft" alt="litecoin" src="http://www.gregledet.net/wp-content/uploads/2013/06/litecoin.png" width="368" height="277" /></a></p>
<p>If you feel like it, feel free to leave a donation: 14Tkp7U4UArLaKTB6g95xvgHoQNUtWvcy7</p>
<p>Stig's donations for the original code: 1CG67w37G5mte1bSiveKvXqk27buPn67KR</p>
<p>Litecoin Donations: LKiWx5V8NWJgAZFSMAuD6EhFSsrmeYquGQ</p>
<p style="text-align: center;"> <script type="text/javascript"><!--
google_ad_client = "pub-7181617996474576";
google_ad_slot = "4296809367";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=668</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows IP conflict when there is no conflict</title>
		<link>http://www.gregledet.net/?p=662</link>
		<comments>http://www.gregledet.net/?p=662#comments</comments>
		<pubDate>Thu, 21 Feb 2013 00:37:17 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=662</guid>
		<description><![CDATA[Just had an interesting problem with a customer that seems a bit obscure, so I figured I would write it down to help someone else.  All of the other solutions to this issue focus solely on there being a problem on the Windows side, which may not necessarily be the case. Situation: customer is setting [...]]]></description>
				<content:encoded><![CDATA[<p>Just had an interesting problem with a customer that seems a bit obscure, so I figured I would write it down to help someone else.  All of the other solutions to this issue focus solely on there being a problem on the Windows side, which may not necessarily be the case.</p>
<div>
<p>Situation: customer is setting up a Windows 2008 R2 server in a VMware cluster, on a VLAN that is sitting behind a firewall. The firewall is is the gateway for the VLAN (say 192.168.34.1). When configuring the network interface on the server, picking ANY IP address in the 192.168.34.0/24 network results in the error message “Windows had detected an IP address conflict”. This happens even if there are no other devices on the VLAN aside from the firewall.</p>
<p>The issue? There was a static (identity) NAT entry in the Cisco ASA firewall for 192.168.34.0/24. By default, Cisco firewalls will proxy ARP for NAT entries.</p>
<ul>
<li>(8.3(1), 8.3(2), and 8.4(1)) The default behavior for identity NAT has proxy ARP disabled. You cannot configure this setting.</li>
<li>(8.4(2) and later) The default behavior for identity NAT has proxy ARP enabled, matching other static NAT rules. You can disable proxy ARP if desired.</li>
</ul>
<p>This is desirable behavior for a firewall on the edge of the network because the upstream router needs to know where to send traffic for NAT’ed hosts. For internal firewalls this can cause issues, especially with 8.4 code where you need to setup identity NAT to exempt devices from NAT.</p>
<p>The solution? Add “no-proxy-arp” to the end of your identity NAT statements:<br />
<code><br />
nat (inside,outside) source static obj_Internal obj_Internal <b>no-proxy-arp</b> route-lookup<br />
</code></p>
<p>The other (less desirable) solution is to disable the ARP-checking functionality in Windows, but this means it won’t be able to detect a legitimate IP conflict. You can do this through a quick registry hack: HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters, create a DWORD named “ArpRetryCount” with a value of “0?.</p>
<p><a href="http://knightfoo.wordpress.com/2013/02/20/windows-ip-conflict-when-there-is-no-conflict/" target="_blank"><br />
</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=662</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>iPhone 5, a few days later and where to trade in your old iPhone</title>
		<link>http://www.gregledet.net/?p=627</link>
		<comments>http://www.gregledet.net/?p=627#comments</comments>
		<pubDate>Thu, 27 Sep 2012 15:50:15 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Other stuff]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[battery]]></category>
		<category><![CDATA[battery life]]></category>
		<category><![CDATA[galaxy]]></category>
		<category><![CDATA[Greg Ledet]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iPhone 3GS]]></category>
		<category><![CDATA[iPhone 4]]></category>
		<category><![CDATA[iphone 4s]]></category>
		<category><![CDATA[iphone 5]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[passbook]]></category>
		<category><![CDATA[passsource.com]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[s3]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[side-by-side]]></category>
		<category><![CDATA[Sprint]]></category>
		<category><![CDATA[trade-in]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=627</guid>
		<description><![CDATA[I wanted to write a followup to my last post, My iPhone 5 Review. Now that I've had my hands on it for a few days and I've been able to put it through some various tests, I can update what I've already written. First off, I'm on iPhone 5 number 2. My first one [...]]]></description>
				<content:encoded><![CDATA[<p>I wanted to write a followup to <a title="My iPhone 5 Review" href="http://www.gregledet.net/?p=622">my last post, My iPhone 5 Review</a>. Now that I've had my hands on it for a few days and I've been able to put it through some various tests, I can update what I've already written.</p>
<p>First off, I'm on iPhone 5 number 2. My first one had some issues with the <a href="http://www.cbsnews.com/8301-505124_162-57520538/more-iphone-5-problems-scuffed-out-of-the-box/">anodizing on the case having some scuffs and scratches out the box</a>. I brought it back on Monday and luckily they had one in stock to trade out for me.  Since then, I've have 3 days to play around with the new one, plus 2 days with the old one. So far, this is what I've seen (in addition to the first post).</p>
<ul>
<li>The battery life isn't as good as the 4S. I've got a <a href="http://en.wikipedia.org/wiki/Femtocell">femtocell</a> that sits in my living room, a mere 15 feet from me, so you can't tell me that it's the <a href="http://www.nbcnews.com/technology/gadgetbox/how-does-iphone-5-battery-life-stack-1B6102050">battery life issues due to poor cell signal</a> that other people have seen.</li>
<li>Passbook, although I praised it in my last post, doesn't work worth a shit. Granted, I've only tried to use it at a few places, but none of them have worked. That may be an issue with Passsource.com, the site that I used to create the passbook cards, but either way, it still doesn't work well.</li>
<li>The headphone jack being moved to the bottom kinda sucks because I use a dash mount for my phone. Nearly all dash mounts are going to cover the bottom headphone jack.</li>
<li>iMessages is the greatest thing since sliced bread. I love the fact that I can send texts from my MacBook Pro or iPad and everything shows up on the phone too. If I send from my MBP, all the information shows up on the phone and the iPad, so I can continue a conversation regardless of what's in my hand. I've wanted this feature forever, and it is easily the one I use most (This is an iOS 6 Feature).</li>
<li>The panoramic pictures can get a bit wonky if you don't have a steady hand.</li>
<li>Apple Maps sucks. I've used the turn-by-turn directions a few times and every single time, the route was different than the TomTom that was next to it. I find this weird because TomTom provided the data for it. One time, it tried to send me somewhere that wasn't even close to my actual destination.</li>
<li>The cable. Yes, I know I said I was a fan of the new doc connector, but it has come out that Apple has installed a verification chip in the new cables, so you won't be able to buy cheep cables anymore. This sucks because I've already sold 100 of them on eBay and I've had to process 10 returns already. Those will charge, but won't move any data. Also, the USB side of the cable (on the OEM ones) has a tendency to get in the USB port. They are VERY tight and could take some force to remove.</li>
<li>There's a bit of chromatic aberration in the camera that causes pictures to have a purple tint to them. This is actually quite normal in small cameras and isn't extremely noticeable until you load it into Photoshop and look at the color levels.</li>
</ul>
<p>That's pretty much all my complaints about it. Also, if you're looking into getting one, you'll find the prices that different places are paying for trade-ins below. Amazon is by far the best bet for guaranteed money. That's who I'm using!</p>
<p>&nbsp;</p>
<table id="priceguide" width="694">
<tbody>
<tr>
<td class="pg-cat-hd" width="200">
<div class="article-img"><img src="http://photos.appleinsider.com/price_guide/iphone3gsti.jpg" alt="Macbook Air" /></div>
<div>iPhone 3GS</div>
</td>
<td class="pg-hd-top" width="68"><a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2F%23&amp;tag=reality&amp;linkCode=ur2&amp;camp=1789&amp;creative=390957"><img src="http://photos.appleinsider.com/price_guide/pg_amazon.png" alt="Amazon" /></a></td>
<td class="pg-hd-top" width="74">
<div class="article-img"><img src="http://photos.appleinsider.com/price_guide/pg_nextworth.jpg" alt="NextWorth" /></div>
<p>&nbsp;</td>
<td class="pg-hd-top" width="83">
<div class="article-img"><img src="http://photos.appleinsider.com/price_guide/pg_ebay.jpg" alt="eBay" /></div>
<p>&nbsp;</td>
<td class="pg-hd-top" width="82">
<div class="article-img"><img src="http://photos.appleinsider.com/price_guide/pg_usell.jpg" alt="usell" /></div>
<p>&nbsp;</td>
<td class="pg-hd-top" width="72">
<div class="article-img"><img src="http://photos.appleinsider.com/price_guide/pg_gazelle.jpg" alt="Gazelle" /></div>
<p>&nbsp;</td>
</tr>
<tr class="model">
<td class="pg-model" width="350">8GB (Black)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLV50E&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$85.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$38.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$105.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$66.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$51.00</a></td>
</tr>
<tr class="model">
<td class="pg-model" width="350">8GB (White)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLV572&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$85.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$38.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$105.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$66.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$51.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">16GB (Black)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLV5AY&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$110.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$49.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A%2F%2Finstantsale.ebay.com%2F%3Fsearch%3DiPhone">$110.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$70.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$71.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">16GB (White)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLYBJQ&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$110.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$49.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$110.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$70.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$71.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (Black)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLV5K4&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$125.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$55.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$115.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$73.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$78.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (White)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLYBL4&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$125.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$55.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$115.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$73.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$78.00</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td class="pg-cat-hd" colspan="6">
<div class="article-img"><img src="http://photos.appleinsider.com/price_guide/iphone5ti.jpg" alt="" /></div>
<div>iPhone 4</div>
</td>
</tr>
<tr class="model">
<td class="pg-model">8GB (Black, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074R0TOE&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$195.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$140.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$200.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$142.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$149.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">8GB (Black, Sprint)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074SQGRC&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$195.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$121.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A%2F%2Finstantsale.ebay.com%2F%3Fsearch%3DiPhone">$170.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$129.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$130.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">8GB (Black, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074R0Z3O&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$200.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$121.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A%2F%2Finstantsale.ebay.com%2F%3Fsearch%3DiPhone">$170.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$133.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$130.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">8GB (White, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074R1D0S&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$200.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$140.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$200.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$125.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$149.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">8GB (White, Sprint)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074SQUBY&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$195.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$121.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A%2F%2Finstantsale.ebay.com%2F%3Fsearch%3DiPhone">$170.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$99.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$130.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">8GB (White, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074R1IP8&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$205.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$121.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A%2F%2Finstantsale.ebay.com%2F%3Fsearch%3DiPhone">$170.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$120.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$130.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">16GB (Black, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLV5PE&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$230.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$170.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$170.76</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$161.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$175.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">16GB (Black, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLV5UE&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$230.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$126.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$190.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$146.05</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$155.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">16GB (White, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLYBMI&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$250.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$170.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$170.76</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$141.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$175.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">16GB (White, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLYBQ4&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$250.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$126.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$190.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$140.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$155.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (Black, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLV5SG&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$250.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$175.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$200.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$166.75</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$235.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (Black, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLV5VS&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$250.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$128.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$200.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$192.50</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$165.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (White, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLYBO6&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$260.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$175.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$200.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$179.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$235.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (White, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B004ZLYBRI&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$270.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$128.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$200.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$179.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$165.00</a></td>
</tr>
<tr>
<td class="pg-cat-hd" colspan="6">
<div class="article-img"><img src="http://photos.appleinsider.com/price_guide/iphone5ti.jpg" alt="" /></div>
<div>iPhone 4S</div>
</td>
</tr>
<tr class="model">
<td class="pg-model">16GB (Black, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B005SSAXSI&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$370.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$273.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$300.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$278.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$290.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">16GB (Black, Sprint)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074R14TI&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$365.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$235.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$274.40</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$268.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$250.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">16GB (Black, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074R1PI8&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$370.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$235.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$274.40</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$268.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$250.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">16GB (White, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B005SSB0YO&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$375.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$273.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$300.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$278.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$290.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">16GB (White, Sprint)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074RE1Z2&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$365.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$235.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$274.40</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$268.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$250.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">16GB (White, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074REBX4&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$400.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$235.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$274.40</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$268.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$250.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (Black, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B005SSB4NG&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$395.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$275.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$308.70</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$278.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$295.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (Black, Sprint)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074RENSM&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$425.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$250.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$294.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$278.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$275.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (Black, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074REVES&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$405.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$250.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$294.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$278.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$275.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (White, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B005SSB9RW&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$420.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$275.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$308.70</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$278.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$295.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (White, Sprint)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074REVF2&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$430.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$250.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$294.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$278.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$275.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">32GB (White, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074RF8LI&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$450.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$250.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$294.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$278.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$275.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">64GB (Black, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B005SSBCDI&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$460.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$325.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$400.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$350.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$400.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">64GB (Black, Sprint)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074RFN9U&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$460.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$270.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$325.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$312.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$310.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">64GB (Black, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074RFWMS&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$450.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$270.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$325.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$312.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$310.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">64GB (White, AT&amp;T)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B005SSBE7W&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$470.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$325.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$400.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$350.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$400.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">64GB (White, Sprint)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074RG6FA&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$450.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$270.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$325.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$312.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$310.00</a></td>
</tr>
<tr class="model">
<td class="pg-model">64GB (White, Verizon)</td>
<td class="pg-price gray"><a href="http://www.amazon.com/s/?_encoding=UTF8&amp;camp=1789&amp;creative=390957&amp;field-keywords=B0074RGE8E&amp;linkCode=ur2&amp;rd=1&amp;redirect=true&amp;tag=reality&amp;url=search-alias=electronics-tradein">$470.00</a></td>
<td class="pg-price"><a href="http://nextworth.extole.com/a/clk/33qXDf">$270.00</a></td>
<td class="pg-price"><a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&amp;pub=5574938621&amp;toolid=10001&amp;campid=5337160746&amp;customid=&amp;mpre=http%3A//instantsale.ebay.com/?search=iPhone">$325.00</a></td>
<td class="pg-price gray"><a href="http://usell.go2cloud.org/aff_c?offer_id=6&amp;aff_id=36">$312.00</a></td>
<td class="pg-price"><a href="http://www.linkconnector.com/traffic_affiliate.php?lc=088154024954003147">$310.00</a></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=627</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>My iPhone 5 Review</title>
		<link>http://www.gregledet.net/?p=622</link>
		<comments>http://www.gregledet.net/?p=622#comments</comments>
		<pubDate>Sun, 23 Sep 2012 02:47:28 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Other stuff]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[galaxy]]></category>
		<category><![CDATA[Greg Ledet]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone 4s]]></category>
		<category><![CDATA[iphone 5]]></category>
		<category><![CDATA[passbook]]></category>
		<category><![CDATA[passsource.com]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[s3]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[side-by-side]]></category>
		<category><![CDATA[Sprint]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=622</guid>
		<description><![CDATA[I give my review of the iPhone 5 after playing with it side-by-side with the iPhone 4S. ]]></description>
				<content:encoded><![CDATA[<p>(Jump to the tl;dr if you don't want to read the back story)</p>
<p>Today I got the new iPhone 5. I've been using the 4S for a little less than a year, and the 4S was the first iPhone that I had that actually made calls (the other ones were all programming platforms). I guess that's the price you pay when you're on Sprint.  Before the 4S was an HTC EVO 4G and prior to that, a Treo Pro along with a Blackberry back before that.  So I've had experience with iOS, Android, Windows Mobile, and Blackberry OS.</p>
<p>I decided to get the phone because I had an upgrade credit and I figured that despite the change in dock connector, I might as well get it over with now because Apple is going to be moving to Lightning on everything going forward. I'm going to have to do it sooner or later, might as well be sooner. I ordered my wife's 16GB on the first day of pre-orders and it arrived Friday afternoon. After toying with it for all of 30 seconds, I decided I needed to get one myself. After calling all over the place yesterday (launch day) and not finding a 64GB Black Sprint phone (quite a few places had white left), the Apple Store informed me they were getting a shipment in this morning. I showed up at 10am when they opened. Since I had already toyed with the phone yesterday, I had an idea of what it could do. My 4S was running iOS 6 already, so I had seen quite a few of the features available already.</p>
<p>tl;dr</p>
<p>I like the fact that it's longer. You really start to notice it after a while and you miss it when you're using apps that haven't been updated yet and are running in letterbox with the black bars on top and bottom. You don't really notice the bars because the black is good enough that it blends in.</p>
<p>Although I bitched and moaned about them changing the doc connecter and not making it any faster (USB 3 anyone?), I kinda like it. I thought it was going to be bigger... maybe the size of a standard USB in width, but it's only about half that. The reversible design is awesome too. The price of spare USB cables sucks.</p>
<p>It's weird to have an extra row of apps on the screen. You're so used to seeing 4 rows plus the bottom that 5 seems alien.</p>
<p>Speed: It's not faster. You may think it's faster, it may feel faster, but I had the 5 and 4S side-by-side and ran some tests. Opening apps, playing music, surfing the net... It's not any faster. Granted, if you're on LTE, your surfing will be faster than 3G, but the apps open at the same speed. That being said, it feels faster for some reason. I'm going to go with placebo effect.</p>
<p>It's lighter. You notice it. I put mine in an Otterbox before I left the mall, seeing as I dropped the phone before I ever made it out of the Apple store, but I hated it so it's out.</p>
<p>Roundest corners yet!</p>
<p>We're going to have to see what battery life is like. I've been dicking with it all day and the battery is at 50% still. Not bad.</p>
<p>That's about it. The new apps and features are pretty cool. I like Passbook because I hate carrying all those cards with me. You can create your own Passbook cards by going to <a title="Passsource.com" href="http://www.passsource.com">Passsource.com</a> and using their templates. I've got tons of them already, but the CVS card didn't work. They know about it and are looking for a fix.</p>
<p>All in all, it's your typical new Apple phone. Small, incremental changes from the last one, same outrageous price. If you get one, everyone's going to tell you how much better the Samsung Galaxy S3 is and how Android kicks Apple's ass, but they would have said that no matter what Apple did. I really wish they would have implemented NFC and went to Micro USB, but other than that, I'm happy with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=622</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Configuring a port analyzer (port mirror) on the Juniper EX switch</title>
		<link>http://www.gregledet.net/?p=612</link>
		<comments>http://www.gregledet.net/?p=612#comments</comments>
		<pubDate>Mon, 25 Jun 2012 23:13:52 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[analyzer]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[ethernet-switching-options]]></category>
		<category><![CDATA[EX Series]]></category>
		<category><![CDATA[EX2200]]></category>
		<category><![CDATA[EX3200]]></category>
		<category><![CDATA[EX3200-48T]]></category>
		<category><![CDATA[EX3300]]></category>
		<category><![CDATA[EX4200]]></category>
		<category><![CDATA[EX4200-24P]]></category>
		<category><![CDATA[EX4200-24T]]></category>
		<category><![CDATA[EX4200-48P]]></category>
		<category><![CDATA[EX4200-48T]]></category>
		<category><![CDATA[EX6200]]></category>
		<category><![CDATA[EX8200]]></category>
		<category><![CDATA[juniper]]></category>
		<category><![CDATA[Juniper Networks]]></category>
		<category><![CDATA[junos]]></category>
		<category><![CDATA[LACP]]></category>
		<category><![CDATA[mirror]]></category>
		<category><![CDATA[pcap]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[port analyzer]]></category>
		<category><![CDATA[port mirror]]></category>
		<category><![CDATA[tcpdump]]></category>
		<category><![CDATA[traffic capture]]></category>
		<category><![CDATA[wireshark]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=612</guid>
		<description><![CDATA[Configuring a port analyzer on the Juniper EX switch is rather easy and can be done with as little as 3 commands. Here, we show you how to do it.]]></description>
				<content:encoded><![CDATA[<p>Yes, it's been a while since my last update, so I'm going to make this one short and sweet.  Lately I started messing around with <a title="Plex - A complete media solution" href="http://www.plexapp.com" target="_blank">Plex Media Center/Server</a> and sharing my server with a couple of my friends.  While I do have a <a title="It's Fast!" href="http://www.speedtest.net/result/2028951369.png" target="_blank">good bit of bandwidth</a> here at the house, my friends sure know how to suck that bandwidth dry. So, it's time to implement some traffic shaping here at the house.</p>
<p>In order to implement the traffic shaping, I need to know what the traffic looks like.  For me to shape it, I need to know what it looks like, so I'm going to setup an analyzer.  I have a specific media server that is separate from my lab rack. It's plugged into a little Cisco gigabit switch that has an LACP Lag bundle going back to my core EX3200-48T. To setup an analyzer is very simple...in fact, it's only 3 commands.</p>
<blockquote>
<pre><code>set ethernet-switching options analyzer plex–monitor input ingress interface ae0.0 set ethernet-switching options analyzer plex–monitor input egress interface ae0.0 set ethernet-switching options analyzer plex–monitor output interface xe-0/0/45.0</code></pre>
</blockquote>
<p>That's it. Now, let me explain what I did there.</p>
<p>To configure an analyzer called "plex-monitor" and specify the input (source) interfaces and the output interface, I need to configure the interface connected to my media server as input interfaces for the port-mirror analyzer. I want to see both ingress and egress traffic, so I tell it to do both.</p>
<blockquote>
<pre>[edit ethernet-switching-options]
user@switch# set analyzer plex-monitor input ingress interface ae0.0
user@switch# set analyzer plex-monitor input egress interface ae0.0</pre>
</blockquote>
<p><strong></strong>Now, I configure the output analyzer interface for the analyzer. This will be the destination interface for the mirrored packets:</p>
<div id="jd0e134" dir="ltr">
<blockquote>
<pre dir="ltr"><code>[edit ethernet-switching-options] user@switch# set analyzer plex-monitor <a href="http://www.juniper.net/techpubs/en_US/junos11.1/topics/reference/configuration-statement/output-edit-ethernet-switching-options-qfx-series.html">output</a> interface ge-0/0/45.0</code></pre>
</blockquote>
</div>
<p dir="ltr">That's it. Now, all the traffic going to that lag bundle (the server is the only thing plugged into that switch) will be mirrored to port ge-0/0/45. I can plug my Wireshark box into that port, get a good capture of the traffic, and set my traffic shaping accordingly.  Can you guess what my next post is going to be about? <img src='http://www.gregledet.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-7181617996474576";
google_ad_slot = "4296809367";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=612</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>New App! Square Fee Calculator</title>
		<link>http://www.gregledet.net/?p=607</link>
		<comments>http://www.gregledet.net/?p=607#comments</comments>
		<pubDate>Thu, 09 Feb 2012 20:43:01 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Other stuff]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[calc]]></category>
		<category><![CDATA[calculator]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[credit]]></category>
		<category><![CDATA[credit card]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[Etsy]]></category>
		<category><![CDATA[fee calculator]]></category>
		<category><![CDATA[fees]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[save money]]></category>
		<category><![CDATA[Square]]></category>
		<category><![CDATA[Square Up]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=607</guid>
		<description><![CDATA[I recently signed up for the Square service to accept credit cards on my iPhone. They have two different ways of charging fees: 2.75% per transaction when you swipe the card using their reader or 3.5% + %0.15 per transaction if you enter the card number manually. Since I've already written mobile fee calculators for [...]]]></description>
				<content:encoded><![CDATA[<p>I recently signed up for the <a title="Square - Accept credit cards!" href="https://squareup.com/" target="_blank">Square</a> service to accept credit cards on my iPhone. They have two different ways of charging fees: 2.75% per transaction when you swipe the card using their reader or 3.5% + %0.15 per transaction if you enter the card number manually. Since I've already written mobile fee calculators for both <a title="PayPay Fee Calculator" href="http://www.gregledet.net/ppfcm.html" target="_blank">PayPal</a> and <a title="Etsy Fee Calculator" href="http://www.gregledet.net/efcm.html" target="_blank">Etsy</a>, I decided to use the same code and make one for <a title="Square Fee Calculator" href="http://www.gregledet.net/square.html" target="_blank">Square</a>.  All 3 are designed to fit perfectly on an iPhone screen and since they are very lightweight, they run pretty quick.  If you use any of these services, these calculators will come in very handy!</p>
<p><a title="PayPal Fee Calculator Mobile" href="http://www.gregledet.net/ppfcm.html" target="_blank">PayPal Fee Calculator</a><br />
<a title="Etsy Fee Calculator Mobile" href="http://www.gregledet.net/efcm.html" target="_blank">Etsy Fee Calculator</a><br />
<a title="Square Fee Calculator Mobile" href="http://www.gregledet.net/square.html" target="_blank">Square Fee Calculator </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=607</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>QoS issues on Cisco 2960&#8242;s. (High CPU Utilization)</title>
		<link>http://www.gregledet.net/?p=594</link>
		<comments>http://www.gregledet.net/?p=594#comments</comments>
		<pubDate>Sat, 09 Jul 2011 13:15:52 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[2960G]]></category>
		<category><![CDATA[2960S]]></category>
		<category><![CDATA[Bug]]></category>
		<category><![CDATA[call]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Cisco Bug Toolkit]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[CSCO]]></category>
		<category><![CDATA[CSCtg86211]]></category>
		<category><![CDATA[dropped packets]]></category>
		<category><![CDATA[Hulc]]></category>
		<category><![CDATA[jitter]]></category>
		<category><![CDATA[packet loss]]></category>
		<category><![CDATA[poor]]></category>
		<category><![CDATA[qos]]></category>
		<category><![CDATA[quality]]></category>
		<category><![CDATA[TAC]]></category>
		<category><![CDATA[toolkit]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[VoIP]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=594</guid>
		<description><![CDATA[Recently I've run into two clients that were issues with the Cisco 2960G and 2960S switches.  Both clients are using PoE versions of the switch for VoIP applications.  They were noticing jitter, packet loss and poor call quality, even though QoS is configured on the switch.  After a lot of troubleshooting on the voice side [...]]]></description>
				<content:encoded><![CDATA[<p>Recently I've run into two clients that were issues with the Cisco 2960G and 2960S switches.  Both clients are using PoE versions of the switch for VoIP applications.  They were noticing jitter, packet loss and poor call quality, even though QoS is configured on the switch.  After a lot of troubleshooting on the voice side of the house, they came to me to see if I could find anything going on.  In digging around in the first customer's network, I noticed that the CLI was pretty slow and did a quick "show processes cpu" and saw that the cpu utilization was around 80%.  By sorting the processes, I saw that the Hulc LED process was taking up about 15%.  A quick search of the Cisco Bug Toolkit brought up <a href="http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&amp;bugId=CSCtg86211">Bug ID CSCtg86211</a> (you need a CCO account to view), even though that's not 100% correct.  It's the only one that explained what's going on.</p>
<p>I had the client open a TAC case and TAC wanted to fight with the client, telling them that the high CPU shouldn't have any effect on the switch performance (really!).  I suggested that the client upgrade the switches to the latest version of IOS and once that was done, all the voice quality issues disappeared.  Total CPU utilization dropped to below 20%, calls cleared up, everything was beautiful.</p>
<p>Last week, I got an email from one of our project managers asking if I could look into an issue that another client was having.  If I hadn't known that this was a different client, I would have thought that she had cut and pasted the exact problems that the first client was having.  When I found out that they were using 2960's, I immediately thought of this and sent the client a copy of thev bug report and told him to open a TAC case.  This is the email I received from him:</p>
<blockquote><p>I tested the CPU Utilization on all of our Cisco 2960Ss and they ranged between 68-99%.  I have a test switch on the bench with nothing connected and it was running at 75%.  I updated it with the new code and it dropped to the 20-35 % range.  I am going to update some additional switches before I call Cisco.  The first question they will probably ask is are you running the latest code.</p></blockquote>
<p>He's right... Cisco will be wanting to know that.  I know that once the new IOS is on the switch, it'll solve his problems.  I just wanted to put this out there so you guys don't have to do all the searching that I did when/if you run across the same issues on your end.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=594</wfw:commentRss>
		<slash:comments>80</slash:comments>
		</item>
		<item>
		<title>Xbox 360 Open NAT with Cisco ASA 8.3 or newer</title>
		<link>http://www.gregledet.net/?p=589</link>
		<comments>http://www.gregledet.net/?p=589#comments</comments>
		<pubDate>Sun, 08 May 2011 17:01:54 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[360]]></category>
		<category><![CDATA[8.3]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[forward]]></category>
		<category><![CDATA[nat]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[open nat]]></category>
		<category><![CDATA[PIX]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[voice]]></category>
		<category><![CDATA[xbox]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=589</guid>
		<description><![CDATA[A quick tutorial on "Open NAT" for the Xbox 360 via the Cisco ASA running 8.3 or newer.]]></description>
				<content:encoded><![CDATA[<p>I'm just getting on the Xbox 360 bandwagon here, so forgive this post being "late" for most people.  But, if you're like me and you're just getting your console, you may have noticed that not everything is going to work properly.  To fix this is real simple, and it just following <a title="Port Forwarding on the Cisco ASA in 8.3 from the CLI made easy" href="http://www.gregledet.net/?p=529" target="_blank">the instructions I posted a while back</a> for port forwarding on 8.3.  You'll need to start this off by giving your Xbox 360 a static IP address.  This can be done under settings.  You'll also need the 3 ports that you're going to have to forward.  That's tcp:3074, udp:3074 and udp:88.</p>
<p>Step 1: Create a new object group for your Xbox 360.</p>
<blockquote>
<pre>asa5505(config)# object network xbox</pre>
</blockquote>
<p>Step 2: Add the static IP of the Xbox to the network group.</p>
<blockquote>
<pre>asa5505(config-network-object)# host 10.11.12.13</pre>
</blockquote>
<p>Step 3: Forward the ports via the NAT command.</p>
<blockquote>
<pre>asa5505(config-network-object)# nat (inside,outside) static interface service tcp 3074 3074
asa5505(config-network-object)# nat (inside,outside) static interface service udp 3074 3074
asa5505(config-network-object)# nat (inside,outside) static interface service udp 88 88</pre>
</blockquote>
<p>Step 4: Exit back to the root and add the access lists</p>
<blockquote>
<pre>asa5505(config)# access-list outside_access_in extended permit tcp any object xbox eq 3074
asa5505(config)# access-list outside_access_in extended permit udp any object xbox eq 3074
asa5505(config)# access-list outside_access_in extended permit udp any object xbox eq 88</pre>
</blockquote>
<p>That's it!  If need to know exactly what's going on here, please <a title="Port Forwarding on the Cisco ASA in 8.3 from the CLI made easy" href="http://www.gregledet.net/?p=529" target="_blank">check my previous post</a> on port forwarding.  If you do your work through the ASDM, just use my post on <a title="Port Forwarding on the Cisco ASA in 8.3 from the ASDM made easy" href="http://www.gregledet.net/?p=537" target="_blank">port forwarding via the ASDM</a> and make the necessary changes to ports, IP addresses and names.  Now you just need to go to your Xbox 360 and retest the connection.  You'll see that no longer does it say that you are using restricted NAT!  Also, if you're having issues with voice over Xbox Live, this should solve those problems.</p>
<p>EDIT 7/12/2011</p>
<p>After further review, I realize that I'm an idiot.  You can't add more than one NAT statement to a network object.  Create 3 seperate objects (I called them xbox1, xbox2 and xbox3) and add one NAT statement per object.  Once you do that, adjust the ACL accordingly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=589</wfw:commentRss>
		<slash:comments>44</slash:comments>
		</item>
		<item>
		<title>Preparing for my JNCIA-EX</title>
		<link>http://www.gregledet.net/?p=585</link>
		<comments>http://www.gregledet.net/?p=585#comments</comments>
		<pubDate>Sun, 10 Oct 2010 00:29:26 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Other stuff]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=585</guid>
		<description><![CDATA[I think I'll have a little departure from my regular how-to's today. As you can see from the title of this post, I'm preparing to take my JNCIA-EX, or Juniper Networks Certified Internet Associate - Enterprise Switching.  I'm sure you all know that I'm a born and bread Cisco kid. Hell, www.ciscokid.net actually points to [...]]]></description>
				<content:encoded><![CDATA[<p>I think I'll have a little departure from my regular how-to's today. As you can see from the title of this post, I'm preparing to take my JNCIA-EX, or Juniper Networks Certified Internet Associate - Enterprise Switching.  I'm sure you all know that I'm a born and bread Cisco kid. Hell, <a href="http://www.ciscokid.net" target="_self">www.ciscokid.net</a> actually points to this site!  But I've been spending a lot of time working on Juniper gear lately and it's in my best interest to get some Juniper certs under my belt.  Part of my preparation has been trying to stay out of my Cisco lab for a little while.  I find that when I spend a lot of time playing with the Cisco gear, I instinctively try to use Cisco commands in a Juniper environment.  So, if I don't get into the Cisco stuff for a little while, I'll train myself to think like a Juniper engineer!</p>
<p>Juniper has been a real pain in my ass lately.  I absolutely love their hardware.  It's some of the fastest gear I've ever worked on and I've never seen the kind of speed to the desktop on Cisco as I have seen on Juniper.  It's just that I've spent so much of my career working on one thing that being thrown into something else is not fun.  I thought it would be at first; learning something new would give me a challenge and be interesting.  Well, it's hasn't been such a great honeymoon phase.  The environment I'm working has some issues, and that's about all I'm going to say about it.  I'll be going to Herndon, VA for a week to get the training I need to try to solve some of these issues, not to mention another week to attend a data center design class, and I hope that this training will bring me to the level that I can help these people.</p>
<p>I really wish I could speak my mind here and tell you guys about the problems I'm seeing and maybe get some ideas from my readers on how to fix some of this stuff, but I can't.  I can't let out any info on the network and I won't talk good or bad about any particular hardware in public.  Maybe one day I'll be able to put up a big post with a Visio to see if any of you guys can solve a problem.  Hell, I just may create something and give away a prize to the first person to get the correct answer.  If anyone has an idea, be sure to let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=585</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>ASA 8.3(2) is out, as is ASDM 6.3(3)</title>
		<link>http://www.gregledet.net/?p=571</link>
		<comments>http://www.gregledet.net/?p=571#comments</comments>
		<pubDate>Fri, 13 Aug 2010 04:55:29 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[6.3(3)]]></category>
		<category><![CDATA[8.3(1)]]></category>
		<category><![CDATA[8.3(2)]]></category>
		<category><![CDATA[aaa]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[ASA 5505]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCSP]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[config t]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[How To's]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[ip sec]]></category>
		<category><![CDATA[PIX]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[tunnel]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=571</guid>
		<description><![CDATA[I got off my ass tonight and decided to update the ASA (yes, my licensing is correct!).  I haven't had a chance to play with it a while lot (you can see it's only been up for 3 and a half hours), but it seems pretty cool.  I sat down and read the release notes [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.gregledet.net/wp-content/uploads/2010/08/ScreenShot.png"><img class="size-full wp-image-572 alignleft" title="ScreenShot" src="http://www.gregledet.net/wp-content/uploads/2010/08/ScreenShot.png" alt="" width="549" height="160" /></a></p>
<p>I got off my ass tonight and decided to update the ASA (yes, my  licensing is correct!).  I haven't had a chance to play with it a while  lot (you can see it's only been up for 3 and a half hours), but it seems  pretty cool.  I sat down and read the release notes for 8.3(2) and there's a few things you should know.  First off, you're going to need more memory.  Well, if you look at mine, you can see I've maxed out what the thing will accept, so I'm perfectly safe; but chances are, you're not.  <a href="http://www.cisco.com/en/US/docs/security/asa/asa83/release/notes/asarn83.html#wp321918" target="_blank">Cisco has a nice table</a> to let you know what your memory needs are.  In fact, if you <a href="http://www.cisco.com/en/US/docs/security/asa/asa83/release/notes/asarn83.html" target="_blank">head over to this web page</a>, you check out the release notes for both 8.3(1) and 8.3(2).  You'll see the new features as well as caveats fixed with these versions.  Now that I have informed all you guys about the upgrade, I'm going to start playing with it for a little bit before the sun comes up and kills me.  Dammit!  It's already 1am!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=571</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>How to enable AHCI/RAID mode in Windows 7 without reinstalling</title>
		<link>http://www.gregledet.net/?p=569</link>
		<comments>http://www.gregledet.net/?p=569#comments</comments>
		<pubDate>Thu, 05 Aug 2010 04:07:30 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Other stuff]]></category>
		<category><![CDATA[7]]></category>
		<category><![CDATA[AHCI]]></category>
		<category><![CDATA[BIOS]]></category>
		<category><![CDATA[BSOD]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[Core i7]]></category>
		<category><![CDATA[FX]]></category>
		<category><![CDATA[FX6840-23]]></category>
		<category><![CDATA[gateway]]></category>
		<category><![CDATA[Gateway FX]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[motherboard]]></category>
		<category><![CDATA[RAID]]></category>
		<category><![CDATA[RAID 0]]></category>
		<category><![CDATA[regedit]]></category>
		<category><![CDATA[SATA]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[x64]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=569</guid>
		<description><![CDATA[I recently got a wild hair up my ass to add a RAID to my desktop.  My desktop is a Gateway FX6840-23 and it came with a 1TB drive.  I bought an identical drive and thought that I'd put then in RAID 0 for the increased performance, seeing as my Experience Index was only 5.9 [...]]]></description>
				<content:encoded><![CDATA[<p>I recently got a wild hair up my ass to add a RAID to my desktop.  My desktop is a Gateway FX6840-23 and it came with a 1TB drive.  I bought an identical drive and thought that I'd put then in RAID 0 for the increased performance, seeing as my Experience Index was only 5.9 due to a slow HDD (all other indexes were in the mid-7's, and the drive is a 7200 RPM unit).</p>
<p>Digging around the BIOS I saw that the SATA controller was using AHCI mode.  I cloned my current drive to another 1TB drive I had (yeah, I have 3 -1TB drives, a 500GB, and a 1.5 TB), rebooting into the BIOS and changed it to RAID.  After a reboot, I hit ctrl-I and entered the RAID utility.  I built the RAID and rebooted.  Well, to put it nicely, I got a BSOD. I tried various things for the next 3 hours, including using Windows 7's extended partition utility, doing a complete restore to factory on the extended partition, and everything.  After I did the restore, I saw that the HDD performance hadn't changed.</p>
<p>Well, I haven't messed with RAID before on a desktop, so this was a learning experience.  After some Google searches, I put the computer back in AHCI mode and booted to the clone.  This worked just fine.  I went to Gateway's website and downloaded the RAID drivers.</p>
<p>I noticed that the driver was named <strong>iaStorV.sys</strong>, so I did a search for it and found it already installed in the <strong>Windows\System32\Drivers</strong> folder.  I did a registry search for it and found it in <strong>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\iaStorV</strong>.  This made me happy!</p>
<p>Some more Googling later and I figured out that if <strong>I changed the REG_DWORD from 3 to 0</strong> that it would enable things to work.  I rebooted the computer, went back into the BIOS and changed the SATA controller to use RAID, pointed it to boot from the clone, and <strong>it booted right up</strong>! No BSOD, no hiccups, no nothing!</p>
<p>This should work going from IDE mode as well.  I tried to clone the clone to the RAID, but Acronis didn't like that too much, so I'm doing a full backup of the clone (I needed to do it anyway) and I'm going to try to restore it with the Acronis Resuce media.  It's already midnight, and this is one of those things that I'm not going to be able to put down until I'm done with it.  Oh well, I guess it's time to get back to work!  Good luck getting your stuff working!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=569</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>HTC EVO 4G, Froyo 2.2 Final release, Unrevoked3 and ROOT</title>
		<link>http://www.gregledet.net/?p=561</link>
		<comments>http://www.gregledet.net/?p=561#comments</comments>
		<pubDate>Wed, 04 Aug 2010 00:45:55 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[2.2]]></category>
		<category><![CDATA[4G]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[boot loader]]></category>
		<category><![CDATA[category 5]]></category>
		<category><![CDATA[clockwork]]></category>
		<category><![CDATA[Clockwork Mod]]></category>
		<category><![CDATA[EVO]]></category>
		<category><![CDATA[final]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[froyo]]></category>
		<category><![CDATA[froyo final]]></category>
		<category><![CDATA[Greg Ledet]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[netarchy]]></category>
		<category><![CDATA[Odexed]]></category>
		<category><![CDATA[ota]]></category>
		<category><![CDATA[over-the-air]]></category>
		<category><![CDATA[rezin8]]></category>
		<category><![CDATA[ROM]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[Sprint]]></category>
		<category><![CDATA[stock]]></category>
		<category><![CDATA[unrevoked]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=561</guid>
		<description><![CDATA[Sprint and HTC released Froyo today as an over-the-air update to all of you out there that haven't already rooted your phone.  Well, my EVO was rooted within the first 48 hours of me owning the phone.  I recently dropped back to the stock unrooted image only to use Unrevoked3 to root it again. By [...]]]></description>
				<content:encoded><![CDATA[<p>Sprint and HTC released Froyo today as an over-the-air update to all of you out there that haven't already rooted your phone.  Well, my EVO was rooted within the first 48 hours of me owning the phone.  I recently dropped back to the stock unrooted image only to use <a title="Unrevoked" href="http://www.unrevoked.com" target="_blank">Unrevoked3</a> to root it again.</p>
<p>By having a rooted phone, I can't get the Froyo update over the air, but I can still put it on my phone, and you can too.  Here's how to do it.</p>
<p>Step 0: I'm adding this late, but if you don't want to have to search for your apps again, check out <a title="AppBrain is AWESOME!" href="http://www.appbrain.com" target="_blank">AppBrain</a>.  Install it before the upgrade, sync your phone up with the website, create a new list on the website and copy all your apps to that as a backup.  After you are done with the upgrade, install AppBrain first and sync it back up.  All your apps will be there waiting for you.</p>
<p>Step 1: You need to have a phone rooted with <a href="http://www.unrevoked.com" target="_blank">Unrevoked3</a>.  That's the way I know how to go about it, so go <a href="http://www.unrevoked.com" target="_blank">root your phone with Unrevoked3</a> and come back.</p>
<p>Step 2: <a href="http://massmirror.com/7f191510efa40b999eec50b09e9dd116.html" target="_blank">Download the rooted Froyo image from here</a>. (Thanks netarchy!!!)</p>
<p>Step 3: Copy the .zip file to the root of your SD card on the phone.</p>
<p>Step 4: Power down the phone and reboot into the boot loader. To do this, make sure the power is off and hold the volume down button while holding down the power button.</p>
<p>Step 5: Once in the boot loader, use the volume rocker to navigate to RECOVERY. Select it by pressing the power button. This will bring you to Clockwork.</p>
<p>Step 6: From ClockworkMod Recovery, select " wipe data/factory reset".  Confirm it and do the reset.</p>
<p>Step 7: Select "install zip from sdcard", then "choose zip from sdcard".</p>
<p>Step 8: Navigate to and select "HTC-OTA-3.26.651.6-Final-Froyo-Rooted-Odexed-netarchy-signed.zip". Confirm the install.</p>
<p>Step 9: Once the install is done, navigate back to the top level of Clockwork and select "reboot system now".</p>
<p>And you're done!  You should now reboot into Froyo. You can verify this by going to Settings -&gt; About Phone -&gt; Software information.  You should see "Android Version 2.2" at the very top!</p>
<p>Once you have updated Froyo, you need to apply a couple of radio updates.  You do this the same way you installed the Froyo zip file.  After each install, reboot the phone and let it do a full reboot.  After it's rebooted, power down and boot into the boot loader to apply the other one.  Follow the instructions above (you don't have to wipe data for the radio updates) and you'll be just fine.  Here are those two files:</p>
<p><a id="link_6" title="Radio Update" href="http://qap.la/%7Enetarchy/Radio-2.15.00.07.28.zip" target="_blank">Radio update: 2.15.00.07.28</a><br />
<a id="link_7" title="Wimax update" href="http://qap.la/%7Enetarchy/Wimax26023.zip" target="_blank">Wimax Update 26023</a></p>
<p>Enjoy the speed of Froyo and have fun with your newly rooted phone! For the full thread on xda, <a href="http://forum.xda-developers.com/showthread.php?t=743352" target="_blank">click here</a>.</p>
<p>-Greg</p>
<p>Update: I've seen a HUGE spike in traffic in the last hour (that's to be expected) and I can see that a lot of you guys are doing the upgrade (I love <a title="Woopra" href="http://www.woopra.com" target="_blank">Woopra</a>).  Leave some comments below and let me know if everything ran OK for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=561</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Port Forwarding on the Cisco ASA in 8.3 from the ASDM made easy</title>
		<link>http://www.gregledet.net/?p=537</link>
		<comments>http://www.gregledet.net/?p=537#comments</comments>
		<pubDate>Tue, 03 Aug 2010 23:00:13 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[6.3]]></category>
		<category><![CDATA[6.3(1)]]></category>
		<category><![CDATA[8.3]]></category>
		<category><![CDATA[8.3(1)]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[ASA 5505]]></category>
		<category><![CDATA[ASDM]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNA - Security]]></category>
		<category><![CDATA[CCNP]]></category>
		<category><![CDATA[CCSP]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[config t]]></category>
		<category><![CDATA[exec mode]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[forward]]></category>
		<category><![CDATA[forwarding]]></category>
		<category><![CDATA[global]]></category>
		<category><![CDATA[Greg Ledet]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[juniper]]></category>
		<category><![CDATA[junos]]></category>
		<category><![CDATA[nat]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[network object]]></category>
		<category><![CDATA[NX-OS]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[object group]]></category>
		<category><![CDATA[pat]]></category>
		<category><![CDATA[PIX]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[port forward]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[routing]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[static]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[switching]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=537</guid>
		<description><![CDATA[In my last post I taught you how to forward a port on the ASA 5505 running version 8.3 from the CLI.  Some of you prefer to use the ASDM to do you changes, so I guess I'll show you how to do it from there.  The ASDM is a bit of a learning curve [...]]]></description>
				<content:encoded><![CDATA[<p><a title="Port Forwarding on the Cisco ASA in 8.3 from the CLI made easy" href="http://www.gregledet.net/?p=529" target="_self">In my last post</a> I taught you how to forward a port on the ASA 5505 running version 8.3 from the CLI.  Some of you prefer to use the ASDM to do you changes, so I guess I'll show you how to do it from there.  The ASDM is a bit of a learning curve for someone that's used to the CLI, and most CLI guys hate a GUI with a great passion.  I can go either way.  I use the ASDM to make some changes simply because I want to learn it and there's some guys coming into the field today that were taught on the GUI rather than a command line.</p>
<p>In this lesson I'm using ASDM version 6.3(1) and ASA version 8.3(1).  Since we added a  web server in the last post, let's make this one an FTP server.  The FTP server's IP is the same as the web server, 10.9.8.7/24 and we're running over the standard FTP port, 21.</p>
<p>First off, we want to start up the ASDM and connect to the ASA.  Once there, click on the <a href="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm1.png"><img class="alignnone size-full wp-image-538" title="Configuration" src="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm1.png" alt="" width="101" height="26" /></a> button at the top of the screen, then the <a href="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm2.png"><img class="alignnone size-full wp-image-539" title="asa-asdm2" src="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm2.png" alt="" width="82" height="28" /></a> button near the bottom left, and finally select <a href="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm3.png"><img class="alignnone size-full wp-image-540" title="asa-asdm3" src="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm3.png" alt="" width="82" height="17" /></a>near the top left.  You'll now be at a screen that looks something like this:</p>
<div id="attachment_542" class="wp-caption aligncenter" style="width: 528px"><a href="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm4.png"><img class="size-large wp-image-542" title="asa-asdm4" src="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm4-1024x616.png" alt="" width="518" height="311" /></a><p class="wp-caption-text">Click for larger version</p></div>
<p>Now we need to create a new object, so click on "Add" under Addresses, then "Network Object".<br />
<a href="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm5.png"><img class="aligncenter size-full wp-image-546" title="asa-asdm5" src="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm5.png" alt="" width="298" height="174" /></a>Now we need to fill out our new window.  Once you fill out the name, IP address and description, you need to drop down the NAT box and fill it out.  Click the "Add Automatic Address Translation Rules" box, leave the type as "static" and set the translated address as the outside interface.<br />
<a href="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm6.png"><img class="aligncenter size-full wp-image-547" title="asa-asdm6" src="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm6.png" alt="" width="366" height="400" /></a>We now need to go to the Advanced menu from the Add Network Object window and setup the port forwarding.  The source will be inside, destination is outside.  Protocol in this instance is TCP and our port is 21, both real and mapped.<br />
<a href="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm7.png"><img class="aligncenter size-full wp-image-548" title="asa-asdm7" src="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm7.png" alt="" width="412" height="297" /></a>Click "OK" twice and your object will be created as well as the port forward.  Now we just need to add the access rule.  On the left side of the screen, just above the NAT Rules is your Access Rules. From there we want to click "Add" and "Access Rule".<br />
<a href="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm8.png"><img class="aligncenter size-full wp-image-550" title="asa-asdm8" src="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm8.png" alt="" width="273" height="231" /></a>We need to create the rule on the outside interface, coming from any IP to the FTPServer using FTP as the service.<br />
<a href="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm9.png"><img class="aligncenter size-full wp-image-551" title="asa-asdm9" src="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm9.png" alt="" width="540" height="340" /></a>Once you click OK, your rule is added.  You don't have to add a description like I did in the image above this one, I just did that for the hell of it.  When you click "Apply" at the bottom of the screen, the ASDM will issue the commands to the ASA.  I have preview turned on, so I can always see what commands are being sent to the device before they are actually sent.  If you followed all the steps above and you have preview turned on, you'll see the following:<br />
<a href="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm10.png"><img class="aligncenter size-full wp-image-552" title="asa-asdm10" src="http://www.gregledet.net/wp-content/uploads/2010/08/asa-asdm10.png" alt="" width="540" height="408" /></a>And you'll notice that those are the exact 4 commands that I gave in the last post about doing it from the CLI!  Now you can forward any port you want from either the CLI or the ASDM!</p>
<p>On a side note, I know a lot of guys hate the ASDM.  When I was writing this post and going through all of this I was kinda upset when I saw that I had 10 pictures for 4 lines of code.  The good thing about the ASDM is that you have everything right there at your disposal and you really don't need to know the vernacular of IOS.  The drawback is that it will take you longer to get things done at first, but once you get used to it, it can be just as fast.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=537</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>Port Forwarding on the Cisco ASA in 8.3 from the CLI made easy</title>
		<link>http://www.gregledet.net/?p=529</link>
		<comments>http://www.gregledet.net/?p=529#comments</comments>
		<pubDate>Tue, 03 Aug 2010 09:16:10 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[8.3]]></category>
		<category><![CDATA[8.3(1)]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[ASA 5505]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNA - Security]]></category>
		<category><![CDATA[CCNP]]></category>
		<category><![CDATA[CCSP]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[config t]]></category>
		<category><![CDATA[exec mode]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[forward]]></category>
		<category><![CDATA[forwarding]]></category>
		<category><![CDATA[global]]></category>
		<category><![CDATA[Greg Ledet]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[juniper]]></category>
		<category><![CDATA[junos]]></category>
		<category><![CDATA[nat]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[network object]]></category>
		<category><![CDATA[NX-OS]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[object group]]></category>
		<category><![CDATA[pat]]></category>
		<category><![CDATA[PIX]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[port forward]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[routing]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[static]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[switching]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=529</guid>
		<description><![CDATA[A quick how-to on forwarding ports on the Cisco Adaptive Security Appliance from the CLI using PIX/ASA OS 8.3(1).]]></description>
				<content:encoded><![CDATA[<p>So it's been a month and a half since I posted an update, and it's 4:15 am right now.  I can't sleep and I found out there's <a title="Shortest Path First" href="http://www.shortestpathfirst.net" target="_blank">another networking blog</a> out there using the same WP theme as me, so I figured I better put something up here since it was fresh in my mind.  Well, now that the niceties are out of the way, let's get to work.</p>
<p>I recently added an ASA 5505 to my home network at the edge.  Obviously, when I did, all of my port forwards went to hell because the ASA is now blocking everything.  I run a web server on one of my servers here and I like to be able to access it because I keep a lot of tech manuals and other stuff on there.  Well, I went about trying to set up port forwarding the old way and learned real quick that this pops up when I do:</p>
<blockquote><p>ERROR: This syntax of nat command has been deprecated.<br />
Please refer to "help nat" command for more details.</p></blockquote>
<p>Yeah, that sucks.  On the new version of the ASA OS, global has gone the way of the dodo.  I did a bunch of searches on Google to figure it out and everything I ran across was very hard to decipher.  That's why I'm writing this.  You can setup a port forward in 4 quick and easy steps.  Just change the things that are underlined to fit your network and you'll be just fine.</p>
<p>In this example, we want to be able to access a web server behind the firewall.  We'll assume you are using the standard HTTP port, the web server's internal IP address is 10.9.8.7/24, and that you at least know what you're doing enough to be configuring an ASA in the first place.  I'll give you the steps, then I'll explain.</p>
<p>Step 1: Create a new object group for you web server.</p>
<blockquote>
<pre>asa5505(config)# object network <span style="color: #ff0000;"><span style="text-decoration: underline;">Webserver</span></span></pre>
</blockquote>
<p>Step 2: Add the IP of the web server to the network group.</p>
<blockquote>
<pre>asa5505(config-network-object)# host <span style="text-decoration: underline;">10.9.8.7</span></pre>
</blockquote>
<p>Step 3: Forward the port via the NAT command.</p>
<blockquote>
<pre>asa5505(config-network-object)# nat (inside,outside) static interface service tcp www www</pre>
</blockquote>
<p>Step 4: Exit back to the root and add the access list</p>
<blockquote>
<pre> asa5505(config)# access-list outside_access_in permit tcp any object <span style="color: #ff0000;"><span style="text-decoration: underline;">Webserver</span></span> eq www</pre>
</blockquote>
<p>That's it!  Now, let's explain what's going on here.  Cisco has started moving more and more towards use of object groups in their configs.  It makes things easier, especially when you have a situation where you have 20 web servers behind the firewall and you want to add 1 more in.  Rather than having to rewrite a whole bunch of ACL's, you just add the IP of the new web server into the object group and everything is done for you.  After you create the object group (in this instance a network object, you can also create service objects), you add the IP of the specific object (or objects) that you want to point to.  So here our web server is 10.9.8.7.  If you want to send port 80 to more than 1 IP on your internal network, just add more IP's to that object group.</p>
<p>Now is the fun part.  While we're in the object group, we need to NAT port 80 only to that specific object group, hence you're still at "<em>asa5505(config-network-object)#</em>" prompt.  Now type "end" to get back to the regular config terminal and we need to open that port in the ACL.  Yes, www = 80.  You can type either one and you get the same result.  If I have to go through and explain NAT, how it works and why I enter in that specific command to forward the port, then there's a possibility that I'd need to send you an invoice for my time because we would be here for a while.</p>
<p>This works for ANY port forward.  If you want to RDP into a machine, simply replace port 80 (all those www's you see up there) with 3389.  There is one caveat.  You can only do one port forward per object group.  So let's say that our web server is also an FTP server and you want port 21 to forward as well as port 80.  You're going to have to create a whole new object group (object network FTPServer), put the same IP in the group (host 10.9.8.7), do the nat command again (nat (inside,outside) static interface service tcp ftp ftp), exit back to the root of config, and add the access list (access-list outside_access_in  permit tcp any object FTPServer eq ftp).</p>
<p>This should get you up and running with you port forwards in no time flat.  It is a bit of a pain in the ass to have to create a new object group for every port you want to forward, and maybe there's someone out there that's reading this right now thinking "dude, you don't have to create more than one group!  You can just do...".  Well, you need to enlighten the world with this knowledge and post it in the comments section.  And if you're too scared to do so, shoot me an email to greg(at)gregledet(dot)net.</p>
<p>I'd also like to thank <a title="Stefan Fouant" href="http://www.shortestpathfirst.net" target="_blank">Stefan Fouant</a> for an excellent class today on JUNOS Switching.  I learned a lot in his class and you can learn a lot from his website.  Check it out and tell him Greg sent ya!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=529</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>HTC EVO 4G &#8211; A week later</title>
		<link>http://www.gregledet.net/?p=522</link>
		<comments>http://www.gregledet.net/?p=522#comments</comments>
		<pubDate>Sun, 13 Jun 2010 14:16:07 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Other stuff]]></category>
		<category><![CDATA[4G]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[EVO]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[HTC EVO 4G]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[Sprint]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=522</guid>
		<description><![CDATA[I wanted to hold off writing my review of my new phone because I wanted to spend a week with it and learn all about it.  I got the HTC EVO 4G on launch day and I immediately fell in love with it. I'm not the only one either, because I ended up ordering my [...]]]></description>
				<content:encoded><![CDATA[<p>I wanted to hold off writing my review of my new phone because I wanted to spend a week with it and learn all about it.  I got the HTC EVO 4G on launch day and I immediately fell in love with it. I'm not the only one either, because I ended up ordering my wife one 2 days later.</p>
<p><a href="http://www.gregledet.net/wp-content/uploads/2010/06/evos.jpg"><img class="alignleft size-full wp-image-525" title="evos" src="http://www.gregledet.net/wp-content/uploads/2010/06/evos.jpg" alt="" width="400" height="300" /></a>So far the phone is amazing. Yes, I will admit that there is a bit of a battery life issue, but with a screen this size and the fact that you're going to spend every extra second playing with the damn thing, you're going to burn through some battery.  You can get 2 spare batteries and a charger on eBay for about $11, so it's no big deal to carry an extra in your pocket.</p>
<p>Android and HTC Sense are amazing.  With the 1Ghz Snapdragon processor, everything runs like a bat out of hell.  In fact, I can't say anything bad about the software on this phone.  It's very intuitive to use and you pick things up very quickly.  It took me all of 3 days to figure everything out, but I'm an experienced user.  When it only took my wife the same time to figure the phone out, I knew it wasn't just me.  The phone is that easy to use.</p>
<p>My wife told me "I've never been excited about a cell phone before, but I am out this".  I feel the same way.  Going from the Treo Pro to this is like going from a Yugo to a Ferrari.  It's that good.  The camera puts out some excellent pictures and now that Qik is up and running, the video calls are really good.  I've also tested video calling on Fring with <a title="JefTek" href="http://jeftek.com/" target="_blank">my friend Jef</a> and it seems to work great too.  Everything on this phone is snappy and beautiful.  From what I've seen about the specs on the new iPhone 4, the EVO 4G should kick it's ass in everything except resolution.</p>
<p>If you're on the fence about getting an EVO, I'd say go for it.  You won't be disappointed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=522</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Oil Spill ROV cameras</title>
		<link>http://www.gregledet.net/?p=520</link>
		<comments>http://www.gregledet.net/?p=520#comments</comments>
		<pubDate>Thu, 03 Jun 2010 20:56:46 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=520</guid>
		<description><![CDATA[I've put all the ROV cameras in one place. Click here to select which camera you want to watch. Click here to watch all 12 cameras on the same page.]]></description>
				<content:encoded><![CDATA[<p>I've put all the ROV cameras in one place.</p>
<p><a href="http://www.gregledet.net/oilcams.html" target="_self">Click here to select which camera you want to watch.</a></p>
<p><a href="http://www.gregledet.net/oilspill.html" target="_self">Click here to watch all 12 cameras on the same page.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=520</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>My pain is your gain: Installing Windows after Ubuntu and the joy of GRUB2</title>
		<link>http://www.gregledet.net/?p=516</link>
		<comments>http://www.gregledet.net/?p=516#comments</comments>
		<pubDate>Sat, 08 May 2010 04:01:19 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[fixboot]]></category>
		<category><![CDATA[fixmbr]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[grub 2]]></category>
		<category><![CDATA[grub2]]></category>
		<category><![CDATA[Install Windows after linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Live CD]]></category>
		<category><![CDATA[master boot record]]></category>
		<category><![CDATA[Reinstalling GRUB 2]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=516</guid>
		<description><![CDATA[Get GRUB 2 back installed after installing Windows in just 5 minutes from a Live CD.]]></description>
				<content:encoded><![CDATA[<p>Do yourself a favor and never do this if you have other things on your mind.  The information is sparse and not very well written, so I'm going to fix that right now.  Today I had to install Windows XP on my wife's laptop because some company that makes software that she needs decided that it would be too easy to allow people to use virtual machines to run their software.  When I installed Ubuntu on the machine a few months back, I left a 30GB partition at /dev/sda1 to put Windows on there at a later date should she need it.  Well, she needed it and I installed it.  Once installed, I needed to get GRUB back.  If you haven't done this with GRUB2, consider yourself lucky.  Here's the easiest way to do it.</p>
<ol type="1">
<li>Boot to the LiveCD Desktop (Ubuntu 9.10 or later).</li>
<li>Open a  terminal by selecting <em>Applications, Accessories, Terminal</em> from  the menu bar.</li>
<li>Determine the partition with the Ubuntu installation.  The <em>fdisk</em> option "-l" is a lowercase "L".
<ol type="a">
<li>
<pre>sudo fdisk -l</pre>
<p>If the user isn't sure of the  partition, look for one of the appropriate size or formatting.Running <tt>sudo blkid</tt> may provide more information to help  locate the proper partition, especially if the partitions are labeled. The device/drive is designated by <em>sdX</em>,  with <em>X</em> being the device designation. <em>sda</em> is the first  device, <em>sdb</em> is the second, etc. For most users the MBR will be  installed to <em>sda</em>, the first drive on their system. The  partition is designated by the <em>Y</em>. The first partition is 1, the  second is 2. Note the devices and partitions are counted differently.</li>
</ol>
</li>
<li>Mount the partition containing the Ubuntu installation.
<pre>sudo mount /dev/sd''xY'' /mnt</pre>
<p>Example: <em>sudo  mount /dev/sd<strong>a1</strong></em> Note: If the user has a separate /boot partition,  this must be mounted to <em>/mnt/boot</em></li>
<li>Run the <tt>grub-install</tt> command as described below. This will  reinstall the GRUB 2 files on the mounted partition to the proper  location and to the MBR of the designated device.
<pre>sudo grub-install --root-directory=/mnt/ /dev/sdX</pre>
<p><span style="color: #ff0000;">Example:  <em>sudo  grub-install --root-directory=/mnt/ /dev/sd<strong>a</strong></em></span></li>
<li>Reboot</li>
<li>Refresh the GRUB 2 menu with <tt>sudo update-grub</tt></li>
</ol>
<p>That doesn't look that difficult, does it?  Yeah, well, it was a pain in the ass to get to that point.  If you notice, I highlighted the example for #5.  If you do what I did and try to <em>sudo grub-install --root-directory=/mnt/ /dev/sda<strong><span style="color: #ff0000;">1</span></strong>,</em> then you're going to end up getting something that looks like this:</p>
<blockquote><p><em>grub-setup: warn: Attempting to install GRUB to a partition instead of  the MBR.  This is a BAD idea.<br />
grub-setup: warn: Embedding is not possible.  GRUB can only be installed  in this setup by using blocklists.  However, blocklists are UNRELIABLE  and its use is discouraged.</em></p></blockquote>
<p>You don't want this.  You're going to try to force it and you're going to fuck something up.  Make damn sure you do it right.  Let's look at my particular situation.</p>
<p>My setup looks like this:</p>
<p>/dev/sda1 is NTFS<br />
/dev/sda2 is ext4<br />
/dev/sda3 is swap</p>
<p>I would have to enter the following commands:</p>
<blockquote>
<pre>sudo mount /dev/sda2 /mnt
sudo grub-install --root-directory=/mnt/ /dev/sda</pre>
</blockquote>
<p>After knocking that out, it should tell you that it's been successful and all you now need to do is reboot!  It took me 5 different times to get this damn thing back.  I ended up bombing out the Windows MBR by installing GRUB on it, which made me have to do a fixboot/fixmbr from the windows recovery console and start all over again.  Once I was back to square 1, following the commands above got me done in 5 minutes.</p>
<p>I hope this helps you!</p>
<p>-Greg</p>
<p><img src="file:///C:/Users/Greg/AppData/Local/Temp/moz-screenshot-1.png" alt="" /></p>
<p><img src="file:///C:/Users/Greg/AppData/Local/Temp/moz-screenshot.png" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=516</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to get past the new isoHunt Lite and get to the old original site</title>
		<link>http://www.gregledet.net/?p=482</link>
		<comments>http://www.gregledet.net/?p=482#comments</comments>
		<pubDate>Mon, 26 Apr 2010 15:28:42 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[anonymous]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[Canada's Worst Driver]]></category>
		<category><![CDATA[Canadian proxy]]></category>
		<category><![CDATA[Discovery Channel]]></category>
		<category><![CDATA[discoverychannel.ca]]></category>
		<category><![CDATA[EU]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[FoxyProxy]]></category>
		<category><![CDATA[geo locate]]></category>
		<category><![CDATA[geoip]]></category>
		<category><![CDATA[get around isohunt lite]]></category>
		<category><![CDATA[get past isohunt lite]]></category>
		<category><![CDATA[how to get around isohunt lite]]></category>
		<category><![CDATA[iblocklist]]></category>
		<category><![CDATA[isoHunt]]></category>
		<category><![CDATA[isohunt lite]]></category>
		<category><![CDATA[isohunt.com]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[lite version]]></category>
		<category><![CDATA[mozdev]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[net neutrality]]></category>
		<category><![CDATA[onion router]]></category>
		<category><![CDATA[original isohunt]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[PeerBlock]]></category>
		<category><![CDATA[proxies]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[tor]]></category>
		<category><![CDATA[torrentbox]]></category>
		<category><![CDATA[torrentbox.com]]></category>
		<category><![CDATA[UK]]></category>
		<category><![CDATA[US]]></category>
		<category><![CDATA[utorrent]]></category>
		<category><![CDATA[wildcard]]></category>
		<category><![CDATA[xroxy]]></category>
		<category><![CDATA[xroxy.com]]></category>
		<category><![CDATA[µTorrent]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=482</guid>
		<description><![CDATA[An easy to follow "how-to" on using FoxyProxy and Firefox to get around the IsoHunt Lite page that is facing all US users. Links, screen shots and everything you need to know!]]></description>
				<content:encoded><![CDATA[<p>If you are a torrent hound like some people, you have probably noticed that on <a title="isoHunt Lite test roll out and on rumored keyword filtering" href="http://isohunt.com/forum/viewtopic.php?t=432017&amp;sid=" target="_blank">April 5th, isoHunt changed the site for US users</a>.  This REALLY sucks because it basically takes away your filtering capabilities and the ability to view the comments on the files.  The thing is, isoHunt is my favorite .torrent search engine and I want my old isoHunt back!!!  Well, if you're like me and you want the old isoHunt back, here's how you can do it.  This also works on <a title="TorrentBox.com" href="http://www.torrentbox.com" target="_blank">TorrentBox.com</a> and any other site that blocks US users.</p>
<p>1. First off, you should already have a copy of Firefox installed on your computer.  If you are only using IE, you have problems that I can't solve in a simple blog post.  Go get Firefox and get it installed.  If you have it installed already, go to step 2.</p>
<p>2. We need to download a Firefox Add-on called FoxyProxy.  You can find it at <a title="FoxyProxy at Mozdev" href="http://foxyproxy.mozdev.org/" target="_blank">http://foxyproxy.mozdev.org/</a> or you can skip straight to it by <a title="FoxyProxy Standard" href="https://addons.mozilla.org/en-US/firefox/addon/2464" target="_blank">clicking here</a>.  Add FoxyProxy to Firefox.  You'll need to restart Firefox after you install it.</p>
<p>3.  You'll notice at the bottom right corner of Firefox that FoxyProxy is Disabled.  It'll look like this: <a href="http://www.gregledet.net/wp-content/uploads/2010/04/FoxyProxy2.jpg"><img class="alignnone size-full wp-image-483" title="FoxyProxy:Disabled" src="http://www.gregledet.net/wp-content/uploads/2010/04/FoxyProxy2.jpg" alt="" width="152" height="33" /></a> Go ahead and click on that or you can go to Tools -&gt; FoxyProxy Standard and it will open the next window (click for bigger version):</p>
<p><a href="http://www.gregledet.net/wp-content/uploads/2010/04/FoxyProxy1.jpg"><img class="alignnone size-medium wp-image-484" title="FoxyProxy Window" src="http://www.gregledet.net/wp-content/uploads/2010/04/FoxyProxy1-300x193.jpg" alt="" width="300" height="193" /></a></p>
<p>4. Now we need to add some proxies.  I like to use <a title="xproxy" href="http://www.xroxy.com/proxylist.htm" target="_blank">xroxy.com</a> to find my proxies.  One reason I like it is because you can setup the proxies with a single click.  I'll show you how to do both. We need to find a proxy to use that will get us past the isoHunt lite  and to the main site.  To do this you can use proxies all over the  globe.  For this how-to, I'll use a proxy in Canada. I suggest that you try out various proxies until you find one that works best for you.  I've used proxies in Canada, the UK, and many other countries, it just so happens, that Canada seems to be the fastest for me.</p>
<p>5.  At <a title="xroxy" href="http://www.xroxy.com/proxy-country.htm" target="_blank">xroxy.com</a> you need to click on "By Country" or click the picture below:<br />
<a href="http://www.xroxy.com/proxy-country.htm"><img class="alignnone size-full wp-image-486" title="xroxy by country" src="http://www.gregledet.net/wp-content/uploads/2010/04/FoxyProxy4.png" alt="" width="428" height="203" /></a></p>
<p>6. Click "Canada" in the list on that page to bring up the list of all Canadian proxies.  Once there, there's 2 ways of setting up a proxy in FoxyProxy, manually or automatically.  For the auto setup, just click the FoxyProxy icon next to the proxy: <a href="http://www.gregledet.net/wp-content/uploads/2010/04/FoxyProxy31.png"><img class="alignnone size-full wp-image-490" title="FoxyProxy3" src="http://www.gregledet.net/wp-content/uploads/2010/04/FoxyProxy31.png" alt="" width="367" height="27" /></a>.</p>
<p>7.  To setup a proxy manually, there's many different how-to's out there that can be found in <a href="http://foxyproxy.mozdev.org/help.html" target="_blank">the help section of FoxyProxy's website</a>. There's <a href="http://davidtse916.wordpress.com/2007/07/26/switch-proxy-settings-on-firefox-using-foxyproxy/" target="_blank">one with screenshots for an older version</a> of FoxyProxy, and there's <a href="http://foxyproxy.mozdev.org/configuring.html" target="_blank">one written by FoxyProxy on how to configure the software</a>.</p>
<p>8.  Once you have the proxy setup, you need to tell the software how to use it.  For the sake of simplicity, you can simply right click on the "FoxyProxy:Disabled" and tell it "Use proxy 'XROXY Proxy' for all URLs".  You can also setup patterns for that proxy to use.</p>
<p>9. To setup patterns, double click the XROXY Proxy from the main screen in FoxyProxy.  Click on the URL Patterns tab and Add New Pattern.  When the screen comes up, enter the following:<br />
<a href="http://www.gregledet.net/wp-content/uploads/2010/04/FoxyProxyPattern.jpg"><img class="alignnone size-full wp-image-491" title="FoxyProxyPattern" src="http://www.gregledet.net/wp-content/uploads/2010/04/FoxyProxyPattern.jpg" alt="" width="490" height="315" /></a></p>
<p>Type the URL EXACTLY like I did with the /* behind it to use as a wildcard.  If you don't do this, only the main page of isoHunt will go through the proxy and all the search pages will kick back the Lite version.  Click OK and you'll have setup the pattern.  Now you can tell FoxyProxy to "Use proxies based on their pre-defined patterns and priorities".  Once you do that, all traffic going to isoHunt will pass through the proxy and all other traffic will go straight to the internet without going through a proxy.</p>
<p>Once you're back to the main isoHunt site, you're good to go.  I highly suggest using <a title="µTorrent" href="http://www.utorrent.com" target="_blank">µTorrent</a> as your client and I would definitely download <a title="PeerBlock" href="http://www.peerblock.com/" target="_blank">PeerBlock</a> to use block unwanted traffic.  Once you have PeerBlock installed, you can get your lists from <a title="iBlockList" href="http://www.iblocklist.com" target="_blank">iBlockList.com</a> to stop all those evil people that you don't want accessing your network. If you want to surf anonymously, you can download <a title="Tor" href="http://www.torproject.org/" target="_blank">Tor</a>, but that will really slow you down.  Onion routers like Tor will bounce your traffic all over the world before it finally makes it out to the cloud.</p>
<p>That should be all you need to know to get back to the main site of isoHunt.  We really shouldn't have to take such measures simply to view a website.  We need to <a title="Save the Internet" href="http://www.savetheinternet.com/" target="_blank">support net neutrality</a> and tell our lawmakers that we will NOT be censored, and if they do, we will simply find a way around them.</p>
<p><center><script type="text/javascript"><!--
google_ad_client = "pub-7181617996474576";
google_ad_slot = "4296809367";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</center></p>
<p>P.S. For all those Canadians living in the US and would like to watch shows like Canada's Worst Driver but can't, you can use this same method.  Make sure you use a Canadian proxy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=482</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Slipping past cell phone voice mail greetings</title>
		<link>http://www.gregledet.net/?p=476</link>
		<comments>http://www.gregledet.net/?p=476#comments</comments>
		<pubDate>Wed, 14 Apr 2010 16:14:57 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[*]]></category>
		<category><![CDATA[at&t]]></category>
		<category><![CDATA[cingular]]></category>
		<category><![CDATA[fax]]></category>
		<category><![CDATA[greeting]]></category>
		<category><![CDATA[greetings]]></category>
		<category><![CDATA[Greg Ledet]]></category>
		<category><![CDATA[ledet]]></category>
		<category><![CDATA[skip]]></category>
		<category><![CDATA[sprint verizon]]></category>
		<category><![CDATA[T-Mobile]]></category>
		<category><![CDATA[voice mail]]></category>
		<category><![CDATA[voicemail]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=476</guid>
		<description><![CDATA[I hate people that put long drawn-out voice mail greetings on their cell phones.  In fact, very few things will cause me to just hang up the phone and not leave an important voice mail more than that.  That's why I've done a bunch of searches and decided to tell you guys (and leave it [...]]]></description>
				<content:encoded><![CDATA[<p>I hate people that put long drawn-out voice mail greetings on their cell phones.  In fact, very few things will cause me to just hang up the phone and not leave an important voice mail more than that.  That's why I've done a bunch of searches and decided to tell you guys (and leave it here for my future reference) just how to skip past the greetings.  I have a friend of mine, we'll call him "Mary" that has a greeting in which he'll tell you his life story, website, and read "War and Peace" before it ends.  I VERY rarely leave him a voice mail because I don't want to sit through that long ass greeting, not to mention eat up an extra minute on my cell phone. Now I don't have to!</p>
<p>Verizon: press *<br />
Sprint: press 1<br />
T-Mobile or AT&amp;T: press #</p>
<p>Of course, you need to know what carrier the person you are calling is using.  The way I figure out is simply trial and error until I hit the right one.  I timed Mary's once (he's on Verizon) and if I would have left a message, I would have been into the 3rd minute of the call and eating up my shared minutes.  After his long ass greeting, Verizon gives all the options (including giving a fax options!) of crap you can do.  I'm not sitting through that crap.  Now as soon as I hear that voice mail pick up, I slam a * into the phone and I'm done.</p>
<p>What I would like to see is people to put this info at the beginning of the greeting. Something like "Hi, this is Greg. Please press * to skip this greeting".  That would go a long way and I'm willing to bet more people would be willing to leave voice mail for you if you did.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=476</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Uploading multiple vCards to Google Contacts</title>
		<link>http://www.gregledet.net/?p=462</link>
		<comments>http://www.gregledet.net/?p=462#comments</comments>
		<pubDate>Mon, 29 Mar 2010 20:07:35 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[2007]]></category>
		<category><![CDATA[anniversary]]></category>
		<category><![CDATA[birthday]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[contacts]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[vcard]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=462</guid>
		<description><![CDATA[A quick tutorial on how to export multiple contacts to vCard format in Outlook and then import them to Google Contacts (Gmail).]]></description>
				<content:encoded><![CDATA[<p>As you can see from my last post, I've been messing around with my contacts list as of late.  I'm trying to get as much info on these people as possible.  Stuff like their birthdays and anniversaries, mailing addresses, emails, phone numbers, etc.  While I'm putting all of this together, I'm also adding pictures for everyone on their vCard; a head shot for friends and the company logo for business contacts.  Since I'm using Outlook 2007 as my main mail program, it's pretty easy to get all of this stuff in one place.  The only problem I was running across was, like I said in the last post, Google was screwing with my contacts list.  First off, you can only import 2 types of files to Google; a vCard file and a CSV.  You can't upload a .pst file which would contain all of my contacts' pictures.  The CSV file does move all the info I want except the pictures, and the vCard file moves everything, but you have to do it one at a time... or do you?</p>
<div id="attachment_464" class="wp-caption alignleft" style="width: 276px"><a href="http://www.gregledet.net/files/BarackHObama.vcf"><img class="size-full wp-image-464  " title="Barack Obama vCard" src="http://www.gregledet.net/wp-content/uploads/2010/03/barryo.jpg" alt="Mr. Barach H. Obama" width="266" height="167" /></a><p class="wp-caption-text">Click on the business card for the full vCard.</p></div>
<p style="text-align: center;"><a href="http://www.gregledet.net/wp-content/uploads/2010/03/barackqr.jpg"><img class="size-full wp-image-465  aligncenter" title="Barack H. Obama QR Contact " src="http://www.gregledet.net/wp-content/uploads/2010/03/barackqr.jpg" alt="Barack H. Obama Contact in QR Code format" width="150" height="150" /></a></p>
<p>For those of you that don't know what I'm talking about, this is what a  Business card  vCard looks like in Outlook if I were to email it to  you.  It's a .vcf file and contains all kinds of rich information on the  back end.  There's a link under the picture for you to download a full  vCard for the president.  There's also tons of other formats out there  to store your contacts; everything from simple text files all the way to  QR codes.  If you have an app on your phone that does 3D barcodes, snap a pic of that one and you'll get the same info that's in the vCard.</p>
<p>Now, back to what I was originally talking about.  Seeing as I want all that rich information in my contacts and I want to import them into Google, I need to use a vCard.  I don't want to have to upload 239 individual files, so this is what I'm going to do.</p>
<ol>
<li>Go to your contacts in Outlook and highlight them all (ctrl-A). Right click and "Send Full Contact" then "In Internet Format (vCard)".  Depending on how many contacts you have, you may have to split them up into groups.  I did...</li>
<li>An email should pop up with a bunch of attachments.  Send that email to yourself.</li>
<li>From the email you just sent to yourself, highlight all the attachments, right-click, save as. Save them somewhere easy to access.</li>
<li>Open up a command line. (Windows Key + R, then type "cmd" and press OK)</li>
<li>Navigate to the folder where you saved the contacts.  I saved them in C:\contacts, so we'll use that.</li>
<li>The command to type from the directory you have saved your contacts is:<br />
copy   /B   *.vcf   all_contacts.vcf</li>
<li>This will create a file in that directory called "all_contacts.vcf".  In that file will be the vCards of all of your contacts.</li>
<li>Now you just go to <a title="Google Contacts" href="http://www.google.com/contacts" target="_blank">Google.com/contacts</a>, click "Import" on the right side of the page, and upload that file!</li>
</ol>
<p>It's pretty easy when you think about it.  I don't know of any way to do this from the GUI, so you're going to have to use the command line.  Once you have everything uploaded to Google Contacts, you should be set.  All you pictures and information should have been transferred and now you have a full backup of your contacts list should your computer crash!  I also use the same contacts list on my Windows Mobile phone, so I have multiple backups of my contacts list.  I'll never have to run around trying to rebuild it after losing my phone again!!!</p>
<p>-Greg</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=462</wfw:commentRss>
		<slash:comments>58</slash:comments>
		</item>
		<item>
		<title>Changing the &#8220;file as&#8221; format for contacts in Outlook 2007</title>
		<link>http://www.gregledet.net/?p=427</link>
		<comments>http://www.gregledet.net/?p=427#comments</comments>
		<pubDate>Fri, 26 Mar 2010 10:50:50 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Other stuff]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[2007]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[activesync]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[contacts]]></category>
		<category><![CDATA[file as]]></category>
		<category><![CDATA[firstame]]></category>
		<category><![CDATA[firstname lastname]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google apps]]></category>
		<category><![CDATA[google contacts]]></category>
		<category><![CDATA[google mail]]></category>
		<category><![CDATA[google mobile]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[HTC Touch]]></category>
		<category><![CDATA[lastname]]></category>
		<category><![CDATA[Nuevasync]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[Palm Treo]]></category>
		<category><![CDATA[push]]></category>
		<category><![CDATA[Shubaroo Contact Changer]]></category>
		<category><![CDATA[touch]]></category>
		<category><![CDATA[touch pro]]></category>
		<category><![CDATA[Treo]]></category>
		<category><![CDATA[Treo Pro]]></category>
		<category><![CDATA[work around]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=427</guid>
		<description><![CDATA[Today I was working on changing my email server for this domain from being self hosted to being hosted with Google.  In the process of this, I was trying to do too much at once and ended up learning how to do a few things.  First off, you can get push notifications to your Windows [...]]]></description>
				<content:encoded><![CDATA[<p>Today I was working on changing my email server for this domain from being self hosted to being hosted with Google.  In the process of this, I was trying to do too much at once and ended up learning how to do a few things.  First off, you can get push notifications to your Windows Mobile phone from Google.  Go check out <a title="Google Sync for your phone" href="http://www.google.com/mobile/sync/" target="_blank">Google Sync for your Phone</a>.  Don't worry, I'll be here when you get back...</p>
<p>Now that you're doing that, check this out.  I like my contacts to be listed as "FirstName LastName" or what Microsoft calls the "FullName" file as format.  Google likes to make it's default "LastName, FirstName" and that's where I ran into this problem.  I synced my phone with my computer and in the process got all my contacts and calendar on the phone up to date.  I setup <a title="Google Sync for Windows Mobile Phones" href="http://www.google.com/support/mobile/bin/answer.py?answer=138636&amp;topic=14299" target="_blank">Google Mobile Sync</a> on my phone, which acts exactly like an Exchange Server, and told it to sync Mail, Contacts and Calendar (Tasks doesn't work). I then synced my phone to my new Google account.</p>
<p>Everything looked all hunky-dory, until the next time my phone synced with Google.  While my contacts were on the Google server, it changed my "file as" format!!!  My contacts went in like "Greg Ledet" and came back out "Ledet, Greg".  Needless to say, this pissed me off and I was not going to sleep until I could find a fix.  As you can see, it's 4:24 in the morning right now, so I haven't slept!</p>
<p>I <a title="File As changes to &quot;Last Name, First Name&quot; - Google Mobile Help" href="http://www.google.com/support/forum/p/Google+Mobile/thread?tid=7c2ba592227a3417&amp;hl=en" target="_blank">found this post</a> and <a title="Windows Mobile Contact sync, &quot;File As&quot; field - Google Mobile Help" href="http://www.google.com/support/forum/p/Google+Mobile/thread?tid=466cdaeeecc9a9e7&amp;hl=en" target="_blank">this post</a> on Google's support site and neither one of those actually gives a proper answer.  It doesn't look like Google plans on fixing this anytime soon, so here's a work around to fix the the format and the way I'm making sure my stuff is up to date.</p>
<p>As it sits, the phone and computer are both using "Lastname, Firstname" and I want those two back to "Firstname Lastname" (FullName).  To do that, open up Outlook and go to your Contacts.  We're going to write some quick VBA code and make a macro to take care of this problem for us.  Follow the steps!</p>
<ol>
<li>Press Alt+F11 to open the VBA editor. You may have to enable macros (Tools -&gt;Trust Center-&gt;Macro Security-&gt;Warnings for all macros-&gt;OK).</li>
<li>On the left side, you'll see "Project 1" in the top box. Expand the plus next to "Microsoft Office Outlook Objects" and clink on "ThisOutlookSession".</li>
<li>Paste the following code in the "ThisOutlookSession" code box.</li>
<blockquote>
<pre>Public Sub ChangeFileAs()
 Dim objOL As Outlook.Application
 Dim objNS As Outlook.NameSpace
 Dim objContact As Outlook.ContactItem
 Dim objItems As Outlook.Items
 Dim objContactsFolder As Outlook.MAPIFolder
 Dim obj As Object
 Dim strFirstName As String
 Dim strLastName As String
 Dim strFileAs As String

 On Error Resume Next

 Set objOL = CreateObject("Outlook.Application")
 Set objNS = objOL.GetNamespace("MAPI")
 Set objContactsFolder = objNS.GetDefaultFolder(olFolderContacts)
 Set objItems = objContactsFolder.Items

 For Each obj In objItems
 'Test for contact and not distribution list
 If obj.Class = olContact Then
 Set objContact = obj

 With objContact
 ' Uncomment the  strFileAs line for the desired format 

 'Lastname, Firstname (Company) format               
 ' strFileAs = .FullNameAndCompany 

 'Firstname Lastname format
 <span style="color: #ff0000;">'</span> <span style="color: #0000ff;">strFileAs = .FullName</span>

 'Lastname, Firstname format
 ' strFileAs = .LastNameAndFirstName

 'Company name only
 ' strFileAs = .CompanyName

 'Companyname (Lastname, Firstname)
 ' strFileAs = .CompanyAndFullName

 .FileAs = strFileAs

 .Save
 End With
 End If

 Err.Clear
 Next

 Set objOL = Nothing
 Set objNS = Nothing
 Set obj = Nothing
 Set objContact = Nothing
 Set objItems = Nothing
 Set objContactsFolder = Nothing
End Sub</pre>
</blockquote>
<li>Uncomment the strFileAs line that  			uses the format you desire before running it. In my case, I want to use the Full Name (FirstName LastName), so I would remove the red apostrophe <span style="color: #ff0000;">'</span> that is in front of the blue<span style="color: #ff0000;"><span style="color: #0000ff;"> strFileAs = .FullName</span></span>. If you want to use a different format, just remove the apostrophe in front of the format you want to use.</li>
<li>Save the project, click "Run" on the menu bar, and click "Run Sub/UserForm" (or you can just hit F5)</li>
<li>That's it!</li>
</ol>
<p>Your contacts are now in the "Greg Ledet" order on your computer, but they are still "Ledet, Greg" on your phone and Google.  This is what I've done to things fixed.</p>
<ol>
<li>On your Windows Mobile phone, open up ActiveSync.</li>
<li>Go to "Menu" then "Options" while in ActiveSync</li>
<li>Under "Microsoft Exchange" make sure that "Contacts" is <span style="color: #ff0000;">unchecked</span>.</li>
<li>Under your computer name (in my case, "Greg Laptop"), make sure that "Contacts" is <span style="color: #0000ff;">checked</span>.</li>
<li>Connect the phone to the computer via sync cable, bluetooth, dock, etc. and Sync!</li>
</ol>
<p>This should get the contacts on both your computer and your phone in the "FirstName LastName" format.  If it's not, you may have to delete the contacts off your phone before you sync with the computer.</p>
<p>As far as Google's contacts go, there is no way I can find to make the contacts there use the proper formatting.  Google's contacts will always use the "LastName, FirstName" format, which is why in the last few steps you removed contacts from syncing from Google (Google=Microsoft Exchange in this case).  They way I'm getting my contacts to Google is to just reverse where contacts are synced.  I sync with "Microsoft Exchange" and not with "Greg Laptop".  Once I sync them up, I put it back to only sync from the computer.  It would be a lot easier if Google would just fix this crap already, but it's not getting done.</p>
<p>If you can't follow these instructions, I suggest you do some more Google searches and brush up on your reading comprehension. I couldn't make this any clearer from <a title="File As" href="http://www.slipstick.com/contacts/fileas.asp" target="_blank">the original</a>.  And the best part about this looooong how-to?  It's all about Microsoft and I had to finish it in Linux because Windows kept crashing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=427</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>A message about security</title>
		<link>http://www.gregledet.net/?p=421</link>
		<comments>http://www.gregledet.net/?p=421#comments</comments>
		<pubDate>Mon, 15 Mar 2010 03:33:40 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Other stuff]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[phpbb3]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=421</guid>
		<description><![CDATA[Security doesn't exist, only the illusion of security does. Understand that and come to embrace it.  It will make your life a lot easier in the long run.]]></description>
				<content:encoded><![CDATA[<p>When I originally started this blog, it was entitled "Adventures in Networking" and it dealt primarily with networking and, more specific, Cisco network security.  Since that time I've written about everything from hurricanes to hacking an Western Digital NAS device and giving a $50 Linksys router the power of a $500 Cisco box.  Lately, I've been posting how-to's for all kinds of stuff and it's time to take a step back and talk about security for a little bit.</p>
<p>A web hosting client of mine got his site hacked in the past couple of days.  About a year ago, I installed phpBB3 for him and setup his domain on my server.  After that, I acted as admin on the forums and stuff like that.  Well, phpBB3 got neglected and hadn't been updated in a while.  It was running version 3.0.6 while the latest version was 3.0.7-PL1.  4 versions have been released since the last update.  When the site got exploited, he looked at me like it was my fault.  In fact, he told me something along the lines of "I paid you to build a site that was secure and you didn't do that".  Well, I did build him a secure site a year ago, but in the past year, there has been enough holes found in phpBB3 to kill a horse.</p>
<p>I'm sure that any freelancer or businessman out there has had to deal with clients that don't understand what it is exactly you do.  This happens a lot to me due to the range of things that I do.  But in this instance, the client was under the illusion that I was going to maintain the website and keep it up to date for him.  The original invoice that I sent for the site was simply 8 hours of work to get everything installed and setup properly and for a year of hosting.  Since that first invoice, I have fixed little errors here and there for him without invoicing him because it's little things that only take a few minutes to take care of.  Plus, the guy is a real good friend of mine and has been my friend since before we started doing business together.  I do freebies for a lot of my customers from time to time.  Maybe I messed up by doing these repairs and not charging him for them and by doing that I lead him to believe that I was doing it all for free.</p>
<p>I logged into the site this morning to notice that it had been defaced.  Some hacker managed to get in and screw around with the AdminCP.  Language packs were messed with, 300+ accounts were created and a bunch of spam had been posted.  I went ahead and fixed everything that happened and went through the process of upgrading phpBB3 to the latest version.  It took me about 2½ hours to get it all cleaned up and upgraded.  Once I was done, I submitted a service ticket for the work.  Here's another place I screwed up.  I should have asked him if he wanted me fix it first because we don't have a service agreement between the two companies.</p>
<p>Well, the site got upgraded to the latest version of phpBB3 and it was working fine.... for about 3 hours.  That's when our little hacker managed to get back in and lock me out completely.  My best guess is that there's a zero-day exploit on phpBB 3.0.7-PL1 that will also work on all previous versions.  In that instance, there's not a whole lot I can do about it other than block the proxies that he's used to get to the site with or just shut the site down.  Well, I shut it down.</p>
<p>Here's where the main problem starts.  The customer assumed that it was my responsibility to update the software for him.  I don't go to HP and bitch at them because there's holes in Windows.  Once I install the software, it's up to the client to keep that software up to date.  All of my other web clients know this and they keep their CMS software up to date.  If we would have set up a service contract in which I said I would maintain the security of his site, then it's no problem.  It's my responsibility to fix the security issues that come up, but there's no agreement there.</p>
<p>Also, the client wants 100% security. We all know that 100% security does not exist and never will exist.  He didn't like the fact that I used open-source software for the site because people can read the source code.  Well, the open-source stuff is free, so that's why it was used.  But even closed-source software has security holes in it.</p>
<p>To wrap up this rant, I wish people could understand that the only secure computer is one that's powered down and unplugged from the internet.  A friend once told me that if you installed a fresh copy of Windows XP (no service packs) on a computer and plugged it directly into the internet, it would be rooted within 12 seconds. <strong> 12 seconds!</strong> There is no security, only the illusion of it.</p>
<p>-Greg</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=421</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Idea for a new kind of company; looking for public opinion.</title>
		<link>http://www.gregledet.net/?p=419</link>
		<comments>http://www.gregledet.net/?p=419#comments</comments>
		<pubDate>Fri, 12 Mar 2010 04:24:40 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Other stuff]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[co-op]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[democracy]]></category>
		<category><![CDATA[ESOP]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[one man]]></category>
		<category><![CDATA[one vote]]></category>
		<category><![CDATA[partnership]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[QWERT]]></category>
		<category><![CDATA[registered agent]]></category>
		<category><![CDATA[speciality]]></category>
		<category><![CDATA[think different]]></category>
		<category><![CDATA[vote]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=419</guid>
		<description><![CDATA[I was sitting around the other day and came up with an idea for a different kind of company.  It's not exactly a Co-Op, and it's not exactly an ESOP.  It's something different, but a cross between the two.  I've spoken with a friend of mine that's a business management consultant and he's never heard [...]]]></description>
				<content:encoded><![CDATA[<p>I was sitting around the other day and came up with an idea for a different kind of company.  It's not exactly a <a title="Co-Op at Wikipedia" href="http://en.wikipedia.org/wiki/Co-op" target="_blank">Co-Op</a>, and it's not exactly an <a title="ESOP at Wikipedia" href="http://en.wikipedia.org/wiki/Employee_ownership" target="_blank">ESOP</a>.  It's something different, but a cross between the two.  I've spoken with a friend of mine that's a business management consultant and he's never heard of someone doing what I'm thinking about and that's why I turn to you, the internet.  It's hard to put this idea into words, much less try to convey it in a short period of time, so please bear with me here because I'll be all over the place.  We'll call the company QWERT for the sake of space and time.</p>
<p>QWERT would be a partnership of freelance web designers and programmers.  Every freelancer has a project that he's never gotten too because it's just too big for them to do alone or they just don't have the time to complete the entire project alone.  A bunch of talented people come together to work on each others projects.  I would pick 2 or 3 people that I know are VERY talented individuals that have money making ideas that just haven't been worked on yet.  Once the 4 of us are together, we start looking for more people.  To become a member of QWERT, you need to have a project that all other members agree on unanimously.  You also have to have talents that are provable through your portfolio and all other members have to agree on that unanimously.  The projects should be picked by the complexity of each part of it.  You want to make sure that throughout the projects the work would be spread around evenly based on each person's specialty.  You'd have one heavy programming project and one heavy flash.  One heavy database and one heavy graphics.  You get the idea... spread the work around so no one "department" is consistently working more than anyone else.</p>
<p>One we build a team of 10 or so people.  Once the team is built, we vote on which projects we want to work on or we chose them at random.  I don't know on that one 100% yet.  Once we finish a project, we move on to the next and so on.  During the voting process, we would try to bring projects up for vote in such a way as to give the specialty of the last project a "break" on the next one.  You don't want to do two heavy database jobs back to back.  Every person has to work on every project.  There are NO exceptions.  That's the only way this plan works.</p>
<p>Every member of QWERT will be an equal "owner" of the company.  All profit of the company is split equally between everyone.  There 's no managers.  The person who's project we are working on will act as project manager for that project.  They will still do their specialty, but they run the project.  An outside management company will run the financial aspects and be the registered agent.  No member of QWERT will have access to any of the company credit or anything like that, but all financial decisions will be made by the democratic process.  The Agent will only act on our behalf and under the direction of QWERT.  The Agent would be the ones paying the members their share out of the company fund after all expenses are paid.  And no, a new laptop for you to work on is not a company expense.  Pay for it yourself.</p>
<p>There's no sales department, we only work on our own projects.  Once we run out of the original projects, we start coming up with new ones.  This would not be a full time job, but something that people who have some free time and want some side work would do.  Our meetings would be held over something like GoToMeeting and we'd use collaboration software to make sure everyone's on the same page.</p>
<p>Well, that's the basics.  There's more holes than a brick of Swiss cheese, and there's a lot more thought that needs to go into it, but I want to get opinions on the basic idea.  Do you think this is something that could work?  If you were in a position to do some side work and you fit what QWERT needs, would you consider doing it?  What would you change or add?  Please, PLEASE leave a comment with your opinion, no matter how harsh you think it is or how dumb.  I want ALL opinions here.  Let's use the hive mind of the internet and create an entirely new kind of company and an entirely new way of doing business.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=419</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>DD-WRT and the WRT54G-TM</title>
		<link>http://www.gregledet.net/?p=405</link>
		<comments>http://www.gregledet.net/?p=405#comments</comments>
		<pubDate>Sat, 12 Dec 2009 01:38:33 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[13064]]></category>
		<category><![CDATA[30-30-30 reset]]></category>
		<category><![CDATA[CFE Updater]]></category>
		<category><![CDATA[DD-WRT]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[generic]]></category>
		<category><![CDATA[Hotspot@Home]]></category>
		<category><![CDATA[JTAG]]></category>
		<category><![CDATA[mega]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[T-Mobile]]></category>
		<category><![CDATA[tftp]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[WRT54G-TM]]></category>
		<category><![CDATA[WRT54GL]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=405</guid>
		<description><![CDATA[So I do a lot of DD-WRT how-to's. I don't know why, I guess it's just that I seem to put DD-WRT on a bunch of different routers and decide that I'm going to document what I've done.  Today's how-to is for the WRT54G-TM.  Let me give you a little info on the WRT54G-TM. The [...]]]></description>
				<content:encoded><![CDATA[<p>So I do a lot of DD-WRT how-to's. I don't know why, I guess it's just that I seem to put DD-WRT on a bunch of different routers and decide that I'm going to document what I've done.  Today's how-to is for the WRT54G-TM.  Let me give you a little info on the WRT54G-TM.</p>
<p>The WRT54G-TM (TM stands for T-Mobile) is also called the T-Mobile "Hotspot@Home" service. It allows calls to be made via T-Mobile's GSM network or via WiFi Unlicensed Mobile Access (UMA), using the same telephone and phone number (a special dual-mode phone designed for the service is required e.g. Blackberry Pearl 8120). Additionally, once a call is in progress, one may transition from WiFi to GSM (and vice versa) seamlessly, as WiFi signal comes and goes, such as when entering or exiting a home or business. A special router is not needed to use the service, but the T-Mobile branded routers are supposed to enhance the telephone's battery life. This is the only known tweak to the TM version of the firmware.  Obviously, none of this will be worth anything seeing as you're about to flash it with DD-WRT.</p>
<p>The hardware appears to be like WRT54GL however has 32MB ram and 8MB flash.  Yeah, this thing is a monster.  Until not that long ago the only way to upgrade this router was through a JTAG cable and header, but luckily we don't have to worry about that anymore.  Let's get to it.</p>
<p>First off, download the software you're going to need. <a title="WRT54G-TM DD-WRT files" href="http://www.gregledet.net/DD-WRT/WRT54G-TM.rar" target="_blank">Here's a rar file with everything you're going to need</a>. In the archive are 3 files:</p>
<p>CFE_Updater-WRT54G-TM.bin<br />
dd-wrt.v24-13064_mega_generic.bin<br />
tftp2.exe</p>
<p>The upgrade is pretty straight forward, but it has a little twist.  The default LAN IP Address of the Linksys WRT54G-TM is 192.168.0.1.  The default IP for everything else is going to be 192.168.1.1.  A way around this is to simply setup 2 static IP addresses on your computer.  I setup 192.168.1.9 and 192.168.0.9, but you can put whatever you want as long as they fall within the /24 subnet of 192.168.1.0 and 192.168.0.0.</p>
<p>1.) As always <strong>D</strong><span><span style="font-weight: bold;">O A HARD RESET BEFORE<span style="font-style: italic;"> </span>YOU FLASH FIRMWARE.</span> This does not mean hitting the reset button and saying you are done. This means doing the 30-30-30 reset. To do a 30-30-30 reset you must push the reset button with your router powered on. Hold it for 30 seconds with the router powered on. STILL holding it, pull the power cord for 30 seconds. Still holding it, plug the router back in and continue to hold the reset button for 30 more seconds. You will have held the button for a full 90 seconds without releasing it. </span>You will not get a password renewal page as you have stock Linksys firmware on the router still.</p>
<p>2.) Open a command prompt window and type <strong>ping -t 192.168.1.1</strong> and hit enter. Leave this window open. We're going to come back to this later, but you need to keep this open.</p>
<p>3.) Log into the <strong>WRT54G-TM'</strong>s web interface @ <a class="external free" title="http://192.168.0.1" rel="nofollow" href="http://192.168.0.1/">http://192.168.0.1</a> and go to the Administration Tab - Firmware Upgrade. Upload the <strong>CFE_Updater-WRT54G-TM.bin</strong> to the router.</p>
<p><span style="color: red;"><strong>!!!ATTENTION!!! You MUST wait at least 5 minutes after clicking the Upgrade button to allow the CFE_Updater to replace the stock CFE on the router and for it to erase the rest of the flash, otherwise you will brick your router.</strong></span></p>
<p>A few seconds after clicking the Upgrade button the Linksys web interface will report that the upload has been successful and the power light will begin flashing on the router. Do <strong>NOT</strong> assume that the CFE replacement/flash erasing/reboot process has finished as the power light will continue to flash after it has rebooted. So there is no way to tell when it is ready for you to TFTP the DD-WRT firmware to it except when you begin to see the ping respond.</p>
<p>So once it is finished replacing the stock CFE and erasing the rest of the flash, the router will reboot. When the router is ready for the TFTP upload of the DD-WRT firmware, you will see the <strong>ping -t 192.168.1.1</strong> begin to respond in the command prompt window that you opened before.</p>
<p>4.) Open up the TFTP utility and set it up like this:</p>
<div id="attachment_406" class="wp-caption alignnone" style="width: 343px"><img class="size-full wp-image-406" title="tftp" src="http://www.gregledet.net/wp-content/uploads/2009/12/tftp.png" alt="The file there is the dd-wrt.v24-13064_mega_generic.bin in the archive" width="333" height="262" /><p class="wp-caption-text">The file there is the path to the dd-wrt.v24-13064_mega_generic.bin in the archive</p></div>
<p>Now click the Upgrade button. Once the firmware is sent to the router, it will reboot. The power light will change from flashing to solid when it is ready to be configured.  The default IP will be 192.168.1.1.</p>
<p>If you do not see a progress bar as the tftp utility transmits the file, you may need to power cycle your router. Wait until the tftp utility has finished its attempts, then power cycle (possibly waiting a few seconds) and wait until you can ping 192.168.1.1 before clicking Upgrade again.</p>
<p>A few notes:</p>
<ul>
<li> Tornado has made it so that the router will retain it's MAC Address that is on the label on the bottom of the router with the new CFE replacement.</li>
<li> Tornado is in the process of making a revert bin for those who may choose to revert back to the stock Linksys firmware (god only know why)</li>
</ul>
<p>Many thanks goes out to Tornado, Eko, and Brainslayer for their work on this! Also, thanks to <a href="http://www.dd-wrt.com/phpBB2/profile_sec.php?mode=viewprofile&amp;u=25070&amp;sid=c492b4215a64c9bbbb48453595b9cdbd" target="_blank">Luniz2k1</a> that wrote the <a href="http://www.dd-wrt.com/wiki/index.php/WRT54G-TM" target="_blank">original how-to</a> that my lazy ass ripped off to make this one.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">he WRT54G-TM (TM stands for T-Mobile) is also called the T-Mobile "Hotspot@Home" service. It allows calls to be made via T-Mobile's GSM network or via WiFi Unlicensed Mobile Access (UMA), using the same telephone and phone number (a special dual-mode phone designed for the service is required e.g. Blackberry Pearl 8120). Additionally, once a call is in progress, one may transition from WiFi to GSM (and vice versa) seamlessly, as WiFi signal comes and goes, such as when entering or exiting a home or business. A special router is not needed to use the service, but the T-Mobile branded routers are supposed to enhance the telephone's battery life. This is the only known tweak to the TM version of the firmware. The hardware appears to be like WRT54GL however has 32MB ram and 8MB flash.</div>
<p><center><script type="text/javascript"><!--
google_ad_client = "pub-7181617996474576";
google_ad_slot = "4296809367";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=405</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Open call for Palm Pre beta testers!</title>
		<link>http://www.gregledet.net/?p=399</link>
		<comments>http://www.gregledet.net/?p=399#comments</comments>
		<pubDate>Wed, 09 Dec 2009 08:42:54 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[calculator]]></category>
		<category><![CDATA[fee]]></category>
		<category><![CDATA[fees]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[native]]></category>
		<category><![CDATA[Palm Pre]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[paypal sucks]]></category>
		<category><![CDATA[pixi]]></category>
		<category><![CDATA[pixie]]></category>
		<category><![CDATA[Pre]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[webapp]]></category>
		<category><![CDATA[webOS]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=399</guid>
		<description><![CDATA[I just got done porting the PayPal Fee Calculator to the Palm Pre and now I need some beta testers.  You can download the app here.  Please leave a comment below with your feelings on the program itself and how it works for you.  Any bugs or anything else should be posted below.  Of course, [...]]]></description>
				<content:encoded><![CDATA[<p>I just got done porting the PayPal Fee Calculator to the Palm Pre and now I need some beta testers.  You can <a title="PayPal Fee Calculator for the Palm Pre" href="http://www.gregledet.net/apps/net.gregledet.pay_1.0.0_all.ipk" target="_blank">download the app here</a>.  Please leave a comment below with your feelings on the program itself and how it works for you.  Any bugs or anything else should be posted below.  Of course, you get the app free!</p>
<p>If you don't know how to install homebrew apps on your phone, <a href="http://forums.precentral.net/homebrew-apps/193957-read-first-welcome-homebrew-apps-section.html" target="_blank">see this link for more info</a>.</p>
<p>Some of you may be a little leery about installing something like this.  If you want to view the source code before you install it, just ask.  It's just HTML with some java thrown in.  The mobile web version can be <a href="http://www.gregledet.net/ppfcm.html" target="_blank">found here</a>.  Plus, <a href="http://www.gregledet.net/?p=397" target="_blank">Apple didn't have any problems</a>!</p>
<p>-Greg</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=399</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gregory Ledet Designs makes it to the main stage</title>
		<link>http://www.gregledet.net/?p=397</link>
		<comments>http://www.gregledet.net/?p=397#comments</comments>
		<pubDate>Tue, 08 Dec 2009 19:46:25 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=397</guid>
		<description><![CDATA[Apple Inc. (AAPL) today accepted the first iPhone web application created by Gregory Ledet Designs.  The application, PayPal Fee Calculator, is a simple calculator program that will calculate fees charged by PayPal.com and includes options for 18 different countries.  When asked about how he felt about being accepted by Apple to be in their webapp [...]]]></description>
				<content:encoded><![CDATA[<p>Apple Inc. (<a href="http://www.google.com/finance?q=aapl">AAPL</a>) today accepted the first iPhone web application created by Gregory Ledet Designs.  The application, PayPal Fee Calculator, is a simple calculator program that will calculate fees charged by PayPal.com and includes options for 18 different countries.  When asked about how he felt about being accepted by Apple to be in their webapp store, company founder Gregory Ledet stated “This is a great honor and achievement. Apple doesn’t accept just any apps.”  This is the first app created by Gregory Ledet Designs and the company is currently working to port the application to a standalone app for the iPhone and iPod Touch.</p>
<p>While accepted by Apple for use on their iPhone and iPod Touch, the PayPal Fee Calculator was written to work on any mobile device. The company has stated that they are currently working on other applications, but would not give any details about what they are working on. “There’s a couple of things that are in the pipeline. I didn’t want to get started on anything else until I saw what the reception to this first app was going to be” said Mr. Ledet. “It didn’t take long to put this one together, so the next app should be coming out soon”.</p>
<p>The PayPal Fee Calculator can be found today on the front page of Apple’s webapp store at <a href="http://www.apple.com/webapps">www.apple.com/webapps</a>.</p>
<p>PayPal Fee Calculator on Apple.com: <a href="http://www.apple.com/webapps/calculate/paypalfeecalculator.html">http://www.apple.com/webapps/calculate/paypalfeecalculator.html</a><br />
Direct link to PayPal Fee Calculator: <a href="../ppfcm.html">www.gregledet.net/ppfcm.html</a><br />
Apple Inc.: <a href="http://www.apple.com/">www.apple.com</a><br />
Gregory Ledet Designs: <a href="../">www.gregledet.net</a><br />
Le’ Day Consulting: <a href="http://www.ledayconsulting.com/">www.ledayconsulting.com</a><br />
Non-mobile version of the app: <a href="../?page_id=385">http://www.gregledet.net/?page_id=385</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=397</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Turning my &#8220;iPod Touch&#8221; back into an iPhone</title>
		<link>http://www.gregledet.net/?p=364</link>
		<comments>http://www.gregledet.net/?p=364#comments</comments>
		<pubDate>Thu, 26 Nov 2009 17:55:32 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Other stuff]]></category>
		<category><![CDATA[calls]]></category>
		<category><![CDATA[domestic]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone 2g]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[touch]]></category>
		<category><![CDATA[Vonage]]></category>
		<category><![CDATA[Vonage Mobile]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=364</guid>
		<description><![CDATA[Short version: Vonage Mobile + iPhone = WIN! Tolstoy version: A few weeks back I received an iPhone 2G as a gift. My wife and I had originally bought it for my father-in-law when the iPhone first came out. He lives in Toronto and had the phone jailbroken so he could use it on Rogers' [...]]]></description>
				<content:encoded><![CDATA[<p>Short version: Vonage Mobile + iPhone = WIN!</p>
<p>Tolstoy version:</p>
<p>A few weeks back I received an iPhone 2G as a gift.  My wife and I had originally bought it for my father-in-law when the iPhone first came out.  He lives in Toronto and had the phone jailbroken so he could use it on Rogers' cell network up in Canada.  Somehow or another the phone's firmware got updated which killed the jailbreak on the phone and he could no longer use it on the Rogers network.  Well, not being a very technical guy, he thought he broke the phone.  He went out and got himself a brand new iPhone 3G S and gave the 2G to me.</p>
<p>He knew that I would figure out a way to get it working again and he was right.  After I figured out what happened to the phone to begin with, I simply upgraded to the 3.0 firmware and jailbroke the phone.  Well, I don't have AT&amp;T.  In fact, I'm a Sprint customer, so I can't use it as my cell phone.  Once I hacktivated the phone, I went ahead and started using it as another iPod Touch.  My 2nd Gen iPod Touch is only 8GB and this one is 16, so I loaded it up with music and put it in the car (my car's radio has an iPod cable).  Well, I really like the iPhone and was trying to figure out a way that I can use this thing to make calls.  There's tons of VoIP apps out there, but none of them gave me the clarity I was looking for.  I even tried using the Skype app and while I sounded great to the person I was calling, they sounded like crap to me.  Enter Vonage Mobile.</p>
<p>I've been seeing commercials for Vonage Mobile for a few weeks now.  It talks about how low it's international rates are and I got to wondering how it would work for domestic calls.  The info in the app store said nothing of domestic calls, so I downloaded it anyway to give it a shot.</p>
<p>Setup was simple.  When asked for my iPhone's phone number, I entered my Google Voice number.  It called that number to verify and it simply went to my Treo Pro.  Once everything was up and running, I made some test calls to my wife and best friend.  The sound quality was amazing on both ends and best of all, domestic calls are FREE!  Granted, I can't use this thing as a "real" cell phone because Vonage only works over WiFi, but when I want to call someone that I don't want to have my cell number I can use the iPhone so they get my Google Voice number.  It'll also come in handy when I'm charging my Treo Pro or something.  I'll figure out a way to use it pretty often.</p>
<p>One thing that is cool about this is if you have the cheapest plan that AT&amp;T offers for your iPhone, you can use Vonage to make your phone calls while you're at home or around a hotspot and NOT eat up your minutes!  I don't think that Vonage is advertising that you can make free domestic calls from their app, so I just thought I'd pass the info along!</p>
<p>Also, if setting up QoS after you do this, the ports are 5060-5062.<br />
<br />
<center><script type="text/javascript"><!--
google_ad_client = "pub-7181617996474576";
google_ad_slot = "4296809367";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=364</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Western Digital MyBook World Edition Hacks</title>
		<link>http://www.gregledet.net/?p=347</link>
		<comments>http://www.gregledet.net/?p=347#comments</comments>
		<pubDate>Wed, 11 Nov 2009 01:39:57 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mbwe]]></category>
		<category><![CDATA[MyBook]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[Nintendo]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Wii]]></category>
		<category><![CDATA[World]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=347</guid>
		<description><![CDATA[I know that I've been moving further and further away from the main purpose of this blog, and that's Cisco networking and security. I'm putting this here so I can remember how to do this stuff later and have a place to look! The MyBook World Edition is a great device that you can do [...]]]></description>
				<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-7181617996474576";
google_ad_slot = "4296809367";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p>I know that I've been moving further and further away from the main purpose of this blog, and that's Cisco networking and security.  I'm putting this here so I can remember how to do this stuff later and have a place to look!  The MyBook World Edition is a great device that you can do tons of stuff with.  It runs Linux, so just about anything you can do with Linux, you can do with this device.</p>
<p>First off, you need to enable SSH on your NAS.  There's a few different ways of doing it.  <a title="Martin Hinner's SSH hack for the MyBook World" href="http://martin.hinner.info/mybook/sshaccess.php" target="_blank">Martin Hinner was the original hack</a>.  I've used this method before and it works just fine.  There's also a slightly cleaner way of doing it <a title="SSH Enable on MyBook World" href="http://mybookworld.wikidot.com/ssh-enable" target="_blank">found here</a>.  I have both scripts on my server should something happen to either one of those.</p>
<blockquote><p>Martin Hinner Original Hack</p>
<p>http:///auth/firmware_upgrade.pl?fwserver=gregledet.net/mybook/firmware.php</p>
<p>Slightly Cleaner Hack from Mybook-Linux</p>
<p>http:///auth/firmware_upgrade.pl?fwserver=gregledet.net/mybook/enablessh.php</p></blockquote>
<p>For both of those, simply plug the link into your browser, add the IP of your MyBook, and it will tell you that there's new firmware available.  Click the button that tells you Download and Install.  It's not going to take the 30 minutes that it'll say on your screen, it should take around 5 or 10.  With the Hinner hack, you may get an error message saying that the firmware update failed.  This happens with firmware 2.00.15 and higher. Don't fret, the script did run.  You'll be fine.  Continue on with the instructions.<em> </em></p>
<ul>
<li>*NOTE* If you have an SSH client, great.  If now, <a title="Download PuTTY" href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html" target="_blank">download PuTTY</a>.  I use it and it works perfectly fine.  Login with the username "root" and the password "root".</li>
<li>*NOTE* If you don't know how to use vi, or if you are uncomfortable using it, <a title="Download WinSCP" href="http://winscp.net/eng/index.php" target="_blank">you can get a program like WinSCP </a>that will allow you to secure FTP into the device.  Then you can download the files to your computer and use the editor of your choice to edit the file (notepad works fine) and upload the new file back to the device.</li>
</ul>
<p>If you use the Martin Hinner hack, after you install the "firmware", you need to make SSH permanent by editing the /etc/inittab and adding the following under the "# Startup the system" part of the file.</p>
<blockquote><p>::sysinit:/usr/sbin/sshd</p></blockquote>
<p>The other way should turn it on permanently by itself. After you add that line for the Hinner hack, or once the "firmware" is installed and you can SSH into the device, you need to reboot.</p>
<blockquote><p>[root@MyBookWorld ~]# reboot</p></blockquote>
<p>Now you have SSH permanently installed on your MyBook World Edition!</p>
<p>One error that I ran into was not being able to get mplayer CE to connect via samba to the network share on the MyBook.  To fix this I had to enable Microsoft Directory Service on the device.  First, you need to add the following lines to the /etc/services file.</p>
<blockquote>
<pre>microsoft-ds    445/tcp                         #Microsoft Directory Service
microsoft-ds    445/udp</pre>
</blockquote>
<p>Add this after "snpp 444/udp # Simple Network Paging Protocol" and before "saft 487/tcp # Simple Asynchronous File Transfer".  Do your best to make it fit in the file.  By that, I mean use the tab key.</p>
<p>After this, you need to edit the /etc/inet.d file and add:</p>
<blockquote><p>microsoft-ds stream tcp nowait root /usr/local/samba/sbin/smbd smbd  -s/etc/smb.conf -l/var/log -d0</p></blockquote>
<p>I would just add it on the second line or at the bottom.  I don't think it matters.</p>
<p>One more file to edit.  This time you need to add the following to the /etc/smb.conf file under "[global]" after "max log size = 1"</p>
<blockquote><p>smb ports = 445</p></blockquote>
<p>A quick reboot and you're done!  This will have you connected to your Wii to stream movies with no problem.</p>
<p>There are tons of sites out there that have great information on hacking your MyBook World Edition.  With the following 2 sites, you should be able to do whatever you want with it.</p>
<p><a title="Martin Hinner's site on Hacking the MyBook World Edition" href="http://martin.hinner.info/mybook/" target="_blank">Martin Hinner's site on Hacking the MyBook World Edition</a><br />
<a title="MyBook World Hacking at wikidot.com" href="http://mybookworld.wikidot.com/" target="_blank">MyBook World Hacking at wikidot.com</a></p>
<p>Those sites should answer any questions you have about anything having to do with Hacking the MyBook World Edition!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=347</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>DD-WRT and the WRT310N: A how-to</title>
		<link>http://www.gregledet.net/?p=341</link>
		<comments>http://www.gregledet.net/?p=341#comments</comments>
		<pubDate>Sun, 08 Nov 2009 19:49:07 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[custom firmware]]></category>
		<category><![CDATA[DD-WRT]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[firmware upgrade]]></category>
		<category><![CDATA[Linksys]]></category>
		<category><![CDATA[mini]]></category>
		<category><![CDATA[standard]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[WRT310N]]></category>
		<category><![CDATA[WRT54G2]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=341</guid>
		<description><![CDATA[A how-to on upgrading the Linksys WRT310N router to DD-WRT firmware]]></description>
				<content:encoded><![CDATA[<p>A few months back I was playing around with my WRT54G2 and ended up bricking it. Don't worry, if you follow the instructions in my post on upgrading the <a title="DD-WRT? In my WRT54G2? It’s more likely than you think!" href="http://www.gregledet.net/?p=232" target="_blank">WRT54G2 to DD-WRT</a>, you'll be fine. I was trying to put firmware on there that didn't fit and I screwed up.  Well, after I bricked it, I decided to pick up a WRT310N from Best Buy. I think I paid around $100 for the router, and after bricking the last one, I decided to not upgrade it to DD-WRT.  Well, that lasted until about an hour ago.</p>
<p>I missed the fun stuff that DD-WRT gives me. After doing some research on putting DD-WRT on the WRT310N, I decided that it wasn't very likely that I would brick the thing, so I got to work on it.  First thing you are going to need is the firmware files.  <a title="WRT310N files" href="http://www.gregledet.net/DD-WRT/WRT310N.zip" target="_blank">You can download everything you need here</a>.  In that zip file you're going to find multiple version of the firmware. I'll get to those in a second. Now, let's do this step by step.</p>
<p>1.)  <strong>D</strong><span><span style="font-weight: bold;">O A HARD RESET BEFORE<span style="font-style: italic;"> </span>YOU FLASH FIRMWARE.</span> This does not mean hitting the reset button and saying you are done. This means doing the 30-30-30 reset. To do a 30-30-30 reset you must push the reset button with your router powered on. Hold it for 30 seconds with the router powered on. STILL holding it, pull the power cord for 30 seconds. Still holding it, plug the router back in and continue to hold the reset button for 30 more seconds. You will have held the button for a full 90 seconds without releasing it. </span>You will not get a password renewal page as you have stock Linksys firmware on the router still.</p>
<p>2.)  Plug a cable into the lan port of the router and your computer, and disable any wireless to the computer. You may have to set a static IP on your computer (I did). Set the IP on your computer to 192.168.1.2, subnet of 255.255.255.0, and the default gateway of 192.168.1.1.</p>
<p>3.)  Go to 192.168.1.1 in your web browser. The stock Linksys username is "admin" and the stock password is "admin".</p>
<p>4.)  Go to the "Administration" tab and click on "Firmware Upgrade".</p>
<p>5.)  Browse to the dd-wrt.v24_mini_wrt310n.bin file that is part of the .zip file I linked to at the top of this post. <strong>YOU NEED TO INSTALL THE MINI FIRST!</strong> You <strong><em>CANNOT</em></strong> install the standard yet.</p>
<p>6.)  Click on the upgrade button and WAIT for the upgrade successful message.  Give it some time and don't be so impatient.  I have received too many emails and comments from people that get impatient and start messing with stuff before the flash is complete.</p>
<p>7.)  Power cycle your router.  (very important) WAIT until you can relogin at 192.168.1.1.  This should take around 20 seconds.  If it takes longer, it takes longer.  Once again, don't get impatient.</p>
<p>8.)  Once the Web GUI for DD-WRT comes up, you will be asked to change your username and password.  Do this immediately.</p>
<p>You can now upgrade to any generic dd-wrt build except Mega and Micro, or you can just leave the mini on there. The Wiki says that you need to do a hard reset before and after flashing to new firmware, but I didn't have any problems without doing a hard reset between the mini and the standard.  NEVER re-use a configuration file from a previous build or another router.  Reconfigure from scratch.</p>
<p>Now, about the <a title="WRT310N files" href="http://www.gregledet.net/DD-WRT/WRT310N.zip" target="_blank">files in the .zip file</a>.  I have included a multitude of firmware packages that will run on this router.  I have the standard, usb, VoIP, and VPN.  All of these have different functions.  I originally put the standard version on and ran into some issues because the Port Forwarding has a bug in it.  You can't add ports to forward!  Once I put the VPN version on, it solved the Port Forwarding issue.  So, if you have to do a lot of Port Forwarding on your router, I suggest using the VPN version that is included in that .zip file.</p>
<p>I hope this guide helps you out.  I haven't had any problems with it yet, and if I do run into issues, I'll be sure to post them here.  Let me know how your upgrade went in the comments below!</p>
<p>-Greg</p>
<p>***EDIT***</p>
<p>I have run into 1 issue so far.  I started messing around with the router trying to set up different things on it.  When I really started banging on it and resetting it, I was having trouble getting an IP address over the WAN link.  Granted, all this took was rebooting the router and the cable modem, but I felt like I should let you guys know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=341</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>ASA WebVPN Base Config</title>
		<link>http://www.gregledet.net/?p=335</link>
		<comments>http://www.gregledet.net/?p=335#comments</comments>
		<pubDate>Tue, 03 Nov 2009 22:12:39 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[anyconnect]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[ASA 5505]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[EasyVPN]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[tunnel]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[WebVPN]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=335</guid>
		<description><![CDATA[I have to do this pretty regularly, so I thought I'd share it here with you guys.  It's pretty straight forward for you CLI junkies.  Now, this is just a BASE config, so don't think this is the end-all, be-all of WebVPN configs.  Of course, change the VPNPool to your own subnet. ip local pool [...]]]></description>
				<content:encoded><![CDATA[<p>I have to do this pretty regularly, so I thought I'd share it here with you guys.  It's pretty straight forward for you CLI junkies.  Now, this is just a BASE config, so don't think this is the end-all, be-all of WebVPN configs.  Of course, change the VPNPool to your own subnet.</p>
<blockquote><p>ip local pool WebVPNPool 10.10.7.100-10.10.7.200 mask 255.255.255.0</p>
<p>webvpn<br />
enable outside<br />
svc image disk0:/anyconnect-win-2.3.0254-k9.pkg 1<br />
svc image disk0:/anyconnect-macosx-i386-2.3.0254-k9.pkg 2<br />
svc enable<br />
tunnel-group-list enable</p>
<p>group-policy WebVPNPolicy internal<br />
group-policy WebVPNPolicy attributes<br />
dns-server value YOUR.DNS.IP.HERE<br />
vpn-tunnel-protocol svc<br />
group-lock value WebVPNAccessProfile<br />
split-tunnel-policy tunnelspecified<br />
split-tunnel-network-list value Split_Tunnel_List<br />
default-domain value yourdomain.local<br />
address-pools value WebVPNPool<br />
webvpn<br />
svc ask none default svc<br />
hidden-shares none<br />
file-entry disable<br />
file-browsing disable<br />
url-entry disable</p>
<p>tunnel-group WebVPNAccessProfile type remote-access<br />
tunnel-group WebVPNAccessProfile general-attributes<br />
default-group-policy WebVPNPolicy<br />
tunnel-group WebVPNAccessProfile webvpn-attributes<br />
group-alias WebVPN enable</p></blockquote>
<p>Pretty simple, huh.  Have fun with it!</p>
<p>-Greg</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=335</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ubuntu + Netgear WGPS606 = Wireless printing!</title>
		<link>http://www.gregledet.net/?p=332</link>
		<comments>http://www.gregledet.net/?p=332#comments</comments>
		<pubDate>Mon, 28 Sep 2009 20:03:00 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[CUPS]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Netgear]]></category>
		<category><![CDATA[printer]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[WGPS606]]></category>
		<category><![CDATA[wireless printing]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=332</guid>
		<description><![CDATA[Today I decided to upgrade my Ubuntu installation to 64bit. I've been running the 32bit version because there was no solid version of flash for the 64bit. Well, after a little research, I found Adobe's alpha version of flash for 64bit Linux. I didn't have a printer setup in my last installation because I didn't [...]]]></description>
				<content:encoded><![CDATA[<p>Today I decided to upgrade my Ubuntu installation to 64bit. I've been running the 32bit version because there was no solid version of flash for the 64bit. Well, after a little research, I found Adobe's alpha version of flash for 64bit Linux.</p>
<p>I didn't have a printer setup in my last installation because I didn't use Linux for any kind of printing.  I want to get into using Linux for more and more things, so I figured it was about time to setup my printer.  I have an HP PSC 1510 All-In-One that is upstairs in my office and it's plugged into a Netgear WGPS606 Wireless print server.  I have no cables running into the office (stupid apartment!), so everything up there is coming off this print server/wireless bridge. A little bit if digging and I finally figured out how to setup this print server in Ubuntu.  Follow the directions below and it works like a charm.  I know this had nothing to do with Cisco networking, but neither did my article on <a title="Creating a Transparent Signature Stamp in Adobe Acrobat" href="http://www.gregledet.net/?p=5" target="_blank">Creating a transparent signature stamp in Adobe Acrobat</a>.</p>
<p>Before you get started, make sure you have the latest firmware on your print server. <a title="Netgear WGPS606 Firmware" href="http://kb.netgear.com/app/answers/detail/a_id/777" target="_blank">You can find it here</a>. The latest firmware is 1025 as of today.</p>
<ol>
<li>Go to <a title="CUPS" href="http://localhost:631" target="_blank">http://localhost:631</a></li>
<li>Click "Administration" in the header.</li>
<li>Authenticate with user: root, password: root's password if you are asked to.</li>
<li>Click "Add Printer" in the Printers section.</li>
<li>Fill in at least "Name" and click "Continue"</li>
<li>In the Device Dropdown box, select "LPD/LPR Host or Printer" and click "Continue"</li>
<li>In the Device URI box put "lpd://&lt;your_wgps606_ip&gt;/L1" or "lpd://&lt;your_wgps606_ip&gt;/L2".  L1 is for the first printer, L2 is for the second.  In my case the full URI is <code>lpd://192.168.1.5/L1</code>.</li>
<li>Select your printer's make and click "Continue"</li>
<li>Select your printer's model and click "Continue"</li>
</ol>
<p>That's all it takes! Shoot a test page to the printer to make sure that everything is working and you should be done! If you have more than one printer plugged into the print server, simply run through the process again and put the other port number in the URI box in #7.</p>
<p>-Greg</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=332</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Wow&#8230; I bombed that interview!</title>
		<link>http://www.gregledet.net/?p=329</link>
		<comments>http://www.gregledet.net/?p=329#comments</comments>
		<pubDate>Mon, 21 Sep 2009 14:06:48 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[CCNA]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[PIX]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=329</guid>
		<description><![CDATA[Friday I had an interview with a large insurance company in Columbus.  Actually, I had 2.  I went there to interview for a firewall job and once I was done with that the recruiter pulled me into another interview for a route/switch job.  In the first interview, there were 5 guys in there.  4 of [...]]]></description>
				<content:encoded><![CDATA[<p>Friday I had an interview with a large insurance company in Columbus.  Actually, I had 2.  I went there to interview for a firewall job and once I was done with that the recruiter pulled me into another interview for a route/switch job.  In the first interview, there were 5 guys in there.  4 of them actually spoke to me and 1 just sat in a corner typing away on his laptop.  I don't know why, but that made me really nervous.  Now, I NEVER get nervous around people, it's just not in me to do so, but this time I got real shaken up.  And it hurt me in the next interview.</p>
<p>I was completely honest with the people in the first interview.  If I didn't know a question, I told them I didn't know the answer and how I would find the answer.  In the second interview though, I drew a complete blank mind.  I didn't remember simple trunking protocols, something that I should remember from my CCNA.  I stumbled over many questions that they asked and most of the stuff was simple things that any CCNA should know, but my mind was clouded.  I choked up, I got even more nervous, and I found out this morning that they passed on me.  I was told that I wasn't strong enough to work there.</p>
<p>I haven't heard back from the firewall job yet and I'm hoping that something comes of it.  I have been in Ohio for a year and 3 days now and I have worked for a total of 3 weeks.  I guess I'm really going to have to hit the books hard and get some of this basic knowledge back to the front of my mind!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=329</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Unspoken Truth About Managing Geeks</title>
		<link>http://www.gregledet.net/?p=327</link>
		<comments>http://www.gregledet.net/?p=327#comments</comments>
		<pubDate>Fri, 11 Sep 2009 12:30:50 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=327</guid>
		<description><![CDATA[Every once in a while, I come across an article that sticks out in my mind.  This is one of those articles: The unspoken truth about managing geeks. I have never read an article that is so dead-on accurate when it comes to the intricacies of dealing with IT personnel.  I highly suggest that everyone [...]]]></description>
				<content:encoded><![CDATA[<p>Every once in a while, I come across an article that sticks out in my mind.  This is one of those articles: <a href="http://www.computerworld.com/s/article/9137708/Opinion_The_unspoken_truth_about_managing_geeks" target="_blank">The unspoken truth about managing geeks.</a> I have never read an article that is so dead-on accurate when it comes to the intricacies of dealing with IT personnel.  I highly suggest that everyone read it, even though it's a tad long at 5 pages.  Also, some of the <a href="http://www.fark.com/cgi/comments.pl?IDLink=4629420" target="_blank">comments on Fark.com</a> about this article pick up where the author left off.</p>
<p>Check it out.  I promise, you won't be disappointed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=327</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Voice!</title>
		<link>http://www.gregledet.net/?p=324</link>
		<comments>http://www.gregledet.net/?p=324#comments</comments>
		<pubDate>Thu, 16 Jul 2009 02:23:53 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Google Voice]]></category>
		<category><![CDATA[VoIP]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=324</guid>
		<description><![CDATA[I've finally received my Google Voice invite!  So far, this is cool as hell.  I just signed up tonight, but I'm loving it.  I even got a VERY cool number!  Drop me a line!]]></description>
				<content:encoded><![CDATA[<p>I've finally received my <a title="Google Voice" href="http://www.google.com/voice" target="_blank">Google Voice</a> invite!  So far, this is cool as hell.  I just signed up tonight, but I'm loving it.  I even got a VERY cool number!  Drop me a line!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="230" height="85" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="FlashVars" value="id=5f6d94a900d3e4cbd32125879980b051050dc8f4&amp;style=0" /><param name="src" value="https://clients4.google.com/voice/embed/webCallButton" /><embed type="application/x-shockwave-flash" width="230" height="85" src="https://clients4.google.com/voice/embed/webCallButton" flashvars="id=5f6d94a900d3e4cbd32125879980b051050dc8f4&amp;style=0" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=324</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DD-WRT, WRT54G2 and YOU!</title>
		<link>http://www.gregledet.net/?p=318</link>
		<comments>http://www.gregledet.net/?p=318#comments</comments>
		<pubDate>Fri, 12 Jun 2009 13:22:10 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=318</guid>
		<description><![CDATA[It looks like my post on DD-WRT and the WRT54G2 is pretty popular with the readers, so I'm going to clear up a few of the questions that have been brought up.  First and foremost, the WRT54G2 is going to run a very limited version of DD-WRT.  If you want to run a full blown [...]]]></description>
				<content:encoded><![CDATA[<p>It looks like my post on DD-WRT and the WRT54G2 is pretty popular with the readers, so I'm going to clear up a few of the questions that have been brought up.  First and foremost, the WRT54G2 is going to run a very limited version of DD-WRT.  If you want to run a full blown version of DD-WRT, you're going to have to get your hands on a WRT54GL or one of the other routers that is designed to run full open source firmware.  I have used these and let me tell you, they work great.  I've set up Chillispots all over the place using those, as well as creating a really nice mesh network for a large office.  So, the answer to one question is yes, you can create a wireless mesh network with DD-WRT.  Even the smallest install supports linking routers and mBSSID just like the much more expensive Aironet products from Cisco.</p>
<p>Now, I have a confession to make.  I bricked my WRT54G2.  I wasn't paying attention and tried to upgrade to a newer version of the firmware when actually it was an older version.  I'm the guy that wrote the how-to on upgrading this router and I screwed it up.  Awesome!  You should be fine as long as you follow the directions in my previous post on this.  Currently I'm running a WRT54G v6 and a WRT310N at the house.  The 54G is running in G only mode, the 310N is running in N only mode.  The reason I'm doing this is because when you run a dual band router in mixed mode, it's going to suck.  I was only connecting to the 310N with my N adapter at 65 Mbps.  Once I added the WRT54G in AP mode and G only and moved the 310N to N only mode, that jumped to over 130 Mbps.</p>
<p>If there are any more questions about this, please don't hesitate to post them.  I'll be more than happy to answer your questions.</p>
<p>-Greg</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=318</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>An open letter to technical recruiters</title>
		<link>http://www.gregledet.net/?p=304</link>
		<comments>http://www.gregledet.net/?p=304#comments</comments>
		<pubDate>Tue, 28 Apr 2009 18:00:27 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[CCNA]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[engineer]]></category>
		<category><![CDATA[idiots]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[mcse]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[project manager]]></category>
		<category><![CDATA[recruiters]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=304</guid>
		<description><![CDATA[(Please read the whole thing before you get mad and click that X at the top right of the screen.) Dear Technical Recruiter, I would first like to thank you for contacting me about the position that you are trying to fill.  I appreciate that you either found my resume on one of the web's [...]]]></description>
				<content:encoded><![CDATA[<p>(Please read the whole thing before you get mad and click that X at the top right of the screen.)</p>
<p>Dear Technical Recruiter,</p>
<p>I would first like to thank you for contacting me about the position that you are trying to fill.  I appreciate that you either found my resume on one of the web's many job sites or that I was already in your database.  Before we get into your email, I would like to cover a few bases with you that I think may help you not only in this search, but in future searches as well.</p>
<p>First off, if we have a previous rapport, it is perfectly fine to contact me with few personal details in your email.  Evidently we have spoken before and you are just passing along information for my consumption.  If we have never been in contact before, I feel that a short introduction is in order.  At least tell me who you are and who you represent.  And no, your email signature is not good enough.  It's not hard to throw in a "Hi Greg!  I'm Joe Schmoe with ABC IT Services!"  It's much better than "I saw your resume online. Look at this job." followed by a signature.  I'm a person... trying being personable.</p>
<p>Secondly, as a technical recruiter, it may help that you have some technical knowledge.  I'm not saying that you have to know everything.  All I'm saying is that some knowledge may be helpful.  It really makes you look like an idiot in some of the job postings when you have no idea what you are talking about.</p>
<p>On that subject, let's talk about industry certifications.  Learn them.  They are your lifeline to the "real" world.  You need to know what each certification is, where it stands in the hierarchy of that technology, and what kind of knowledge it takes to obtain each cert.  Send me one more "entry-level" position that requires a CCIE and I will reply with a very rapidly spreading virus attached to my resume.  Trust me when I say your virus scanner will not pick it up either. And don't think I'm joking with you.  I will do it.  In the world of Cisco, it goes CCENT -&gt; CCNA -&gt; CCNA - Speciality -&gt; CCxP (where x = speciality) -&gt; CCIE - Speciality.  The "A" in CCNA means Associate, the "P" in CCNP means Professional, and the "E" in CCIE means EXPERT.  <a href="http://www.cisco.com/web/learning/le3/learning_career_certifications_and_learning_paths_home.html" target="_blank">May I suggest a quick trip to Cisco's website to brush up on those certs</a>.  It takes all of 5 minutes and makes you look a lot less like a complete idiot.  <a href="http://www.microsoft.com/learning/mcp/newgen/default.mspx" target="_blank">Microsoft has a page like this to</a>. <a href="http://www.citrixtraining.com/courses/certifications/index.cfm" target="_blank">So does Citrix</a>.  I could continue to link to all the sites, but I'm not going to do your job for you.</p>
<p>Thirdly, let's learn a little English.  Now this is a VERY small percentage of you, but when I get an email that reads "<a href="http://www.gregledet.net/images/recruiter-email.jpg" target="_blank">I saw you resume online I like bring your attention to following contract position</a>" I am going to assume that if you can't master the languange of the country you reside in, you can't master your job and therefore I'm not going to want you as the guy that holds my future in his hands.  How can I trust that you will accurately convey my experience and qualifications to the client if you can't accurately convey the job requirements to me?</p>
<p>Now, about the position that you have contacted me about.  Before you start banging out that e-mail to me, do yourself a favor and brush up on those certs we spoke about earlier.  If the job REQUIRES a CCNP and the client is not willing to accept a CCNA in place, don't bother wasting my time or your time.  Also, I have to ask if the client is even sure what he needs.  Is your contact with the client an HR person with no idea what he's talking about when it comes to this position or is he the IT Department head who knows what he wants and needs?  If he's the HR guy, chances are he is about as informed as a house fern when it comes to technology.  He wants to seem smart and impressive so he's going to say he wants that CCIE for his entry to mid level position.  Someone needs to tell him about an old quote...  "Tis better to keep your mouth closed and be thought a fool than open it and remove all doubt".  Let the big boys handle the big jobs.  You are looking for someone to manage your most important asset after your employees; your network.  I understand you want the best person for the job, but please be reasonable in your requests.  Someone that has undertaken the time and expense to obtain a CCIE is not going to even think about accepting your $60k per year job when he can be making $150k elsewhere.</p>
<p>Think/Read before you write/speak/type/forward.  If the client sends you an email with the requirements for a position and in that email one of the requirements is "10 years experience with Microsoft Windows Server 2003" and it's only 2009, contact the client before forwarding me that email.  You will come off like an idiot when I read that and not only will I forward it to all of my friends to show them how big of an idiot you are, I will most likely reply to you to tell you how much of an idiot you are.  If you think that it is a reasonable request for someone to have 10 years experience with Server 2003, quit your job and kill yourself so you do not contaminate the gene pool any further.</p>
<p>Let me give you an example of an unsolicited email that I would like to see.  In this example, you have already looked at my resume and have a position that I may be a fit for.</p>
<blockquote><p>Greg,</p>
<p>My name is Cheesy McHeadhunter with TekNetSolutions Consulting Technology Management.  I came across your resume on I-Need-A-Job-So-I-Can-Buy-Beer.com and have a position that you may be a fit for.  While the requirements for the job state that a CCNP is required, I believe that the client is/would be willing to accept a CCNA and someone with your experience, so please don't let that deter you from getting back with me.  I believe that your resume fits what the client really needs and I'm ready to talk with you about this position.  You can reach me at 212-382-5968 or my email.  I hope to hear from you soon!</p>
<p>-Cheesy</p>
<p>(signature with contact info)</p>
<p>(job info)</p></blockquote>
<p>How hard is that?  You don't look like an idiot, you haven't offended me by treating me like just another set of alphanumeric characters in your "to" line, and it's personable and informative.  Wow.  You just got my attention!  It's SO EASY!  You have just become the guy I want working for me.  I now feel comfortable with you bidding me to prospective clients and I will almost certainly pass your information along to my friends that are in the market for technical positions.  You will now have a whole contact list full of qualified and talented individuals that you can easily place, you'll make better money, and you won't become the laughing stock of the talent pool.</p>
<p>I didn't write this letter to offend you.  I wrote this to help you.  I hope you take this to heart and do what you can in the future to at least TRY to change the perception that we, the talent pool, have of recruiters.  To be honest, we hate dealing with you, but we know it's just a fact of life that we have to.  We know you hate dealing with us too.  You think of us as pretentious geeks, and that's OK.  We are.  Let's just try to make the best of it and make it as painless as possible for the both of us.</p>
<p>Sincerely,</p>
<p>Greg Ledet</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7181617996474576";
google_ad_slot = "4296809367";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=304</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>PAM (Phone as Modem) using Samsung Instinct</title>
		<link>http://www.gregledet.net/?p=292</link>
		<comments>http://www.gregledet.net/?p=292#comments</comments>
		<pubDate>Thu, 12 Mar 2009 20:07:41 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[cellular]]></category>
		<category><![CDATA[Instinct]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[PAM]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[Phone as Modem]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[Samsung Instinct]]></category>
		<category><![CDATA[Sprint]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=292</guid>
		<description><![CDATA[Wow... 2 posts in 1 day.  This is almost unheard of for me!  This past weekend I picked up a Samsung Instinct.  It's a really cool phone with all kinds of cool little gadgets, but if you just go plugging  it in, it won't work as a modem.  I've figured out a little way around [...]]]></description>
				<content:encoded><![CDATA[<p>Wow... 2 posts in 1 day.  This is almost unheard of for me!  This past weekend I picked up a Samsung Instinct.  It's a really cool phone with all kinds of cool little gadgets, but if you just go plugging  it in, it won't work as a modem.  I've figured out a little way around that.</p>
<p>First, you'll notice that when you plug your phone in using the USB cable, it turns off the phone completely and accesses the SD card in the phone.  A simple way around this is to just remove the card.  Easy, right?  Now you're going to need to change a setting in the phone.  You're going to type ##DEBUGMENU# on your keypad (##332846368# for those of you that can't spell).  You'll need your MSL next.  You can normally get this by asking the person at your local Sprint store very nicely.  It'll be a 6 digit number that you'll type in and it'll bring you to a menu.  Go to "Toggle NAI" and Toggle modem off.  Yes, I said turn it off.  Trust me, this is the only way it's going to work.  Once you've got all of that done, create a new Dial-up Networking Connection using your Samsung modem.  Leave the Username and Password blank and use #777 as your dialup number.  That's it!  Pretty simple, eh?</p>
<p>I'm still working out some bugs with this.  The connection doesn't stay up very long, but it will auto-redial, so it doesn't go down for long.  I'm getting about 1.5 Megabit down and 256k up, so it's not blindingly fast, but it works.  Hell, as I write this, I'm sitting in at the bar drinking a beer.  And yes, I'm using my new Samsung Instinct as a modem to do it.</p>
<p>BEWARE!  According to Sprint, even though you have an unlimited data plan, you still have to pay for a PAM plan.  I'm not doing this currently as I'm only testing out the functionality.  I suggest that if you want to use your Instinct as a modem, you buy a plan with Sprint.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=292</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Sometimes raising a little hell pays off</title>
		<link>http://www.gregledet.net/?p=290</link>
		<comments>http://www.gregledet.net/?p=290#comments</comments>
		<pubDate>Thu, 12 Mar 2009 15:00:35 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[CCNA]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[pay rate]]></category>
		<category><![CDATA[salary]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=290</guid>
		<description><![CDATA[Yesterday I wrote in this blog about how the economy is killing our salaries.  If any of you are in the job market looking for work now, you know what I'm talking about.  Evidently there's a few of you out there that are taking that post to heart, as it's been re-posted on a few [...]]]></description>
				<content:encoded><![CDATA[<p>Yesterday I wrote in this blog about how the economy is killing our salaries.  If any of you are in the job market looking for work now, you know what I'm talking about.  Evidently there's a few of you out there that are taking that post to heart, as it's been re-posted on a few other websites dedicated to Cisco and network engineering.  Well, I have some good news.</p>
<p>After talking with the recruiter yesterday, the account manager met with the customer and brought my resume with him.  After looking over my resume and looking at my experience, they decided to bid me at $*EDIT*/hour, which was in the area we originally discussed.  I can only assume that my tirade to the recruiter about making less than the guy that puts the tail-lights on your Mustang worked.  And it's true.  According to the link I put in the post yesterday, A line worker for Ford is currently making $60 per hour including benefits.  That comes out to right at $125,000 per year with benefits.  I remember working a job in which I was making in the $64k per year range and according to H.R. at that company, my total compensation package was around $88k.  If someone is making $125k, I can only imagine what their take home pay is.  My guess is somewhere in the $85k to $90k per year range.</p>
<p>Again, we need to stand together on this.  I'm not proposing a union type of thing, but what I am proposing is that we stand our ground and make sure that we are getting paid what we are worth.  The average cost to get a CCNA is a little over $3000.  Same for a CCDA.  To get a CCIE, you're looking at well over $25,000 after you pay for the parts to build a lab at home, the books you're going to need, and flunking the lab portion of the test 3 or 4 times at $1250 per, plus the cost to fly to the lab location, pay for your hotel, etc.</p>
<p>As network engineers, we are the keepers of the network infrastructure.  We are the ones that keep our networks running and business flowing.  The stress level of our profession is extreme and we need to constantly keep up with new technologies, new hardware and software (moving to an ASA from a PIX and the IOS that comes with it), and whenever something screws up, we're normally the first to be blamed.  That's why I used to wear a t-shirt to work that said "It's not the network" (which you can <a href="http://www.gregledet.net/?page_id=277" target="_blank">buy on the t-shirt link</a> at the top of the page).  Not to mention, we're usually the first line of security on our networks, and that in and of itself carries a huge responsibility.</p>
<p>We need to be paid for all of the crap we have to eat on a daily basis.  We need to be paid for all of the training that we had to go through to get to our current position.  And we sure as hell need to make recruiters realize that, damnit, I've busted my ass for years to reach a senior position and I'm not going to start back at the bottom.  We need to stand up, take a play out of Howard Beale's playbook, and say "I'm mad as hell and I'm not going to take this anymore!"</p>
<p>(Edit) I've decided to edit out what I was bid at on the off chance that I get the job and one of my coworkers looks me up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=290</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The economy is taking its toll on Network Engineers</title>
		<link>http://www.gregledet.net/?p=287</link>
		<comments>http://www.gregledet.net/?p=287#comments</comments>
		<pubDate>Wed, 11 Mar 2009 15:14:12 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[engineers]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[lowball]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[salary]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=287</guid>
		<description><![CDATA[I have been in Ohio now since September 18, 2008.  I worked for a total of 3 weeks since being here.  I've been looking for a job and sending out resumes nearly every day since then.  I've had a few interviews, but nothing has really panned out.  On Friday, I went in for an interview [...]]]></description>
				<content:encoded><![CDATA[<p>I have been in Ohio now since September 18, 2008.  I worked for a total of 3 weeks since being here.  I've been looking for a job and sending out resumes nearly every day since then.  I've had a few interviews, but nothing has really panned out.  On Friday, I went in for an interview with a recruiter who had a few positions with a large enterprise client.  This is surely someone you've heard of and it seems like a company that I would want to go to work for.  During the interview, we spoke about what kind of hourly rate I would require to go to work.  The number we discussed was $35 an hour.  This is a little less than what I was making at my last job, but I'm willing to take a bit of a pay cut to get back to work.  I normally charge $115 an hour for consulting, and I thought that $35 would be reasonable.</p>
<p>I received a phone call this morning from that same recruiter.  He was getting ready to have lunch with the client today and wanted to discuss with me my asking rate.  He told me that he wanted to be competitive and asked if I'd be willing to come down on that rate a little.  I tried to explain to him that I would be willing to come down slightly, but at the same time, I have a resume and a salary history to think about.  Not only that, but I don't feel that I should have to lowball my salary, especially with my experience, to get a 3 month contract.  That's when he hit me with a bit of a bomb.  He told me that he has spoken with other network engineers that would be willing to do the job for $25 per hour.</p>
<p>What the hell is wrong with people?  This is a SENIOR position, not entry level.  Why would someone be willing to belittle themselves and the industry by offering to do a job for so little?  I had to explain to him that I was applying for a senior level position and not an entry level job.  I'm not some kid fresh out of school with a brand new CCNA and no experience.  Then he hit me with a real bombshell.  An entry level engineer with a college degree and a CCNA only makes $15 per hour.  That's $31,200 per year!  I can't even pay my bills with $15 per hour and wouldn't be living comfortable at all with $25 per hour.</p>
<p>I know the economy is in the crapper folks, but as a group we need to stick together and tell these companies that our job demands a serious salary.  If you go into an interview and tell someone that you're willing to work for 2/3 what everyone else makes, you need to reevaluate your position.  Companies need network engineers.  That need will not be going away anytime soon.  If you are a senior level engineer, you need to stand up and tell them "I've worked very long to reach a level of salary that I feel I deserve and I'm not going to fall back to the kind of money that a highschool kid makes!"</p>
<p>I don't know about all of you, but I've busted my ass with hours of study, thousands of dollars in books, labs, tests, etc., and I've dealt with more stress than I can imagine.  Yet, a <a href="http://www.nytimes.com/2009/03/12/business/12auto.html?ref=business" target="_blank">UAW worker for Ford makes $55 per hour, including benefits</a>.  I promise you that a line worker for an auto company hasn't had to go through all the bullshit that I have to get certifications and make sure that he keeps up with the absolute latest in technology.  An UNskilled laborer demands more money than a network engineer.  WTF is wrong with that picture?</p>
<p>I told the recruiter to use his best judgement in shopping me to the client.  I feel that my resume and experience speaks for itself.  I also told him, and I was very blunt in this, that he better not screw me.  If he thinks I'm going to be offended by his offer, don't bother calling me.  The last recruiter I dealt with here did that and it really pissed me off.  I told him I wanted $80k per year, he came back with $50k per year.  I got it up to $65k, took the job, then got laid off 3 weeks later because they didn't have enough work.  I'm not going to let that crap happen again.</p>
<p>Fellow engineers, don't take this crap from recruiters.  I know times are hard and bills have to be paid, but if you hold out just a little longer, the companies are going to come full circle.  They will realize that you need to be paid for what you do and what you know.  Don't lowball yourself!  It's not very becoming of you as a person and it will only hurt everyone else in the field that's out there looking for work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=287</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Time change this weekend!</title>
		<link>http://www.gregledet.net/?p=285</link>
		<comments>http://www.gregledet.net/?p=285#comments</comments>
		<pubDate>Fri, 06 Mar 2009 12:31:40 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Daylight Savings Time]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[NTP]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=285</guid>
		<description><![CDATA[I know it's been a while since I've posted here, so I thought I'd throw something up. As you probably know, the time changed this weekend. We "spring" forward an hour. I made a post back in November about how to set your Cisco devices up to work properly with a time change, so you [...]]]></description>
				<content:encoded><![CDATA[<p>I know it's been a while since I've posted here, so I thought I'd throw something up.  As you probably know, the time changed this weekend.  We "spring" forward an hour.  I made a post back in November about how to set your Cisco devices up to work properly with a time change, so you should check it out.  You can find it here: <a href="http://www.gregledet.net/?p=211" target="_self">http://www.gregledet.net/?p=211</a></p>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=285</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Implementing Login Security Enhancements</title>
		<link>http://www.gregledet.net/?p=283</link>
		<comments>http://www.gregledet.net/?p=283#comments</comments>
		<pubDate>Fri, 12 Dec 2008 13:32:41 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[enhancements]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[password-encryption]]></category>
		<category><![CDATA[quiet-mode]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=283</guid>
		<description><![CDATA[I wanted to go through a few commands today to help you lock down your Cisco devices a little tighter.  I'm just going to go through them one at a time and discuss them as we go. Router (config)# login block-for &#60;seconds&#62; attempts &#60;attempts&#62; within &#60;seconds&#62; What this is used for is to block people [...]]]></description>
				<content:encoded><![CDATA[<p>I wanted to go through a few commands today to help you lock down your Cisco devices a little tighter.  I'm just going to go through them one at a time and discuss them as we go.</p>
<blockquote><p>Router (config)# login block-for &lt;seconds&gt; attempts &lt;attempts&gt; within &lt;seconds&gt;</p></blockquote>
<p>What this is used for is to block people from running a brute-force or dictionary attack on your password.  Normally, the IOS will allow you an unlimited number of attempts to get in, but with this command you can block all logins for a specified number of seconds.  Let's say that you replace the options with (in order) 180, 5, 30.  That means that if someone fails to login after 5 attempts in 30 seconds, the router will block all logins for 180 seconds.  Keep in mind that if an intruder figures out that you're running this, he can perform a kind of DoS attack on you because he'll just keep trying and without plugging in the next command, not even you will be able to login to your own device!</p>
<blockquote><p>Router (config)# login quite-mode access-class &lt;acl&gt;</p></blockquote>
<p>Quiet-mode is what the router goes into when it's blocking logins from the previous command.  If you put together an access-list, say "access-list 10 permit 192.168.1.0", then only IP addresses from that access-list will be allowed to login while the router is in quiet-mode.  Think of it as your back door in when someone is screwing with you.</p>
<blockquote><p>Router (config)# login on-failure log &lt;every #&gt;</p></blockquote>
<p>This will log a syslog message every blank-number of attempts on failures.  Set this to every 2 or 3 failures, because even though you're the administrator of the box, you're going to fat-finger a password or just mistype it every now and again.  If you have good security, you might want to log every successful login, and you do that with...</p>
<blockquote><p>Router (config)# login on-success log 1</p></blockquote>
<p>This will create a syslog message every time someone successfully logs in.</p>
<blockquote><p>Router (config)# security password min-length &lt;number&gt;</p></blockquote>
<p>I think this is pretty self explanatory.  It's always a good practice to require a minimum length password on your devices.</p>
<blockquote><p>Router (config-line)# exec-timeout &lt;min&gt; &lt;sec&gt;</p></blockquote>
<p>You'll notice that this command is issued under a VTY or Console line, and you've probably seen it before.  The default for this command is 5 minutes, and I can't stand getting kicked out of a router after only 5 minutes.  I may be looking something up in Google or something and next thing you know, I've got to log back in.  I normally set this to 15 minutes. You can also do a "no exec-timeout" and that will disable it completely, but you should only do this in a lab environment.</p>
<blockquote><p>Router (config)# service password-encryption</p></blockquote>
<p>This will encrypt every clear text password that you have on your router.  So if you have a console password or something like that, it'll be encrypted.</p>
<p>Hope these help you button things down!</p>
<p>-Greg</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=283</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Buy a T-Shirt!</title>
		<link>http://www.gregledet.net/?p=272</link>
		<comments>http://www.gregledet.net/?p=272#comments</comments>
		<pubDate>Thu, 04 Dec 2008 19:18:38 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=272</guid>
		<description><![CDATA[Hey guys, I'm throwing together some T-Shirt designs and I've decided to let my readers have first crack at them. If you notice at the top of this page, I've put up a new page on the site. Check out my T-Shirts! They make a great Christmas present for yourself or a fellow network engineer! [...]]]></description>
				<content:encoded><![CDATA[<p>Hey guys, I'm throwing together some T-Shirt designs and I've decided to let my readers have first crack at them.  If you notice at the top of this page, I've put up a new page on the site.  Check out my T-Shirts!  They make a great Christmas present for yourself or a fellow network engineer!  I'll be adding shirts regularly, so keep checking until you find something that you like!</p>
<p>-Greg</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=272</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>DD-WRT?  In my WRT54G2?  It&#8217;s more likely than you think!</title>
		<link>http://www.gregledet.net/?p=232</link>
		<comments>http://www.gregledet.net/?p=232#comments</comments>
		<pubDate>Thu, 27 Nov 2008 16:35:26 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[custom firmware]]></category>
		<category><![CDATA[DD-WRT]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[hotspot]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[qos]]></category>
		<category><![CDATA[tomato]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[VxWorks]]></category>
		<category><![CDATA[VxWorks Killer]]></category>
		<category><![CDATA[VxWorks Prep]]></category>
		<category><![CDATA[WRT54G2]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=232</guid>
		<description><![CDATA[Happy Thanksgiving kiddies!  I've decided to put together a little how-to for the home users that may be throwing around the idea of upgrading the firmware on their WRT54G2 to DD-WRT.  "But the WRT54G2 isn't supported by DD-WRT yet Greg!".  Well, that's not exactly true.  Follow these simple instructions and you'll have it done in [...]]]></description>
				<content:encoded><![CDATA[<p>Happy Thanksgiving kiddies!  I've decided to put together a little how-to for the home users that may be throwing around the idea of upgrading the firmware on their WRT54G2 to DD-WRT.  "But the WRT54G2 isn't supported by DD-WRT yet Greg!".  Well, that's not exactly true.  Follow these simple instructions and you'll have it done in less than 10 minutes.</p>
<p>You'll need the following files:</p>
<p>Linksys TFTP utility<br />
VxWorks Prep<br />
VxWorks Killer<br />
DD-WRT Firware</p>
<p>I've put them all <a href="http://www.gregledet.net/DD-WRT/wrt54g2.rar" target="_blank">here for your convenience</a>.</p>
<p><a href="http://www.dd-wrt.com/wiki/index.php/Linksys_WRT54G2" target="_blank">Here is another How-to with a little more information that is based off this one.<br />
</a></p>
<p>Get and install Linksys tftp.exe, set your PC to static IP, 192.168.1.10.</p>
<p>1. Reset the router to defaults on the Linksys Admin page, and let it reboot or manually reboot it after its finished.</p>
<p>2. Set your computer to a static IP of 192.168.1.10/24 and plug Ethernet cable into one of the LAN ports on the router.</p>
<p>3. Close all your browser windows. Start the tftp utility, set server to 192.168.1.1.  Password is "admin" and browse to the VxWorksPrep-G2V1.bin file. Click Upgrade. Wait a minute for it to reboot on its own, if it doesn't, then power cycle the router manually.</p>
<p>4.  In the tftp utility, browse to the VxWorksKiller-G2V1.bin file and click Upgrade. Wait 2 minutes for it to reboot on its own, if it doesn't, then power cycle the router manually.</p>
<p>5. Tftp the DD-WRT firmware to the router, use "dd-wrt.v24-10709_NEWD_micro.bin"; after successful tftp, wait 3 min for the router to finish writing new nvram defaults, etc... It should reboot on it's own at least two times, so give it the 3 min and then open a browser to http://192.168.1.1 (If it not reboots on its own, wait another 1 min, and then power cycle it).</p>
<p>6. When if finishes booting up...do a hard reset on the unit...let it boot again, and configure.</p>
<p>That's it!  Now you have a lot more control over your WRT54G2 v1!</p>
<p><center><script type="text/javascript"><!--
google_ad_client = "pub-7181617996474576";
google_ad_slot = "4296809367";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=232</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
		<item>
		<title>A reader question about TACACS+</title>
		<link>http://www.gregledet.net/?p=220</link>
		<comments>http://www.gregledet.net/?p=220#comments</comments>
		<pubDate>Tue, 25 Nov 2008 12:56:33 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[aaa]]></category>
		<category><![CDATA[accounting]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[authorization]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[default group]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[radius]]></category>
		<category><![CDATA[Secure ACS]]></category>
		<category><![CDATA[TACACS+]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=220</guid>
		<description><![CDATA[Joe the Network Admin (not the plumber) asks about The Quick and Dirty, Cut and Paste TACACS+ install: I am in the process of setting up TACACS+ across our network. Could you please explain the “default group” part of the TACACS commands. I setup a group in ACS called network admins which is mapped to [...]]]></description>
				<content:encoded><![CDATA[<p>Joe the Network Admin (not the plumber) asks about <a title="The Quick and Dirty, Cut and Paste TACACS+ install" href="http://www.gregledet.net/?p=6" target="_blank">The Quick and Dirty, Cut and Paste TACACS+ install</a>:</p>
<blockquote><p><em>I am in the process of setting up TACACS+ across our network. Could you please explain the “default group” part of the TACACS commands. I setup a group in ACS called network admins which is mapped to an active directory group. I want to permit only the users in this group to be able to login to our network infastructure. Would I replace the “default group” part of the command with my network admin group name. Any tips you could give, would be great. Thanks…..Great website!!!</em></p></blockquote>
<p>Well Joe, let's see if we can't get you an answer.  Configuring AAA on Cisco devices is always a pain in my ass, and I feel your pain in setting it up across your network, but it will be for the best.</p>
<p>You are a little mistaken in the command structure for AAA, so I'll try to break it down.  After you have enabled AAA globally, you neeed to define the authentication method lists and apply them.  There are 5 authentication methods: local, group TACACS+, group RADIUS, line, or enable authentication.  So the "login default group tacacs+ local" actually breaks down to "login, default, group tacacs+, local". Let me break down the command "aaa authentication login default group tacacs+ local".</p>
<blockquote><p>aaa authentication login<br />
<strong>default</strong>: Used to create a default that is automatically applied to all lines and interfaces to specify the method or sequence of methods used for authentication.</p>
<p><strong>group</strong> <em>group name</em>: Used to specify the use of a AAA server. The <strong>group radius</strong> and <strong>group tacacs+</strong> methods refer to previously defined RADIUS or TACACS+ servers. The <em>group-name</em> string is used to specify a predefined group of RADIUS or TACACS+ servers for authentication.</p>
<p><strong>local:</strong> The local username and password database is used.</p></blockquote>
<p>To put that simply, you're telling the device that the default way to login is to use TACACS+ first, and if the TACACS+ server isn't available, to use the local database.  This goes the same for all of the other commands.  There is no "default group", but rather you're telling the device that the "default" action is to use "group tacacs+".</p>
<p>I hope that clears it up for you!</p>
<p>Oh, and I almost forgot.  If you only want to allow your admins access to your devices, you do that through the Cisco Secure ACS administration tool (the web admin page), not on the devices themselves.</p>
<p>One last tidbit... TACACS+ uses TCP port 49.</p>
<p>And don't forget, if you have any questions that you want answered, don't hesitate to shoot an email to <a href="mailto:Greg@GregLedet.net">Greg@GregLedet.net</a> or leave a comment on the post you have questions about!  This goes for everyone!</p>
<p><center></p>
<table width="100%" border="0">
<tr>
<td width="65%" valign="top"><strong>Facts in this post were double checked in "Chapter 4 - Configuring AAA" of the CCNA Security Official Exam Certification Guide:</strong></td>
<td width="35%"><iframe src="http://rcm.amazon.com/e/cm?t=gregledet.net-20&#038;o=1&#038;p=8&#038;l=as1&#038;asins=1587202204&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=000000&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</td>
</tr>
</table>
<p></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=220</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Install MagicJack VoIP on Server 2003</title>
		<link>http://www.gregledet.net/?p=217</link>
		<comments>http://www.gregledet.net/?p=217#comments</comments>
		<pubDate>Fri, 21 Nov 2008 23:43:02 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Other stuff]]></category>
		<category><![CDATA[Audio Service]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[G.722]]></category>
		<category><![CDATA[H.323]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[MagicJack]]></category>
		<category><![CDATA[mstsc]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[Server 2003]]></category>
		<category><![CDATA[shadow]]></category>
		<category><![CDATA[sound driver]]></category>
		<category><![CDATA[Telephony Service]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=217</guid>
		<description><![CDATA[I've been going without a land line for a few years now and it's starting to get old.  Because of the plan that my wife and I are on with Sprint, it gets rather expensive when I start going over my minutes.  And I sure as hell didn't want to fork out the kind of [...]]]></description>
				<content:encoded><![CDATA[<p>I've been going without a land line for a few years now and it's starting to get old.  Because of the plan that my wife and I are on with Sprint, it gets rather expensive when I start going over my minutes.  And I sure as hell didn't want to fork out the kind of money that the phone and cable companies charge.  I'm a Cisco Engineer for Christ's Sake!  I should be able to set this up!</p>
<p>So I got my hands on the Cisco uBR924 you see in the rack.  It uses H.323, but I couldn't find a reliable H.323 provider to give me a number.  And I'm lazy.  I'm sure I'll get around to using the H.323 in the modem sooner or later, but I wanted to try this product out anyway.  I ended up ordering a MagicJack.</p>
<p>Well, MagicJack doesn't support Server 2003.  But the only box that I have that stays on 24/7 is my server.  And my server runs... you guessed it... Server 2003.  My install went a little like this.</p>
<p>1. Plug the MagicJack into a USB port and let the drivers install.<br />
2. Once the install runs, go to "My Computer" and run the Autorun on the MagicJack drive<br />
3. Let MagicJack install (it downloads its software)<br />
4. Get the message "No audio devices found no output/input devices are found".<br />
5. Curse loudly at computer and say something along the lines of "Oh, you are GOING to work..."</p>
<p>Because I'm an idiot and didn't realize what I was doing, it was flat NOT going to work.  The reason being is the only sound driver running was the Microsoft RDP Sound Driver.  My server is headless, therefore I needed to be RDP'd into the box.  I'm going to go ahead and make a long story short...</p>
<p>I plugged a keyboard into the box and logged in locally.  I tried to "mstsc /v:server /console", but it still had the RDP driver.  I haven't looked into it, but there may be someway to use the local drivers during that console session.  Once I was logged in locally, I shadowed the local session from an RDP session.  I turned on the Telephony Service, installed the sound drivers (they weren't installed), and started the Windows Audio service.  Once that was done I restarted the MagicJack software and BAM!  It worked.</p>
<p>***EDIT***</p>
<p>I just found out why the "/console" wasn't working when I was RDPing into the box.  It seems that Microsoft changed /console to /admin in Vista for you to login to session 0.  Here's the correct way to do it.  In XP SP2, you want to run "</p>
<p>In Windows XP SP3, Windows Vista or Windows 7, run <strong>%systemroot%\system32\mstsc.exe<span style="color: #ff0000;"> /admin</span></strong></p>
<p>If you are using Windows XP &lt; SP3 the command is:<strong>%systemroot%\system32\mstsc.exe </strong><span style="color: #ff0000;"><strong>/console</strong></span></p>
<p>Once you get the client up, you want to make sure that under the "Local Resources" tab you have the audio options set to "Leave at remote computer".  This should fix that damn "No audio devices found no output/input devices are found" problem without having to plug a monitor and all into your server.</p>
<p>From what I've seen so far using WireShark, this is a simple SIP device that runs the G.711 Codec.  Pretty straight forward.  I'll mess with it some more and get back to you guys.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=217</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>I shall call it &#8220;Mini-Lab&#8221;</title>
		<link>http://www.gregledet.net/?p=215</link>
		<comments>http://www.gregledet.net/?p=215#comments</comments>
		<pubDate>Sun, 16 Nov 2008 02:13:09 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[2620]]></category>
		<category><![CDATA[2924]]></category>
		<category><![CDATA[3620]]></category>
		<category><![CDATA[4500M]]></category>
		<category><![CDATA[Catalyst]]></category>
		<category><![CDATA[CCDA]]></category>
		<category><![CDATA[CCDP]]></category>
		<category><![CDATA[CCIE]]></category>
		<category><![CDATA[CCNA]]></category>
		<category><![CDATA[CCNP]]></category>
		<category><![CDATA[CCSP]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Lab]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[VoIP]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=215</guid>
		<description><![CDATA[I felt like putting something together here at the house to replace what I lost in the hurricanes.  This may have been a Hurricane blog for a short time, but first and foremost it's a Network blog.  I now present to you... Mini-Lab. The 4500M actually has 2 NP-6E's in it (6 Ethernet Ports each).  [...]]]></description>
				<content:encoded><![CDATA[<p>I felt like putting something together here at the house to replace what I lost in the hurricanes.  This may have been a Hurricane blog for a short time, but first and foremost it's a Network blog.  I now present to you... Mini-Lab.</p>
<div class="wp-caption alignnone" style="width: 509px"><a href="http://www.gregledet.net/pics/lab-front.jpg"><img title="Front of Mini-Lab" src="http://www.gregledet.net/pics/lab-front.jpg" alt="Front of Mini-Lab" width="499" height="337" /></a><p class="wp-caption-text">Front of Mini-Lab</p></div>
<div class="wp-caption alignnone" style="width: 509px"><a href="http://www.gregledet.net/pics/lab-back.jpg"><img title="Back of Mini-Lab" src="http://www.gregledet.net/pics/lab-back.jpg" alt="Back of Mini-Lab" width="499" height="337" /></a><p class="wp-caption-text">Back of Mini-Lab</p></div>
<p>The 4500M actually has 2 NP-6E's in it (6 Ethernet Ports each).  It's a work in progress, and I'll defidently be adding on to it, but this is just what I could get my hands on at the present time.  Hell, I may even open it op to some of you guys that are working on their CCNA's and stuff to give you a little rack time.  Just to break it down, here's what you're looking at:</p>
<p>Cisco uBR924 Cable Modem / Router.  Actually supports H.323 voice too<br />
2 x Cisco Catalyst 2924XL-EN switches.  Need to move packets somehow!<br />
Cisco 2620 Router.  With WIC-1DSU-T1.<br />
Cisco 3620 Router.  With 2E-2W and WIC-1DSU-T1<br />
Cisco 4500M Router.  With 2 NP-6E's.  We used these when I was working for an ISP.  Real monsters back in the day</p>
<p>Like I said, it's a work in progress.  I hope to really build this rack up and make it quite the monster.  I'm looking into getting a 2821 to do VoIP with along with a 3560-12 PoE and a couple 7690's.  It should be sweet!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=215</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Daylight savings time in the US and NTP servers.</title>
		<link>http://www.gregledet.net/?p=211</link>
		<comments>http://www.gregledet.net/?p=211#comments</comments>
		<pubDate>Mon, 27 Oct 2008 23:04:17 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[CDT]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Cisco IOS]]></category>
		<category><![CDATA[config t]]></category>
		<category><![CDATA[configure terminal]]></category>
		<category><![CDATA[CST]]></category>
		<category><![CDATA[Daylight Savings Time]]></category>
		<category><![CDATA[EDT]]></category>
		<category><![CDATA[EST]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[MDT]]></category>
		<category><![CDATA[MST]]></category>
		<category><![CDATA[NTP]]></category>
		<category><![CDATA[PDT]]></category>
		<category><![CDATA[pool.ntp.org]]></category>
		<category><![CDATA[PST]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[switch]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=211</guid>
		<description><![CDATA[Here's how you want to set Daylight savings time in the US.  If you haven't done so already, I'm sure your logs may be a little out of wack.  Remember to add your correct time-zone to this, as I'm using Eastern. Router(config)# clock timezone EST -5 Router(config)# clock summer-time EDT recurring 2 Sunday March 02:00 [...]]]></description>
				<content:encoded><![CDATA[<p>Here's how you want to set Daylight savings time in the US.  If you haven't done so already, I'm sure your logs may be a little out of wack.  Remember to add your correct time-zone to this, as I'm using Eastern.</p>
<blockquote><p>Router(config)# clock timezone EST -5<br />
Router(config)# clock summer-time EDT recurring 2 Sunday March 02:00 1 Sunday November  02:00 60</p></blockquote>
<p>Now, let's explain.  What you are doing here is starting by telling your device that you want to set your normal time-zone as Eastern Standard Time with an offset from UTC as -5 Hours.  Then you're going to configure "summer-time" or daylight savings time.  "EDT" is the word used for Eastern Daylight Time.  I'm setting it as "recurring" as we have it every year.  Then I'm telling it to start on the 2nd Sunday of March at 2:00 AM and to end on the 1st Sunday of November at 2:00 AM with a 60 Minute offset.  The US Navy says that these are the proper dates (<a title="Daylight Savings Time from Navy.mil" href="http://aa.usno.navy.mil/faq/docs/daylight_time.php" target="_blank">click here for proof</a>).</p>
<p>While we're at it, let's make sure that our clock is correct.  Here's 2 NTP servers I like to add to my configs:</p>
<blockquote><p>Router(config)# ntp server 149.20.54.20<br />
Router(config)# ntp server 64.73.32.135</p></blockquote>
<p>The DNS names for these servers are 0.north-america.pool.ntp.org and 1.north-america.pool.ntp.org.  You can be pretty sure that they are going to be correct.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=211</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Going backward for a moment</title>
		<link>http://www.gregledet.net/?p=202</link>
		<comments>http://www.gregledet.net/?p=202#comments</comments>
		<pubDate>Mon, 13 Oct 2008 18:04:48 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=202</guid>
		<description><![CDATA[I want to go backwards for a post to Port Security.  Here's a good video that will explain port security and why you need to use it.  This is possibly the best thing on the subject out there. [google -7024262304430693648] -Greg]]></description>
				<content:encoded><![CDATA[<p>I want to go backwards for a post to Port Security.  Here's a good video that will explain port security and why you need to use it.  This is possibly the best thing on the subject out there.</p>
<p>[google -7024262304430693648]</p>
<p>-Greg</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=202</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>I&#8217;m in love with the ASA</title>
		<link>http://www.gregledet.net/?p=200</link>
		<comments>http://www.gregledet.net/?p=200#comments</comments>
		<pubDate>Thu, 09 Oct 2008 17:17:45 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=200</guid>
		<description><![CDATA[I've been messing with old hardware for too long.  I finally got my hands on an ASA 5505 yesterday and I can't take my hands off of it.  I'm in love with this thing.  Especially since I upgraded to ASA 8.0(4) and the ASDM 6.1(3).  There's so much stuff you can do with this little [...]]]></description>
				<content:encoded><![CDATA[<p>I've been messing with old hardware for too long.  I finally got my hands on an ASA 5505 yesterday and I can't take my hands off of it.  I'm in love with this thing.  Especially since I upgraded to ASA 8.0(4) and the ASDM 6.1(3).  There's so much stuff you can do with this little device.  Move up a little in the model line and you can get rid of your PIX 515e, your IDP 4200, and your 3000 series VPN concentrator.  All with one box.</p>
<p>Yeah... I'm in love...</p>
<p>-Greg</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=200</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mental note&#8230;</title>
		<link>http://www.gregledet.net/?p=198</link>
		<comments>http://www.gregledet.net/?p=198#comments</comments>
		<pubDate>Wed, 08 Oct 2008 15:36:00 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.gregledet.net/?p=198</guid>
		<description><![CDATA[When receiving CRC errors on an interface, check for duplex mismatch.  Don't forget this.]]></description>
				<content:encoded><![CDATA[<p>When receiving CRC errors on an interface, check for duplex mismatch.  Don't forget this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gregledet.net/?feed=rss2&#038;p=198</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
