<?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>Kyle Brandt &#187; Uncategorized</title>
	<atom:link href="http://www.kbrandt.com/category/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kbrandt.com</link>
	<description>Original computing and productivity articles by a Linux administrator</description>
	<lastBuildDate>Tue, 06 Jul 2010 01:04:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New Position and the Server Fault Blog</title>
		<link>http://www.kbrandt.com/2010/07/new-position-and-the-server-fault-blog.html</link>
		<comments>http://www.kbrandt.com/2010/07/new-position-and-the-server-fault-blog.html#comments</comments>
		<pubDate>Tue, 06 Jul 2010 01:04:34 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kbrandt.com/?p=573</guid>
		<description><![CDATA[I have switched jobs and am now working for Stack Overflow. This is an exciting position for me as I have been following the two co-founders Jeff Atwood and Joel Spolsky for a while now.  As part of my new job I will be writing articles on the Official Serverfault Blog and already wrote [...]]]></description>
			<content:encoded><![CDATA[<p>I have <a href="http://blog.stackoverflow.com/2010/06/server-fault-hiring-from-the-community/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://blog.stackoverflow.com/2010/06/server-fault-hiring-from-the-community/');">switched jobs</a> and am now working for <a href="http://stackoverflow.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://stackoverflow.com/');">Stack Overflow</a>. This is an exciting position for me as I have been following the two co-founders <a href="http://www.codinghorror.com/blog/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.codinghorror.com/blog/');">Jeff Atwood</a> and <a href="http://www.joelonsoftware.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.joelonsoftware.com/');">Joel Spolsky</a> for a while now.  As part of my new job I will be writing articles on the <a href="http://blog.serverfault.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://blog.serverfault.com/');">Official Serverfault Blog</a> and already wrote my first article about using fault tree analysis as a system administrator. </p>
<p><a href="http://serverfault.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://serverfault.com/');">Server Fault</a> is a question answer site for system administrators and has built a nice community of some dedicated system administrators who are serious about what they do. Next time you have a system administration or networking questions I recommend you head over there and ask a question!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kbrandt.com/2010/07/new-position-and-the-server-fault-blog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Trick Not to Lock Yourself Out when Remotely Administering Cisco Routers</title>
		<link>http://www.kbrandt.com/2009/09/quick-tip-trick-not-to-lock-yourself-out-when-remotely-administering-cisco-routers.html</link>
		<comments>http://www.kbrandt.com/2009/09/quick-tip-trick-not-to-lock-yourself-out-when-remotely-administering-cisco-routers.html#comments</comments>
		<pubDate>Mon, 14 Sep 2009 17:57:19 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[ios]]></category>

		<guid isPermaLink="false">http://www.kbrandt.com/?p=362</guid>
		<description><![CDATA[I remotely administer Cisco routers, which can be a bit stressful since I need make sure not lock my self out by do something like removing a NAT command, editing ACL, or screwing up a VPN tunnel.  A Cisco support person pointed out to me that I can use the reload command to schedule [...]]]></description>
			<content:encoded><![CDATA[<p>I remotely administer Cisco routers, which can be a bit stressful since I need make sure not lock my self out by do something like removing a NAT command, editing ACL, or screwing up a VPN tunnel.  A Cisco support person pointed out to me that I can use the reload command to schedule reboots, so if I lock myself out, I just have to wait until that timer runs out.  If I don&#8217;t need it, I can cancel the scheduled reload.  So, before you start running, copy the running configuration if you are happy with it using &#8216;copy run start&#8217;.  Then you can use this trick as follows:</p>
<pre class="brush: php">
Lab1#copy run start
Destination filename [startup-config]?
Building configuration...
[OK]
Lab1#reload in 8
Reload scheduled in 8 minutes by console
Reload reason: Reload Command
Proceed with reload? [confirm]y
Lab1#
Lab1#show reload
Reload scheduled in 7 minutes by console
Reload reason: Reload Command
Lab1#reload in 12
Reload scheduled in 12 minutes by console
Reload reason: Reload Command
Proceed with reload? [confirm]y
Lab1#show reload
Reload scheduled in 11 minutes by console
Reload reason: Reload Command
Lab1#reload cancel
***
*** --- SHUTDOWN ABORTED ---
***
Lab1#show reload
No reload is scheduled.
Lab1#
</pre>
<p>Notice in line 13 you can reset or bump up the timer.  And you can always use &#8217;show reload&#8217; to see how much time you have. Of course, now you have to be careful not to let the timer run out or forget to remove it.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kbrandt.com/2009/09/quick-tip-trick-not-to-lock-yourself-out-when-remotely-administering-cisco-routers.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just for Fun: Governmental and Corporate Visitors to this Weblog</title>
		<link>http://www.kbrandt.com/2008/07/just-for-fun-governmental-and-corporate.html</link>
		<comments>http://www.kbrandt.com/2008/07/just-for-fun-governmental-and-corporate.html#comments</comments>
		<pubDate>Wed, 16 Jul 2008 16:02:00 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kbrandt.com/?p=29</guid>
		<description><![CDATA[I use Statcounter and Google analytics to keep track of what articles people are actually looking for.  One thing that also gets tracked is where the people are that are visiting.  Some of my corporate and government readers in the past month are:
NSA/NCSC
Navy.mil
DISA.mil
Cisco Systems
Raytheon
Boeing
Lockheed Martin
ITA software
Fidelity
Sun Microsystems
DreamWorks Animation
Deutsche Bank
IBM
Intel
Almost all of my traffic [...]]]></description>
			<content:encoded><![CDATA[<p>I use <a href="http://www.statcounter.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.statcounter.com/');">Statcounter</a> and <a href="http://www.google.com/analytics/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.google.com/analytics/');">Google analytics</a> to keep track of what articles people are actually looking for.  One thing that also gets tracked is where the people are that are visiting.  Some of my corporate and government readers in the past month are:</p>
<p>NSA/NCSC<br />
Navy.mil<br />
DISA.mil<br />
Cisco Systems<br />
Raytheon<br />
Boeing<br />
Lockheed Martin<br />
ITA software<br />
Fidelity<br />
Sun Microsystems<br />
DreamWorks Animation<br />
Deutsche Bank<br />
IBM<br />
Intel</p>
<p>Almost all of my traffic comes from Google searches.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kbrandt.com/2008/07/just-for-fun-governmental-and-corporate.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
