<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Automating vSphere ESX4 host installations</title>
	<atom:link href="http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations</link>
	<description>Blogging for technical minds.</description>
	<lastBuildDate>Fri, 27 Jan 2012 17:53:51 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: orionsune</title>
		<link>http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations/comment-page-2#comment-1348</link>
		<dc:creator>orionsune</dc:creator>
		<pubDate>Tue, 31 Aug 2010 12:57:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laspina.ca/?p=225#comment-1348</guid>
		<description>I don&#039;t see how that defeats the purpose. I don&#039;t understand how you can have a fully automated install that works across more than one box considering you will have a different IP and hostname for each server.  Guess it comes down to, do I want to have my networking information configured during install, or after?</description>
		<content:encoded><![CDATA[<p>I don&#8217;t see how that defeats the purpose. I don&#8217;t understand how you can have a fully automated install that works across more than one box considering you will have a different IP and hostname for each server.  Guess it comes down to, do I want to have my networking information configured during install, or after?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike La Spina</title>
		<link>http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations/comment-page-2#comment-1256</link>
		<dc:creator>Mike La Spina</dc:creator>
		<pubDate>Wed, 14 Jul 2010 04:43:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laspina.ca/?p=225#comment-1256</guid>
		<description>You could manually prompt for user input (sort of defeats the automation if you ask me) as follows:
# Get user input
while [ &quot;$vmo-ip&quot; == &quot;&quot; ] ;do
header
echo -n &quot;Please Enter the VMotion IP for this ESX Host: &quot;
read vmo-ip
done

esxcfg-vswitch -A VMotion vSwitch0
esxcfg-vmknic -a VMotion -i $vmo-ip
/usr/bin/vimsh -n -e ‘hostsvc/vmotion/vnic_set vmk0′

Regards,

Mike</description>
		<content:encoded><![CDATA[<p>You could manually prompt for user input (sort of defeats the automation if you ask me) as follows:<br />
# Get user input<br />
while [ "$vmo-ip" == "" ] ;do<br />
header<br />
echo -n &#8220;Please Enter the VMotion IP for this ESX Host: &#8221;<br />
read vmo-ip<br />
done</p>
<p>esxcfg-vswitch -A VMotion vSwitch0<br />
esxcfg-vmknic -a VMotion -i $vmo-ip<br />
/usr/bin/vimsh -n -e ‘hostsvc/vmotion/vnic_set vmk0′</p>
<p>Regards,</p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhanta</title>
		<link>http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations/comment-page-2#comment-1255</link>
		<dc:creator>bhanta</dc:creator>
		<pubDate>Sun, 11 Jul 2010 18:15:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laspina.ca/?p=225#comment-1255</guid>
		<description>Thanks mike.  One last thing, would you be able to advise 
how i can prompt for a vmotion ip address when the build initially
starts and then use that variable value in the post section to 
configure and enable vmotion??</description>
		<content:encoded><![CDATA[<p>Thanks mike.  One last thing, would you be able to advise<br />
how i can prompt for a vmotion ip address when the build initially<br />
starts and then use that variable value in the post section to<br />
configure and enable vmotion??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike La Spina</title>
		<link>http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations/comment-page-2#comment-1249</link>
		<dc:creator>Mike La Spina</dc:creator>
		<pubDate>Fri, 09 Jul 2010 02:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laspina.ca/?p=225#comment-1249</guid>
		<description>bhanta,

The issue is more likely to be your syslinux.cfg parameters e.g.

label vh1
kernel vmlinuz
append initrd=initrd.img mem=512M quiet ksdevice=vmnic0 ip=10.10.0.1 netmask=255.255.255.0 gateway=10.10.0.254 nameserver=10.10.0.253 ks=http://vc.laspina.ca:8088/esx/4.0/vh1.cfg

Here the vmlinuz kernel will load a busybox img and also passes all the network parms into it.</description>
		<content:encoded><![CDATA[<p>bhanta,</p>
<p>The issue is more likely to be your syslinux.cfg parameters e.g.</p>
<p>label vh1<br />
kernel vmlinuz<br />
append initrd=initrd.img mem=512M quiet ksdevice=vmnic0 ip=10.10.0.1 netmask=255.255.255.0 gateway=10.10.0.254 nameserver=10.10.0.253 ks=http://vc.laspina.ca:8088/esx/4.0/vh1.cfg</p>
<p>Here the vmlinuz kernel will load a busybox img and also passes all the network parms into it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhanta</title>
		<link>http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations/comment-page-2#comment-1247</link>
		<dc:creator>bhanta</dc:creator>
		<pubDate>Wed, 07 Jul 2010 16:05:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laspina.ca/?p=225#comment-1247</guid>
		<description>OK not sure if what i am seeing is expected behaviour so be greatfull if somebody could comment and advise accordingly.  Basically i want to do an automatted esx 4 update1 scripted install...i have tried doing it via a http reopository but wasn&#039;t having much luck.  As a result i have now resorted to trying to building a floppy disk image via magiciso (im sure you can use other products) of the ks.cfg file.  Then when i boot the HP server i mount the original esx4u1 iso image and also the floppy disk image (of the ks.cfg file) and press f2 at the esx splash screen and type the following:

....ksdevice=vmnic2 ip= netmask= gateway= ks=floppy

however when the build goes thruogh its normal cycle i am still presented with the default &quot;Welcome to the ESX installer&quot; splash screen and i am required to type in the settings manually.  It as though the settings in the ks.cfg are ignored.....to make sure my settings are correct ive built this server manually before and got the ks.cfg setttings.  

Can somebody suggest what i am doing wrong???</description>
		<content:encoded><![CDATA[<p>OK not sure if what i am seeing is expected behaviour so be greatfull if somebody could comment and advise accordingly.  Basically i want to do an automatted esx 4 update1 scripted install&#8230;i have tried doing it via a http reopository but wasn&#8217;t having much luck.  As a result i have now resorted to trying to building a floppy disk image via magiciso (im sure you can use other products) of the ks.cfg file.  Then when i boot the HP server i mount the original esx4u1 iso image and also the floppy disk image (of the ks.cfg file) and press f2 at the esx splash screen and type the following:</p>
<p>&#8230;.ksdevice=vmnic2 ip= netmask= gateway= ks=floppy</p>
<p>however when the build goes thruogh its normal cycle i am still presented with the default &#8220;Welcome to the ESX installer&#8221; splash screen and i am required to type in the settings manually.  It as though the settings in the ks.cfg are ignored&#8230;..to make sure my settings are correct ive built this server manually before and got the ks.cfg setttings.  </p>
<p>Can somebody suggest what i am doing wrong???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike La Spina</title>
		<link>http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations/comment-page-2#comment-1245</link>
		<dc:creator>Mike La Spina</dc:creator>
		<pubDate>Tue, 06 Jul 2010 16:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laspina.ca/?p=225#comment-1245</guid>
		<description>The &quot;no COS nics&quot; message will not stop the install process from working so the problem must lie with the IP/Network/Nic assignment.</description>
		<content:encoded><![CDATA[<p>The &#8220;no COS nics&#8221; message will not stop the install process from working so the problem must lie with the IP/Network/Nic assignment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bhanta</title>
		<link>http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations/comment-page-2#comment-1244</link>
		<dc:creator>bhanta</dc:creator>
		<pubDate>Tue, 06 Jul 2010 14:26:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laspina.ca/?p=225#comment-1244</guid>
		<description>Hi all...i am experiencing a similar issue to that seen by Lindsay.  I am running to create
an automated build for ESX 4 Update 1 using the http based repo method as described on this
site.  As a test i first built the serve manually and then copyied the ks.cfg file 
to my iis web server.  however when i try the build i get the &quot;user has added no COS nics&quot;
error message.  Aswell as the &quot;no route to host&quot; - i have tried pinging my iis server 
and it works fine.

at the esx splash screen i have tried entering the usual ksdevice=vmnic2 and even
ksdevice=, ip= netmask= etc etc

Any help would be great!</description>
		<content:encoded><![CDATA[<p>Hi all&#8230;i am experiencing a similar issue to that seen by Lindsay.  I am running to create<br />
an automated build for ESX 4 Update 1 using the http based repo method as described on this<br />
site.  As a test i first built the serve manually and then copyied the ks.cfg file<br />
to my iis web server.  however when i try the build i get the &#8220;user has added no COS nics&#8221;<br />
error message.  Aswell as the &#8220;no route to host&#8221; &#8211; i have tried pinging my iis server<br />
and it works fine.</p>
<p>at the esx splash screen i have tried entering the usual ksdevice=vmnic2 and even<br />
ksdevice=, ip= netmask= etc etc</p>
<p>Any help would be great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike La Spina</title>
		<link>http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations/comment-page-2#comment-1223</link>
		<dc:creator>Mike La Spina</dc:creator>
		<pubDate>Sat, 26 Jun 2010 03:02:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laspina.ca/?p=225#comment-1223</guid>
		<description>Hi Kevin,

It&#039;s correct with the &quot;but&quot;, this method uses a network share as the repo so you don&#039;t need the rest of the files to create a boot process. The reason for deleting the extra files is to keep the boot and install media small and clean. 

Regards,

Mike</description>
		<content:encoded><![CDATA[<p>Hi Kevin,</p>
<p>It&#8217;s correct with the &#8220;but&#8221;, this method uses a network share as the repo so you don&#8217;t need the rest of the files to create a boot process. The reason for deleting the extra files is to keep the boot and install media small and clean. </p>
<p>Regards,</p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin McGregor</title>
		<link>http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations/comment-page-2#comment-1222</link>
		<dc:creator>Kevin McGregor</dc:creator>
		<pubDate>Fri, 25 Jun 2010 20:14:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laspina.ca/?p=225#comment-1222</guid>
		<description>This is very interesting. I&#039;m going to try out some variations to see how we can speed up and simplify our vSphere deployments.

In the early part of this post, you write &quot;open the vSphere installation ISO and delete all &lt;b&gt;but&lt;/b&gt; the highlighted files show in the graphic&quot;.

It seems like the &quot;but&quot; should be removed. Is that right?</description>
		<content:encoded><![CDATA[<p>This is very interesting. I&#8217;m going to try out some variations to see how we can speed up and simplify our vSphere deployments.</p>
<p>In the early part of this post, you write &#8220;open the vSphere installation ISO and delete all <b>but</b> the highlighted files show in the graphic&#8221;.</p>
<p>It seems like the &#8220;but&#8221; should be removed. Is that right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike La Spina</title>
		<link>http://blog.laspina.ca/ubiquitous/automating-vsphere-esx4-host-installations/comment-page-2#comment-1203</link>
		<dc:creator>Mike La Spina</dc:creator>
		<pubDate>Mon, 21 Jun 2010 21:33:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.laspina.ca/?p=225#comment-1203</guid>
		<description>Hello Abhishek,

The format to specify a cdrom based install is as follows:

##########################################################
# Install or Upgrade
install cdrom

/dev/sda would be hardware probed via the busybox installation process, the issue is more likely a hardware problem. Boot the standard install CDROM to verify the hardware is working correctly. You can also examine what the process detected by using Alt-F2 when the error screen occurs.

Regards,

Mike</description>
		<content:encoded><![CDATA[<p>Hello Abhishek,</p>
<p>The format to specify a cdrom based install is as follows:</p>
<p>##########################################################<br />
# Install or Upgrade<br />
install cdrom</p>
<p>/dev/sda would be hardware probed via the busybox installation process, the issue is more likely a hardware problem. Boot the standard install CDROM to verify the hardware is working correctly. You can also examine what the process detected by using Alt-F2 when the error screen occurs.</p>
<p>Regards,</p>
<p>Mike</p>
]]></content:encoded>
	</item>
</channel>
</rss>

