<?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>Things Falling Off Aircraft (TFOA) &#187; Featured</title>
	<atom:link href="http://alittlestrange.com/tfoa/category/featured/feed/" rel="self" type="application/rss+xml" />
	<link>http://alittlestrange.com/tfoa</link>
	<description>- and other technical difficulties</description>
	<lastBuildDate>Fri, 11 Feb 2011 01:10:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Attaching Local Storage as a RDM</title>
		<link>http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/#comments</comments>
		<pubDate>Wed, 26 May 2010 03:29:31 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[virtual infrastructure]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/</guid>
		<description><![CDATA[google_ad_client = "pub-0267487074173409"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_type = "image"; google_ad_channel = "7935081104"; google_color_border = "#000000"; google_color_bg = "#FFFFFF"; google_color_link = "#0000cc"; google_color_text = "#000000";...]]></description>
			<content:encoded><![CDATA[<div style=" text-align: center;  margin: 8px; ">
				<script type="text/javascript">
				google_ad_client = "pub-0267487074173409";
				google_ad_width = 468;
				google_ad_height = 60;
				google_ad_format = "468x60_as";
				google_ad_type = "image";
				google_ad_channel = "7935081104";
				google_color_border = "#000000";
				google_color_bg = "#FFFFFF";
				google_color_link = "#0000cc";
				google_color_text = "#000000";
				google_color_url = "#008000";
				google_ui_features = "rc:6";
				</script>
				<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
			</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F05%2F25%2Fattaching-local-storage-as-a-rdm%2F'  href="http://alittlestrange.com/tfoa/?3hk86HuH"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F05%2F25%2Fattaching-local-storage-as-a-rdm%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Let me start off by stating that this is NOT supported….. </p>
<p>I wanted to attach a local drive to a VM, but wanted the ability to move this drive to a physical Windows server at a later time without the time consuming data migration or drive reformatting. Although there is no way to do this through the VIC, there is a way to do this in the console.</p>
<p><span id="more-569"></span></p>
<p>First we need to find the disk we want to use as an RDM. This is accomplished by running the following:</p>
<p><strong>ls -al /vmfs/devices/disks/</strong></p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/05/image4.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://alittlestrange.com/tfoa/files/2010/05/image_thumb3.png" width="244" height="84" /></a> </p>
<p>In this example the disk I needed was <strong>vmhba0:1:0:0</strong>…..<strong>&#160;</strong>Take note of&#160; the string starting with <strong>vml.</strong></p>
<p>Now we need to create the placeholder vmdk we will attach to our vm. We do this with the following command:</p>
<p>vmkfstools -r /vmfs/devices/disks/vml.<strong>&lt;String we retrieved above&gt;</strong> /vmfs/volumes/<strong>&lt;Existing DataStore&gt;</strong>/<strong>&lt;VM Path&gt;</strong>/<strong>&lt;NAME&gt;</strong>.vmdk</p>
<p>Now the only thing we need to do is to add the existing disk to our VM. You will notice the summary shows the new disk as a “Mapped Raw LUN”</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/05/image1.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://alittlestrange.com/tfoa/files/2010/05/image_thumb1.png" width="244" height="183" /></a> </p>
</p>
<p>Fire up the VM and format the disk for whatever file system you require.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/05/image2.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://alittlestrange.com/tfoa/files/2010/05/image_thumb2.png" width="244" height="172" /></a> </p>
<p>Enjoy</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F05%2F25%2Fattaching-local-storage-as-a-rdm%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quickly deploy test environment in VMware Workstation</title>
		<link>http://alittlestrange.com/tfoa/2010/01/12/quickly-deploy-test-environment-in-vmware-workstation/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2010/01/12/quickly-deploy-test-environment-in-vmware-workstation/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 21:21:19 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[TestLab]]></category>
		<category><![CDATA[Workstation]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2010/01/12/quickly-deploy-test-environment-in-vmware-workstation/</guid>
		<description><![CDATA[google_ad_client = "pub-0267487074173409"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_type = "image"; google_ad_channel = "7935081104"; google_color_border = "#000000"; google_color_bg = "#FFFFFF"; google_color_link = "#0000cc"; google_color_text = "#000000";...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F01%2F12%2Fquickly-deploy-test-environment-in-vmware-workstation%2F'  href="http://alittlestrange.com/tfoa/?T__77s7w"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F01%2F12%2Fquickly-deploy-test-environment-in-vmware-workstation%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>     Whether I am looking to test out a new capability or solution, or simply grabbing screenshots for documentation, I almost always turn to VMware Workstation in order to quickly and easily deploy a test environment in order to get this done. In this post I will show you how to deploy a test environment in VMware workstation. It is assumed that you are familiar with OS deployments and this will not be covered in this article.</p>
<p><span id="more-519"></span></p>
<p><strong>Prepare Base OS VM</strong></p>
<p>Open VMware Workstation and create a new Virtual Machine</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb.png" border="0" alt="image" width="244" height="91" /></a></p>
<p>I name the template with the OS type and “Template” as the suffix</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image1.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb1.png" border="0" alt="image" width="240" height="85" /></a></p>
<p>Install the OS and configure this VM with any necessary customizations or base software.</p>
<p>Shutdown VM and create a snapshot.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image2.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb2.png" border="0" alt="image" width="236" height="240" /></a></p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image3.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb3.png" border="0" alt="image" width="244" height="90" /></a></p>
<p><strong>Deploy VMs required to stand up test Environment</strong></p>
<p>Create a Clone of the newly created and configured Base OS VM.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image4.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb4.png" border="0" alt="image" width="165" height="244" /></a></p>
<p>When asked for “Clone Source” choose “An existing snapshot” and select the snapshot created in the previous section.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image5.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb5.png" border="0" alt="image" width="244" height="211" /></a></p>
<p>For “Clone Type” choose “Linked Clone” this will allow you to deploy the new VM with limited disk space requirements.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image6.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb6.png" border="0" alt="image" width="244" height="211" /></a></p>
<p>Name the new VM</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image7.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb7.png" border="0" alt="image" width="240" height="88" /></a></p>
<p>Click Finish and your new VM is created</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/01/image8.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2010/01/image_thumb8.png" border="0" alt="image" width="244" height="211" /></a></p>
<p>Repeat this process for all VMs needed for your test environment. This will quickly deploy your test lab, with a minimum amount of disk space required. I will cover the use of “Teams” in a later article, but these steps can be used there as well.</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F01%2F12%2Fquickly-deploy-test-environment-in-vmware-workstation%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2010/01/12/quickly-deploy-test-environment-in-vmware-workstation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DRS Deep Dive</title>
		<link>http://alittlestrange.com/tfoa/2009/10/29/drs-deep-dive/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/10/29/drs-deep-dive/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 17:07:52 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[DRS]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/10/29/drs-deep-dive/</guid>
		<description><![CDATA[Duncan Epping over at Yellow Bricks has posted a great article explaining the inner-workings of VMware DRS. Like he states in his article, I have never had to trouble shoot...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F29%2Fdrs-deep-dive%2F'  href="http://alittlestrange.com/tfoa/?i18eqHfK"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F29%2Fdrs-deep-dive%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Duncan Epping over at <a title='Original Link: http://www.yellow-bricks.com/drs-deepdive/'  href="http://alittlestrange.com/tfoa/?RX_Yt7C5">Yellow Bricks</a> has posted a great article explaining the inner-workings of VMware DRS. Like he states in his article, I have never had to trouble shoot any DRS issues and have taken for granted that it just works. It is good to understand what is actually taking place under the hood.  Thanks Duncan!!</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F29%2Fdrs-deep-dive%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/10/29/drs-deep-dive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Document Downloader</title>
		<link>http://alittlestrange.com/tfoa/2009/10/06/vmware-document-downloader/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/10/06/vmware-document-downloader/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 21:12:41 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Admin Tools]]></category>
		<category><![CDATA[product documentation]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/?p=413</guid>
		<description><![CDATA[Paul Buckle over at xtravirt has created a very useful batch file for downloading all the VMware documentation. This makes a really handy offline reference library especially if you need the...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F06%2Fvmware-document-downloader%2F'  href="http://alittlestrange.com/tfoa/?OmvfHWHQ"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F06%2Fvmware-document-downloader%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Paul Buckle over at <a title='Original Link: http://xtravirt.com'  href="http://alittlestrange.com/tfoa/?Q33TkZ0Y">xtravirt</a> has created a very useful batch file for downloading all the VMware documentation. This makes a really handy offline reference library especially if you need the information at the speed of fast. You will need to register in order to download this, but it is worth the registration. Thanks Paul. You can find the download link <a title='Original Link: http://xtravirt.com/xd10109'  href="http://alittlestrange.com/tfoa/?MFZgzOc0">here</a></p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F06%2Fvmware-document-downloader%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/10/06/vmware-document-downloader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greatest VMware Video!!</title>
		<link>http://alittlestrange.com/tfoa/2009/10/05/greatest-vmware-video/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/10/05/greatest-vmware-video/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 03:13:35 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[business continuity]]></category>
		<category><![CDATA[datacenter management]]></category>
		<category><![CDATA[virtual infrastructure]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/?p=407</guid>
		<description><![CDATA[I can watch this video over and over (I know.. I&#8217;m sick).. Who could of imagined that someone could create a music video about VMware virtualization. I guess they had...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fgreatest-vmware-video%2F'  href="http://alittlestrange.com/tfoa/?NFV3b0DB"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fgreatest-vmware-video%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I can watch this video over and over (I know.. I&#8217;m sick).. Who could of imagined that someone could create a music video about VMware virtualization. I guess they had to many late nights and redbull. My hat is off and Kudos to the creators.</p>
<p><span id="more-407"></span></p>
<p><a href="http://alittlestrange.com/tfoa/files/2009/10/vHardwareHotel.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img class="alignnone size-medium wp-image-410" title="vHardwareHotel" src="http://alittlestrange.com/tfoa/files/2009/10/vHardwareHotel-300x160.png" alt="" width="300" height="160" /></a></p>
<p><a class="fancybox" href="#testube#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><strong>Virtual Hardware Hotel!!!</strong></a></p>
<div id="testube" style="display: none;">
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/R7JBYJHQmJc&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/R7JBYJHQmJc&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
</div>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fgreatest-vmware-video%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/10/05/greatest-vmware-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ISA Server Changes not taking affect&#8230;</title>
		<link>http://alittlestrange.com/tfoa/2009/09/15/isa-server-changes-not-taking-affect/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/09/15/isa-server-changes-not-taking-affect/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 17:37:21 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[ISA]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Firewall]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/09/15/isa-server-changes-not-taking-affect/</guid>
		<description><![CDATA[     One of the common mistakes I see people make when dealing with ISA is not waiting enough time for the firewall to synchronize with the configuration database. Changes made...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F15%2Fisa-server-changes-not-taking-affect%2F'  href="http://alittlestrange.com/tfoa/?8LhU_CeZ"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F15%2Fisa-server-changes-not-taking-affect%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>     One of the common mistakes I see people make when dealing with ISA is not waiting enough time for the firewall to synchronize with the configuration database. Changes made in the client are modified in the database first, then the firewall polls this database for changes and synchronizes these with it’s local ADAM directory. This allows ISA to maintain it’s configuration without the need for access to the configuration database. By default, the firewall will poll for changes every 15 seconds. You can see this setting here:</p>
<p><span id="more-361"></span></p>
<p> <a href="http://alittlestrange.com/tfoa/files/2009/09/image15.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2009/09/image_thumb13.png" border="0" alt="image" width="220" height="244" /></a> <a href="http://alittlestrange.com/tfoa/files/2009/09/image16.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; margin-left: 0px; border: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2009/09/image_thumb14.png" border="0" alt="image" width="204" height="244" align="right" /></a></p>
<p>As you can see, I changed mine to 5 seconds. I have done this while I was doing the initial configuration, but will change it to a higher value, once I have everything stable. You can verify that all ISA servers in the array have been synchronized by looking at the <strong>Monitoring-&gt;Configuration</strong> tab</p>
<p><a href="http://alittlestrange.com/tfoa/files/2009/09/image10.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2009/09/image_thumb10.png" border="0" alt="image" width="244" height="108" /></a></p>
<p><a href="http://alittlestrange.com/tfoa/files/2009/09/image11.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2009/09/image_thumb11.png" border="0" alt="image" width="244" height="112" /></a></p>
<p><a href="http://alittlestrange.com/tfoa/files/2009/09/image12.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="image" src="http://alittlestrange.com/tfoa/files/2009/09/image_thumb12.png" border="0" alt="image" width="244" height="108" /></a></p>
<p>As you make changes to ISA, you must wait until the status shows “<strong>Synced</strong>”, this will ensure that you are testing against the most recent changes committed to the database. This should save you some major headaches and possible hair loss. Good luck….</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F15%2Fisa-server-changes-not-taking-affect%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/09/15/isa-server-changes-not-taking-affect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mike Laverick releases free SRM book&#8230;</title>
		<link>http://alittlestrange.com/tfoa/2009/09/07/mike-laverick-releases-free-srm-book/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/09/07/mike-laverick-releases-free-srm-book/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 04:23:43 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[SRM]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/09/07/mike-laverick-releases-free-srm-book/</guid>
		<description><![CDATA[Mike Laverick has just announced that he has made his Administering VMware™ Site Recovery Manager™ 1.0 book available for free download!You can either download the high quality PDF in English...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F07%2Fmike-laverick-releases-free-srm-book%2F'  href="http://alittlestrange.com/tfoa/?n9BB2gg4"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F07%2Fmike-laverick-releases-free-srm-book%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a title='Original Link: http://www.rtfm-ed.co.uk/?page_id=2'  href="http://alittlestrange.com/tfoa/?4yNNhmk2"></a></p>
<p><a title='Original Link: http://www.rtfm-ed.co.uk/?page_id=2'  href="http://alittlestrange.com/tfoa/?4yNNhmk2">Mike Laverick</a> has just <a title='Original Link: http://www.rtfm-ed.co.uk/?p=1727'  href="http://alittlestrange.com/tfoa/?xMVYjAIe">announced</a> that he has made his Administering VMware™ Site Recovery Manager™ 1.0 book available for free download!You can either download the high quality PDF in <a title='Original Link: http://www.lulu.com/content/4343147'  href="http://alittlestrange.com/tfoa/?q9jGikVy">English</a> or you can order the print edition for printing cost + shipping. Download or order yours now!<span id="more-260"></span></p>
<blockquote><p>This book will teach you how to install and configure VMware’s SRM. It also covers in detail the failover and failback processes – and I will guide you step-by-step through the set up of the product. This book is not filled with project management padding that typifies a lot of IT books. It is practical and technical, and assumes you are already pretty familiar with VMware’s Virtual Vi3 products. In this book you will learn the strengths and weaknesses of Site Recovery Manager, and I will show you the common pitfalls and errors that can happen, and also more importantly why they happen, and how to fix them.</p></blockquote>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F07%2Fmike-laverick-releases-free-srm-book%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/09/07/mike-laverick-releases-free-srm-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One more reason to own an iPhone</title>
		<link>http://alittlestrange.com/tfoa/2009/09/05/one-more-reason-to-own-an-iphone/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/09/05/one-more-reason-to-own-an-iphone/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 23:11:02 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/08/30/one-more-reason-to-own-an-iphone/</guid>
		<description><![CDATA[Last night I was changing my network configuration, moving ISA from a single-NIC to a back-firewall between my DMZ and my internal network. I made this change so wordpress wouldn&#8217;t...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F05%2Fone-more-reason-to-own-an-iphone%2F'  href="http://alittlestrange.com/tfoa/?buwekOTv"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F05%2Fone-more-reason-to-own-an-iphone%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Last night I was changing my network configuration, moving <a title="Internet Security &amp; Acceleration Server 2006" title='Original Link: http://www.microsoft.com/forefront/edgesecurity/isaserver/en/us/default.aspx'  href="http://alittlestrange.com/tfoa/?YHn_cL8m">ISA</a> from a single-NIC to a back-firewall between my DMZ and my internal network. I made this change so wordpress wouldn&#8217;t see all the traffic as coming from my ISA IP. My concern was with comment spam, and it is always good to see the actual IP the visitors are coming from. (I know this can always be spoofed…)</p>
<p><span id="more-45"></span></p>
<p>As an added benefit I decided to configure ISA to allow VPN connections into my internal network. I didn’t really have a need for this, but I figured that since the technology supports it, and I have never had the opportunity to configure this aspect of ISA, I would play with it and see how it worked. It turns out it works pretty well. I fired up my <a title='Original Link: http://www.apple.com/iphone/'  href="http://alittlestrange.com/tfoa/?zWi6txF_">iPhone</a> and configured the native VPN client. In a matter of minutes I was on my internal network and able to browse some of the internal only web sites I have up and running. Although this was pretty cool, I was left with the thoughts of “What could I possibly do with this???”</p>
<p>It was a classic case of TLAR (Technology Looking for A Requirement). It was at this moment I remembered reading an article about a product from <a title='Original Link: http://www.wyse.com/'  href="http://alittlestrange.com/tfoa/?WAwSFMZm">Wyse Technology</a> called <a title='Original Link: http://www.wyse.com/products/software/pocketcloud/'  href="http://alittlestrange.com/tfoa/?fxitdwo_">PocketCloud</a>. I quickly installed the application and was up and logging into almost every server on my network. I thought I had woken up in a dream. The ability to quickly access my network and all the applications I support from anywhere I had cell service with no additional hardware other than my phone, definitely had to be something I had only seen while asleep…. PocketCloud was very intuitive and easy to navigate within my RDP sessions. I found the interface very easy to read and manage the entire desktop through the iPhone screen. I would recommend this product to anyone…. It is definitely worth the cost for anyone mobile and in IT. You can see screenshots below:</p>
<table border="0" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td width="200" valign="top">Enable VPN:<a href="http://alittlestrange.com/tfoa/files/2009/09/IMG_01451.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border-width: 0px;" title="Enabling VPN" src="http://alittlestrange.com/tfoa/files/2009/09/IMG_0145_thumb1.png" border="0" alt="Enabling VPN" width="53" height="78" /></a></td>
<td width="200" valign="top">The Connections Screen:<a href="http://alittlestrange.com/tfoa/files/2009/09/IMG_01461.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border-width: 0px;" title="IMG_0146" src="http://alittlestrange.com/tfoa/files/2009/09/IMG_0146_thumb1.png" border="0" alt="IMG_0146" width="49" height="72" /></a></td>
</tr>
<tr>
<td width="200" valign="top">Connection in Progress: <a href="http://alittlestrange.com/tfoa/files/2009/09/IMG_01471.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border-width: 0px;" title="IMG_0147" src="http://alittlestrange.com/tfoa/files/2009/09/IMG_0147_thumb1.png" border="0" alt="IMG_0147" width="49" height="72" /></a></td>
<td width="200" valign="top">The integrated cursor. <a href="http://alittlestrange.com/tfoa/files/2009/09/IMG_01501.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border-width: 0px;" title="IMG_0150" src="http://alittlestrange.com/tfoa/files/2009/09/IMG_0150_thumb1.png" border="0" alt="IMG_0150" width="55" height="38" /></a></td>
</tr>
<tr>
<td width="200" valign="top">Logging on to vCenter:<a href="http://alittlestrange.com/tfoa/files/2009/09/IMG_01489.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border-width: 0px;" title="IMG_0148" src="http://alittlestrange.com/tfoa/files/2009/09/IMG_0148_thumb1.png" border="0" alt="IMG_0148" width="53" height="78" /></a></td>
<td width="200" valign="top">ESX Performance Graph:<a href="http://alittlestrange.com/tfoa/files/2009/09/IMG_01521.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="display: inline; border-width: 0px;" title="IMG_0152" src="http://alittlestrange.com/tfoa/files/2009/09/IMG_0152_thumb1.png" border="0" alt="IMG_0152" width="57" height="84" /></a></td>
</tr>
</tbody>
</table>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F05%2Fone-more-reason-to-own-an-iphone%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/09/05/one-more-reason-to-own-an-iphone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>powerCLI Daily Report</title>
		<link>http://alittlestrange.com/tfoa/2009/09/01/powercli-daily-report/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/09/01/powercli-daily-report/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 19:06:39 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[powerCLI]]></category>
		<category><![CDATA[infrastructure]]></category>
		<category><![CDATA[Report]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/?p=174</guid>
		<description><![CDATA[Virtu-Al has developed a great powerCLI script that creates a daily report of your virtual infrastructure. This gives a quick and informative representation of how things are performing. You can...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F01%2Fpowercli-daily-report%2F'  href="http://alittlestrange.com/tfoa/?vmra0vPo"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F01%2Fpowercli-daily-report%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Virtu-Al has developed a great powerCLI script that creates a daily report of your virtual infrastructure. This gives a quick and informative representation of how things are performing. You can run this as a sheduled task and get a quick look at how the day is going to be, before you get into the office. You can see his post <a title='Original Link: http://www.virtu-al.net/2009/08/18/powercli-daily-report-v2/'  href="http://alittlestrange.com/tfoa/?B8tXKzHw">here</a></p>
<p><span id="more-174"></span></p>
<p>P.S. The report even looks great on an iPhone <img src='http://alittlestrange.com/tfoa/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F01%2Fpowercli-daily-report%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/09/01/powercli-daily-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gifts from vReference</title>
		<link>http://alittlestrange.com/tfoa/2009/09/01/gifts-from-vreference/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/09/01/gifts-from-vreference/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 13:52:10 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[VI3]]></category>
		<category><![CDATA[VI4]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/?p=142</guid>
		<description><![CDATA[Forbes Guthrie over at vReference has provided some absolutely necessary documents for anyone working with/designing a virtual infrastructure. VI 3 Reference Card VI 4 Reference Card vSphere 4 Notes vSphere Connection...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F01%2Fgifts-from-vreference%2F'  href="http://alittlestrange.com/tfoa/?ITXHMMqZ"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F01%2Fgifts-from-vreference%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Forbes Guthrie over at <a title='Original Link: http://www.vReference.com'  href="http://alittlestrange.com/tfoa/?1JzK1qZW">vReference</a> has provided some absolutely necessary documents for anyone working with/designing a virtual infrastructure.<span id="more-142"></span></p>
<ul>
<li><a href="http://alittlestrange.com/files/vmreferenceVI3card1.3for3.5U3.pdf">VI 3 Reference Card</a></li>
<li><a href="http://alittlestrange.com/files/vReference-vSphere4card1.0.pdf">VI 4 Reference Card</a></li>
<li><a href="http://alittlestrange.com/files/vsphere4-notes1.0.pdf">vSphere 4 Notes</a></li>
<li><a href="http://alittlestrange.com/files/ConnectionsPorts-v210.pdf">vSphere Connection Ports</a></li>
</ul>
<p>Please give Forbes full credit as I am only placing these here for convenience.</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F01%2Fgifts-from-vreference%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/09/01/gifts-from-vreference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

