<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>version7x's notes</title>
	<atom:link href="http://version7x.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://version7x.wordpress.com</link>
	<description>Tech stuff I always forget, but need to remember</description>
	<lastBuildDate>Tue, 30 Aug 2011 15:58:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='version7x.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>version7x's notes</title>
		<link>http://version7x.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://version7x.wordpress.com/osd.xml" title="version7x&#039;s notes" />
	<atom:link rel='hub' href='http://version7x.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Linux Password and Account Security</title>
		<link>http://version7x.wordpress.com/2011/05/16/linux-password-and-account-security/</link>
		<comments>http://version7x.wordpress.com/2011/05/16/linux-password-and-account-security/#comments</comments>
		<pubDate>Mon, 16 May 2011 20:37:47 +0000</pubDate>
		<dc:creator>version7x</dc:creator>
				<category><![CDATA[command line]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://version7x.wordpress.com/?p=100</guid>
		<description><![CDATA[After recently going through a security audit, I was trying to remember where I documented the user account/password settings configured on my Redhat hosts. Here are the basics: /etc/login.defs &#8211; Controls account creation requirements&#8230; Password aging, length, umask, encryption (and more) &#8211; however changes made to existing accounts (passwords, aging, etc) can be controlled by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=100&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After recently going through a security audit, I was trying to remember where I documented the user account/password settings configured on my Redhat hosts.</p>
<p>Here are the basics:<br />
<strong>/etc/login.defs</strong>  &#8211; Controls account creation requirements&#8230; Password aging, length, umask, encryption (and more) &#8211; however changes made to existing accounts (passwords, aging, etc) can be controlled by PAM</p>
<p><strong>/etc/pam.d/system-auth</strong> &#8211; Controls password length, strength, etc</p>
<p><strong>/etc/login.defs</strong> is fairly well commented and is part of the shadow password suite.  Most admins will have no issues setting this to fit their needs.  Here are some settings that you may want to alter:<br />
<code>PASS_MAX_DAYS     90<br />
PASS_MIN_DAYS      1<br />
PASS_MIN_LEN     8<br />
PASS_WARN_AGE     7</code></p>
<p>Other settings like umask, encryption (md5), home directories and other options have defaults that will most likely meet your needs, however, look over them and configure as needed.  The man page on login.defs is also very helpful(man 5 login.defs).</p>
<p><strong>/etc/pam.d/system-auth</strong> controls some additional password information.  Two really useful modules are  <strong>pam_passwdqc </strong>and <strong>pam_tally</strong></p>
<p>For <strong>pam_passwdqc</strong>, find the following in the file:</p>
<p><code>password    requisite     pam_cracklib.so try_first_pass retry=3</code></p>
<p>and replace with this line:</p>
<p><code>password    requisite    pam_passwdqc.so min=disabled,disabled,12,8,7 retry=3</code></p>
<p>The &#8220;min=&#8221; entry sets MINIMUM password length for  different password classes separated by commas -N0,N1,N2,N3,N4<br />
N0 &#8211; passwords with characters of only one type (i.e. only lowercase letters)<br />
N1 &#8211; passwords with characters of two types<br />
N2 &#8211; general passprases (consisting of several words &#8211; defined by passphrase=N option)<br />
N3 and N4 &#8211; passwords consisting of characters from three and four character classes</p>
<p>So, the following:</p>
<p><code>min=disabled,disabled,24,10,8</code></p>
<p>Shows N0 and N1 not allowed and minimum requirements for the others</p>
<p>See the manpage for pam_passwdqc for more information on this subject.</p>
<p>For <strong>pam_tally</strong>, insert the following line to count failed login attempts and lock accounts:</p>
<p><strong>auth required pam_tally.so onerr=fail deny=5 unlock_time=36000</strong></p>
<p>This will lock the account after 5 unsuccessful attempts for 10 hours.  Failed login information is stored in /var/log/faillog.  Login failure counts can be reset by the faillog command.</p>
<p>For more information, see the man pages for pam_tall and faillog</p>
<p>Note:  </p>
<p>1. Both options have password length, I&#8217;ve seen inconsistencies and weird issues when the two don&#8217;t match.<br />
2. Mis-configured PAM can hose your system and your ability to fix it.  make sure you backup your system-auth file before making ANY changes.<br />
3. Runninng &#8220;authconfig&#8221; on a rhel system will overwrite your changes to the /etc/pam.d/system-auth file &#8211; so be careful with it or disable it.<br />
4. PAM configuration has an endless number of options and you can explore the setup by viewing the different entries in your /etc/pam.d/* files.<br />
5. Both pam_cracklib and pam_passwdqc help secure passwords &#8211; pam_passwdqc has more options and features including support for stronger enforcement.  For a quick discussion on one vs two vs both&#8230;<a href="http://www.redhat.com/archives/pam-list/2002-June/msg00013.html" title="RHEL Mailing list - cracklib vs passwdqc"> look here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/version7x.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/version7x.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/version7x.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/version7x.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/version7x.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/version7x.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/version7x.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/version7x.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/version7x.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/version7x.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/version7x.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/version7x.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/version7x.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/version7x.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=100&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://version7x.wordpress.com/2011/05/16/linux-password-and-account-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d131e6f4f8de8847b8cf5be2f3465ae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">version7x</media:title>
		</media:content>
	</item>
		<item>
		<title>Quick Tripwire type Audits with RPM</title>
		<link>http://version7x.wordpress.com/2011/05/16/quick-tripwire-type-audits-with-rpm/</link>
		<comments>http://version7x.wordpress.com/2011/05/16/quick-tripwire-type-audits-with-rpm/#comments</comments>
		<pubDate>Mon, 16 May 2011 18:13:49 +0000</pubDate>
		<dc:creator>version7x</dc:creator>
				<category><![CDATA[command line]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://version7x.wordpress.com/?p=96</guid>
		<description><![CDATA[For file audits on a system, rpm provides some built in checking features. Using the -V or &#8211;verify command, you can check the consistency of the files included packages. The output for a verify command will list its finding in a filesystem permissions like output. Here&#8217;s an example: $ sudo rpm -V screen S.?..... /usr/bin/screen [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=96&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For file audits on a system, rpm provides some built in checking features.  Using the -V or &#8211;verify command, you can check the consistency of the files included packages.</p>
<p>The output for a verify command will list its finding in a filesystem permissions like output.  Here&#8217;s an example:</p>
<p><code>$ sudo rpm -V screen</p>
<p>S.?.....    /usr/bin/screen</code></p>
<p>Below is the output key for quick analyses:</p>
<p><code>       S file Size differs<br />
       M Mode differs (includes permissions and file type)<br />
       5 MD5 sum differs<br />
       D Device major/minor number mismatch<br />
       L readLink(2) path mismatch<br />
       U User ownership differs<br />
       G Group ownership differs<br />
       T mTime differs</code></p>
<p>So, for the above output, we see that the file size has changed from the information contained in the signed package.</p>
<p>The one benefit of this method of checking over tripwire is that when an RPM is updated, there is no configuration required to scan your system for the changed binaries.  <strong> HOWEVER</strong> &#8211; If you are in need of a serious security/audit function for file integrity checking, use tripwire over rpm.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/version7x.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/version7x.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/version7x.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/version7x.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/version7x.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/version7x.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/version7x.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/version7x.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/version7x.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/version7x.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/version7x.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/version7x.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/version7x.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/version7x.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=96&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://version7x.wordpress.com/2011/05/16/quick-tripwire-type-audits-with-rpm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d131e6f4f8de8847b8cf5be2f3465ae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">version7x</media:title>
		</media:content>
	</item>
		<item>
		<title>Find your HMC Name from the command line of the LPAR</title>
		<link>http://version7x.wordpress.com/2011/03/25/find-your-hmc-name-from-the-command-line-of-the-lpar/</link>
		<comments>http://version7x.wordpress.com/2011/03/25/find-your-hmc-name-from-the-command-line-of-the-lpar/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 19:12:19 +0000</pubDate>
		<dc:creator>version7x</dc:creator>
				<category><![CDATA[AIX]]></category>

		<guid isPermaLink="false">http://version7x.wordpress.com/?p=89</guid>
		<description><![CDATA[Sometimes you have the luxury of only having a couple of HMC&#8217;s to manage all of your LPARs. Other times, however, someone else plans to add six hmc&#8217;s for every new Frame and things get a little confusing. If you&#8217;re not sure which HMC&#8217;s have control of an LPAR, use this command to get the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=89&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes you have the luxury of only having a couple of HMC&#8217;s to manage all of your LPARs.  Other times, however, someone else plans to add six hmc&#8217;s for every new Frame and things get a little confusing.</p>
<p>If you&#8217;re not sure which HMC&#8217;s have control of an LPAR, use this command to get the low down:</p>
<p><strong>lsrsrc IBM.ManagementServer</strong></p>
<p><code>$ lsrsrc IBM.ManagementServer</p>
<p>Resource Persistent Attributes for IBM.ManagementServer<br />
resource 1:<br />
        Name             = "10.0.5.111"<br />
        Hostname         = "10.0.5.111"<br />
        ManagerType      = "HMC"<br />
        LocalHostname    = "10.0.1.150"<br />
        ClusterTM        = "1234-567"<br />
        ClusterSNum      = ""<br />
        ActivePeerDomain = ""<br />
        NodeNameList     = {"mynode1"}</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/version7x.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/version7x.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/version7x.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/version7x.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/version7x.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/version7x.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/version7x.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/version7x.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/version7x.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/version7x.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/version7x.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/version7x.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/version7x.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/version7x.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=89&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://version7x.wordpress.com/2011/03/25/find-your-hmc-name-from-the-command-line-of-the-lpar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d131e6f4f8de8847b8cf5be2f3465ae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">version7x</media:title>
		</media:content>
	</item>
		<item>
		<title>Find your machine Serial Number from the command line</title>
		<link>http://version7x.wordpress.com/2011/03/23/find-your-machine-serial-number-from-the-command-line/</link>
		<comments>http://version7x.wordpress.com/2011/03/23/find-your-machine-serial-number-from-the-command-line/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 15:09:10 +0000</pubDate>
		<dc:creator>version7x</dc:creator>
				<category><![CDATA[AIX]]></category>
		<category><![CDATA[command line]]></category>

		<guid isPermaLink="false">http://version7x.wordpress.com/2011/03/23/find-your-machine-serial-number-from-the-command-line/</guid>
		<description><![CDATA[I&#8217;m constantly looking for ways to avoid GUI&#8217;s. They seem to be much slower, less functional, and generally don&#8217;t work with the way my mind works&#8230; So here&#8217;s a command to find the serial number of frame your LPAR is sitting on: lsattr -El sys0 -a systemid $ lsattr -El sys0 -a systemid systemid IBM,00000XXXXX [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=87&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m constantly looking for ways to avoid GUI&#8217;s.  They seem to be much slower, less functional, and generally don&#8217;t work with the way my mind works&#8230;</p>
<p>So here&#8217;s a command to find the serial number of frame your LPAR is sitting on:</p>
<p><strong>lsattr -El sys0 -a systemid</strong></p>
<p><code>$ lsattr -El sys0 -a systemid<br />
systemid IBM,00000XXXXX Hardware system identifier False</code></p>
<p>To format this to the normal XX-XXXXX version, use something like this in a script:</p>
<p><code>SERIAL=$(lsattr -El sys0 -a systemid |cut -d"," -f2 | awk '{print $1}')<br />
PREFIX=$(echo ${SERIAL} |cut -c3-4)<br />
SUFFIX=$(echo ${SERIAL} |cut -c5-9)</p>
<p>S_NUMBER=$(echo ${PREFIX}-${SUFFIX})</code></p>
<p>Now you have the $S_NUMBER variable with the properly formatted Serial Number </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/version7x.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/version7x.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/version7x.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/version7x.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/version7x.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/version7x.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/version7x.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/version7x.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/version7x.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/version7x.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/version7x.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/version7x.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/version7x.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/version7x.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=87&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://version7x.wordpress.com/2011/03/23/find-your-machine-serial-number-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d131e6f4f8de8847b8cf5be2f3465ae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">version7x</media:title>
		</media:content>
	</item>
		<item>
		<title>I thought I fixed that!</title>
		<link>http://version7x.wordpress.com/2010/10/12/i-thought-i-fixed-that/</link>
		<comments>http://version7x.wordpress.com/2010/10/12/i-thought-i-fixed-that/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 22:33:22 +0000</pubDate>
		<dc:creator>version7x</dc:creator>
				<category><![CDATA[AIX]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://version7x.wordpress.com/?p=85</guid>
		<description><![CDATA[I recently came across a situation where an AIX host had dual gateways due to a typo I made during installation. This caused the whole system to slow to a crawl as it attempted to spam the false gateway with mis-guided network traffic. The first thing I did was dynamically remove the additional route $ [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=85&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently came across a situation where an AIX host had dual gateways due to a typo I made during installation.  This caused the whole system to slow to a crawl as it attempted to spam the false gateway with mis-guided network traffic.  The first thing I did was dynamically remove the additional route</p>
<p><code>$ sudo route del net default 10.0.1.254</code></p>
<p>While this cleared up the traffic and helped the server resume normal operations, it wasn&#8217;t persistent.</p>
<p>I couldn&#8217;t remember the command line that caused AIX&#8217;s ODM to remember the settings at reboot, so I used smit..</p>
<p><code>$ sudo smitty tcpip<br />
$ sudo smitty route</code></p>
<p>Both options seemed to work, but weren&#8217;t persistent after a reboot.  After some digging, I found out why&#8230;.</p>
<p>The smitty tcpip command was wrong&#8230; period.<br />
And the smitty route (specifying delete a route) won&#8217;t work unless you flush the routes first (duh!).</p>
<p>Here&#8217;s what I found for command line options to save myself some grief next time&#8230;</p>
<p><code>$ sudo route -f<br />
$ sudo chdev -l inet0 -a route=0,10.0.1.254</code></p>
<p>Persistent and works without smit! </p>
<p>Also note that the following will work in place of &#8220;route -f&#8221;<br />
<code>route delete 0</code></p>
<p>There&#8217;s a decent <a href="http://www.tek-tips.com/viewthread.cfm?qid=1074743&amp;page=1">discussion of it here</a> which would have saved me some pain had I found this before I figured it out.</p>
<p>Enjoy!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/version7x.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/version7x.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/version7x.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/version7x.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/version7x.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/version7x.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/version7x.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/version7x.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/version7x.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/version7x.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/version7x.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/version7x.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/version7x.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/version7x.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=85&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://version7x.wordpress.com/2010/10/12/i-thought-i-fixed-that/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d131e6f4f8de8847b8cf5be2f3465ae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">version7x</media:title>
		</media:content>
	</item>
		<item>
		<title>Command line file encryption</title>
		<link>http://version7x.wordpress.com/2010/10/12/command-line-file-encryption/</link>
		<comments>http://version7x.wordpress.com/2010/10/12/command-line-file-encryption/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 22:19:31 +0000</pubDate>
		<dc:creator>version7x</dc:creator>
				<category><![CDATA[AIX]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[openssl]]></category>

		<guid isPermaLink="false">http://version7x.wordpress.com/?p=82</guid>
		<description><![CDATA[If you&#8217;ve ever come across a situation where a file has sensitive contents and it needs to be unreadable to others&#8230; SSL is here to encrypt your file. (excitement!) It&#8217;s fairly easy to encrypt &#8220;somefile&#8221;: openssl enc -aes-256-cbc -salt -in somefile -out somefile.enc Basically, with openssl, we&#8217;re asking it to: encrypt a file &#8211; enc [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=82&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever come across a situation where a file has sensitive contents and it needs to be unreadable to others&#8230; SSL is here to encrypt your file.</p>
<p>(excitement!)</p>
<p>It&#8217;s fairly easy to encrypt &#8220;somefile&#8221;:</p>
<p><code>openssl enc -aes-256-cbc -salt -in somefile -out somefile.enc</code></p>
<p>Basically, with openssl, we&#8217;re asking it to:<br />
encrypt a file &#8211; enc<br />
use a good encryption method &#8211; aes-256-cbc<br />
give us some salt (to enhance encryption)<br />
specify the file we want to encrypt &#8211; in somefile<br />
and specify what we want the encrypted version to be called&#8230; i used .enc, but you can have fun and use something like .tar&#8230; just to add confusion for no reason.</p>
<p><code>$ openssl enc -aes-256-cbc -salt -in somefile -out somefile.enc<br />
enter aes-256-cbc encryption password:<br />
Verifying - enter aes-256-cbc encryption password:<br />
$<br />
$ ls  -l somefile*<br />
-rw-r-----    1 me system           19 Oct 12 15:16 somefile<br />
-rw-r-----    1 me system           48 Oct 12 15:17 somefile.enc<br />
$</code></p>
<p>just make sure to remove the original file or you&#8217;ll be no better off than you were a minute ago </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/version7x.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/version7x.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/version7x.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/version7x.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/version7x.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/version7x.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/version7x.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/version7x.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/version7x.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/version7x.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/version7x.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/version7x.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/version7x.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/version7x.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=82&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://version7x.wordpress.com/2010/10/12/command-line-file-encryption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d131e6f4f8de8847b8cf5be2f3465ae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">version7x</media:title>
		</media:content>
	</item>
		<item>
		<title>Screen Startup</title>
		<link>http://version7x.wordpress.com/2010/09/03/screen-startup/</link>
		<comments>http://version7x.wordpress.com/2010/09/03/screen-startup/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 18:28:39 +0000</pubDate>
		<dc:creator>version7x</dc:creator>
				<category><![CDATA[.rc files]]></category>
		<category><![CDATA[AIX]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://version7x.wordpress.com/?p=79</guid>
		<description><![CDATA[I think GNU screen is an incredible utility. However, on every new system, it takes me a while to remember some basic settings that make my setup usable. I&#8217;ve pasted my basic .screenrc below to help me remember! vbell on autodetach on startup_message off shell -$SHELL defhstatus "screen: ^En (^Et)" defscrollback 10000 term vt100 unsetenv [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=79&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I think GNU screen is an incredible utility.  However, on every new system, it takes me a while to remember some basic settings that make my setup usable.  I&#8217;ve pasted my basic .screenrc below to help me remember!<br />
<code><br />
vbell on<br />
autodetach on<br />
startup_message off</p>
<p>shell -$SHELL<br />
defhstatus "screen: ^En (^Et)"<br />
defscrollback 10000<br />
term vt100</p>
<p>unsetenv SSH_AUTH_SOCK<br />
setenv SSH_AUTH_SOCK "$HOME/.screen/ssh-auth-sock.$HOSTNAME"</p>
<p>hardstatus alwayslastline "%w"</p>
<p>screen -t working<br />
screen -t logs<br />
screen -t scratch-A<br />
screen -t scratch-B<br />
screen -t test<br />
screen -t misc</p>
<p>bindkey "^[Od" prev  # change window with ctrl-left<br />
bindkey "^[Oc" next  # change window with ctrl-right</p>
<p>caption always "%{wk}%?%-Lw%?%{wg}%n*%f %t%?(%u)%?%{wk}%?%+Lw%? %= %{= kw}%110`@%109`"</p>
<p>hardstatus string '%{= kg} %= %114`%115`%117`%118`%116`%106`%103`%105`%107`%Y-%m-%d %0c:%s'</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/version7x.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/version7x.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/version7x.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/version7x.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/version7x.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/version7x.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/version7x.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/version7x.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/version7x.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/version7x.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/version7x.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/version7x.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/version7x.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/version7x.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=79&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://version7x.wordpress.com/2010/09/03/screen-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d131e6f4f8de8847b8cf5be2f3465ae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">version7x</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Packages from the commandline on Mac</title>
		<link>http://version7x.wordpress.com/2010/08/27/installing-packages-from-the-commandline-on-mac/</link>
		<comments>http://version7x.wordpress.com/2010/08/27/installing-packages-from-the-commandline-on-mac/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 23:08:42 +0000</pubDate>
		<dc:creator>version7x</dc:creator>
				<category><![CDATA[command line]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://version7x.wordpress.com/2010/08/27/installing-packages-from-the-commandline-on-mac/</guid>
		<description><![CDATA[So, recently, I was attempting to install a package, but needed some of the environment variables I had set in my terminal. I&#8217;m sure there&#8217;s a better way to do this, (i.e. configuring the desktop with the correct settings) but this is the way that worked for me. First of all, if its a dmg [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=73&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, recently, I was attempting to install a package, but needed some of the environment variables I had set in my terminal.  I&#8217;m sure there&#8217;s a better way to do this, (i.e. configuring the desktop with the correct settings)  but this is the way that worked for me.</p>
<p>First of all, if its a dmg file, it needs to be mounted.</p>
<p><code>sudo hdiutil attach ./some-package.dmg</code></p>
<p>Once attached, you&#8217;re ready to rock!<br />
<code><br />
sudo installer -pkg /Volumes/some-package/here.pkg -target /</code></p>
<p>Yay!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/version7x.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/version7x.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/version7x.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/version7x.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/version7x.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/version7x.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/version7x.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/version7x.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/version7x.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/version7x.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/version7x.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/version7x.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/version7x.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/version7x.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=73&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://version7x.wordpress.com/2010/08/27/installing-packages-from-the-commandline-on-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d131e6f4f8de8847b8cf5be2f3465ae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">version7x</media:title>
		</media:content>
	</item>
		<item>
		<title>Command Line Mac Desktop sharing</title>
		<link>http://version7x.wordpress.com/2010/08/27/command-line-mac-desktop-sharing/</link>
		<comments>http://version7x.wordpress.com/2010/08/27/command-line-mac-desktop-sharing/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 23:03:38 +0000</pubDate>
		<dc:creator>version7x</dc:creator>
				<category><![CDATA[command line]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[vnc]]></category>

		<guid isPermaLink="false">http://version7x.wordpress.com/2010/08/27/command-line-mac-desktop-sharing/</guid>
		<description><![CDATA[Here&#8217;s a helpful tip for turning on and off Destop sharing in Mac. First things first&#8230; ssh to the computer you want to view and turn on VNC&#8230; er.. Apple&#8217;s Desktop Sharing. sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -activate -configure -access -on -clientopts -setvnclegacy -vnclegacy yes -clientopts -setvncpw -vncpw mypasswd -restart -agent -privs -all Once this is done, any [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=72&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a helpful tip for turning on and off Destop sharing in Mac.</p>
<p>First things first&#8230; ssh to the computer you want to view and turn on VNC&#8230; er.. Apple&#8217;s Desktop Sharing.</p>
<p><code>sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -activate -configure -access -on -clientopts -setvnclegacy -vnclegacy yes -clientopts -setvncpw -vncpw mypasswd -restart -agent -privs -all</code></p>
<p>Once this is done, any vncviewer will work.  I prefer ChickenoftheVNC for mac&#8230; most anything on linux&#8230; and pass on windows. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Once done, we should button the system back up to keep it secure.</p>
<p><code>sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -deactivate -configure -access -off</code></p>
<p>DONE!~</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/version7x.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/version7x.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/version7x.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/version7x.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/version7x.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/version7x.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/version7x.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/version7x.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/version7x.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/version7x.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/version7x.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/version7x.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/version7x.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/version7x.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=72&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://version7x.wordpress.com/2010/08/27/command-line-mac-desktop-sharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d131e6f4f8de8847b8cf5be2f3465ae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">version7x</media:title>
		</media:content>
	</item>
		<item>
		<title>Command Line Proxy Config</title>
		<link>http://version7x.wordpress.com/2010/08/27/command-line-proxy-config/</link>
		<comments>http://version7x.wordpress.com/2010/08/27/command-line-proxy-config/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 23:00:25 +0000</pubDate>
		<dc:creator>version7x</dc:creator>
				<category><![CDATA[AIX]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://version7x.wordpress.com/2010/08/27/command-line-proxy-config/</guid>
		<description><![CDATA[So, I&#8217;m often in a proxied environment and can&#8217;t get out from the commandline&#8230; to ensure I dont forget the syntax in the future (its fairly basic, but that doesn&#8217;t seem to matter), here it is! export http_proxy=http://username:password@proxy.my-site.com:8080/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=71&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;m often in a proxied environment and can&#8217;t get out from the commandline&#8230; to ensure I dont forget the syntax in the future (its fairly basic, but that doesn&#8217;t seem to matter), here it is!<br />
<code><br />
export http_proxy=http://username:password@proxy.my-site.com:8080/</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/version7x.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/version7x.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/version7x.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/version7x.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/version7x.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/version7x.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/version7x.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/version7x.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/version7x.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/version7x.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/version7x.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/version7x.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/version7x.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/version7x.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=version7x.wordpress.com&amp;blog=7706494&amp;post=71&amp;subd=version7x&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://version7x.wordpress.com/2010/08/27/command-line-proxy-config/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9d131e6f4f8de8847b8cf5be2f3465ae?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">version7x</media:title>
		</media:content>
	</item>
	</channel>
</rss>
