Page
Virtualization Adapted
Adapting Business Processes for Virtual Infrastrcuture (and vice-versa)
0
04-16-2009 / 14:46

VMware ESX host command line configuration script

#customize esxXX by IR Date YYYYMMDD
# ESX host configuration script for company.com
# configure as needed for esxXX by changing IP addresses below…
# configure 4 nics for nfs storage
# nic 1 and 3 – cos1, vms, vmotion
# nic 2 and 4 – vmkernel for nfs storage
#

#configure SYSLOG
echo “*.* @syslog.site.company.com” >> /etc/syslog.conf
service syslog restart

# List current config
/usr/sbin/esxcfg-nics -l
/usr/sbin/esxcfg-vswitch -l

#creating virtual switches
/usr/sbin/esxcfg-vswitch -a vSwitch1
/usr/sbin/esxcfg-vswitch -L vmnic1 vSwitch1
/usr/sbin/esxcfg-vswitch -L vmnic3 vSwitch1
/usr/sbin/esxcfg-vswitch -L vmnic2 vSwitch0
#enable CDP advertise and listen mode
/usr/sbin/esxcfg-vswitch -b vSwitch0
/usr/sbin/esxcfg-vswitch -b vSwitch1
/usr/sbin/esxcfg-vswitch -B both vSwitch0
/usr/sbin/esxcfg-vswitch -B both vSwitch1
/usr/sbin/esxcfg-vswitch -b vSwitch0
/usr/sbin/esxcfg-vswitch -b vSwitch1

#creating portgroups
/usr/sbin/esxcfg-vswitch -A “ITG-VLAN2″ vSwitch0
/usr/sbin/esxcfg-vswitch -A “PUBLIC-VLAN4″ vSwitch0
/usr/sbin/esxcfg-vswitch -A “VMkVMotion-VLAN209″ vSwitch0
/usr/sbin/esxcfg-vswitch -A “VMkStorage-VLAN207″ vSwitch1
#/usr/sbin/esxcfg-vswitch -A “Service Console” vSwitch0
/usr/sbin/esxcfg-vswitch -A “Service Console 2″ vSwitch0
/usr/sbin/esxcfg-vswif -a -i 10.102.8.111 -n 255.255.255.0 -p “Service Console 2″ vswif1
/usr/sbin/esxcfg-vswitch -A “ESX-VLAN208″ vSwitch0
/usr/sbin/esxcfg-vmknic -a -i 10.102.7.211 -n 255.255.255.0 VMkStorage-VLAN207
/usr/sbin/esxcfg-vmknic -a -i 10.102.9.211 -n 255.255.255.0 VMkVMotion-VLAN209
/usr/sbin/esxcfg-route -a 0.0.0.0/0 10.102.7.1
/usr/sbin/esxcfg-vswif -l
/usr/sbin/esxcfg-vmknic -l

vmware-vim-cmd hostsvc/net/vswitch_setpolicy –nicteaming-policy=loadbalance_ip vSwitch0
vmware-vim-cmd hostsvc/net/vswitch_setpolicy –nicteaming-policy=loadbalance_ip vSwitch1
vmware-vim-cmd /hostsvc/net/vswitch_setpolicy –failurecriteria-check-beacon 0 vSwitch0
vmware-vim-cmd /hostsvc/net/vswitch_setpolicy –failurecriteria-check-beacon 0 vSwitch1
vmware-vim-cmd hostsvc/net/vswitch_setpolicy –securepolicy-promisc=false vSwitch0
vmware-vim-cmd hostsvc/net/vswitch_setpolicy –securepolicy-macchange=false vSwitch0
vmware-vim-cmd hostsvc/net/vswitch_setpolicy –securepolicy-forgedxmit=false vSwitch0
vmware-vim-cmd hostsvc/net/vswitch_setpolicy –securepolicy-promisc=false vSwitch1
vmware-vim-cmd hostsvc/net/vswitch_setpolicy –securepolicy-macchange=false vSwitch1
vmware-vim-cmd hostsvc/net/vswitch_setpolicy –securepolicy-forgedxmit=false vSwitch1

#configuring vlans
/usr/sbin/esxcfg-vswitch -l
/usr/sbin/esxcfg-vswitch -v 2 -p “ITG-VLAN2″ vSwitch0
/usr/sbin/esxcfg-vswitch -v 4 -p “PUBLIC-VLAN4″ vSwitch0
/usr/sbin/esxcfg-vswitch -v 207 -p “VMkStorage-VLAN207″ vSwitch1
/usr/sbin/esxcfg-vswitch -v 209 -p “VMkVMotion-VLAN209″ vSwitch0
/usr/sbin/esxcfg-vswitch -v 208 -p “Service Console” vSwitch0
/usr/sbin/esxcfg-vswitch -v 208 -p “Service Console 2″ vSwitch0
/usr/sbin/esxcfg-vswitch -v 208 -p “ESX-VLAN208″ vSwitch0
/usr/sbin/esxcfg-vswitch -l

#delete vmnic1 from vSwitch0 (run these if necessary)
#/usr/sbin/esxcfg-vswitch -N vmnic1 -p “ITG-VLAN2″ vSwitch0
#/usr/sbin/esxcfg-vswitch -N vmnic1 -p “PUBLIC-VLAN4″ vSwitch0
#/usr/sbin/esxcfg-vswitch -N vmnic1 -p “VMkStorage-VLAN207″ vSwitch0
#/usr/sbin/esxcfg-vswitch -N vmnic1 -p “VMkVMotion-VLAN209″ vSwitch0
#/usr/sbin/esxcfg-vswitch -N vmnic1 -p “Service Console” vSwitch0
#/usr/sbin/esxcfg-vswitch -N vmnic1 -p “Service Console 2″ vSwitch0
#/usr/sbin/esxcfg-vswitch -N vmnic1 -p “ESX-VLAN208″ vSwitch0

#add vmnics to each port group
/usr/sbin/esxcfg-vswitch -M vmnic2 -p “ITG-VLAN2″ vSwitch0
/usr/sbin/esxcfg-vswitch -M vmnic2 -p “PUBLIC-VLAN4″ vSwitch0
/usr/sbin/esxcfg-vswitch -M vmnic1 -p “VMkStorage-VLAN207″ vSwitch1
/usr/sbin/esxcfg-vswitch -M vmnic3 -p “VMkStorage-VLAN207″ vSwitch1
/usr/sbin/esxcfg-vswitch -M vmnic2 -p “VMkVMotion-VLAN209″ vSwitch0
/usr/sbin/esxcfg-vswitch -M vmnic2 -p “Service Console” vSwitch0
/usr/sbin/esxcfg-vswitch -M vmnic2 -p “Service Console 2″ vSwitch0
/usr/sbin/esxcfg-vswitch -M vmnic2 -p “ESX-VLAN208″ vSwitch0
/usr/sbin/esxcfg-vswitch -l

sleep 10

#setup vmotion on the first vmk network
#vmware-vim-cmd “hostsvc/vmotion/netconfig_get” (check config)
vmware-vim-cmd hostsvc/vmotion/vnic_set vmk1

#/usr/sbin/esxcfg-vswitch -l

vmware-vim-cmd /hostsvc/net/portgroup_set –nicorderpolicy-active=vmnic0 vSwitch0 “Service Console”
vmware-vim-cmd /hostsvc/net/portgroup_set –nicorderpolicy-standby=vmnic2 vSwitch0 “Service Console”
vmware-vim-cmd /hostsvc/net/portgroup_set –nicorderpolicy-active=vmnic0 vSwitch0 “Service Console 2″
vmware-vim-cmd /hostsvc/net/portgroup_set –nicorderpolicy-standby=vmnic2 vSwitch0 “Service Console 2″
vmware-vim-cmd /hostsvc/net/portgroup_set –nicorderpolicy-active=vmnic0 vSwitch0 “VMkVMotion-VLAN209″
vmware-vim-cmd /hostsvc/net/portgroup_set –nicorderpolicy-standby=vmnic2 vSwitch0 “VMkVMotion-VLAN209″

#adding Network Attached data store
/usr/sbin/esxcfg-nas -l
/usr/sbin/esxcfg-nas -a -o NAS1-ip -s /vol/vmw_datastore1 vmw_datastore1
/usr/sbin/esxcfg-nas -a -o NAS2-ip -s /vol/vmw_datastore2 vmw_datastore2
#/usr/sbin/esxcfg-nas -a -o NAS3-ip -s /vol/vol3_vmware_test nfs_vol_netapp
/usr/sbin/esxcfg-nas -l

#configure resolv.conf
/bin/cat /dev/null > /etc/resolv.conf
echo “nameserver ns1-ip” >> /etc/resolv.conf
echo “nameserver ns2.ip” >> /etc/resolv.conf
echo “search site.company.com” >> /etc/resolv.conf
cat /etc/resolv.conf

#configure hostname
vmware-vim-cmd hostsvc/net/dns_set –dns-hostname=esxXX
vmware-vim-cmd hostsvc/net/dns_set –dns-domainname=site.company.com

#configure NTP
/usr/sbin/esxcfg-firewall -e ntpClient
/usr/sbin/ntpdate -u ntp1.site.company.com
chkconfig –list ntpd
chkconfig –level 35 ntpd on
chkconfig –list ntpd
echo “restrict ntp1-ip mask 255.255.255.255 nomodify notrap noquery” >> /etc/ntp.conf
echo “server ntp1.site.company.com” >> /etc/ntp.conf
echo “restrict ntp2-ip mask 255.255.255.255 nomodify notrap noquery” >> /etc/ntp.conf
echo “server ntp2.site.company.com” >> /etc/ntp.conf
echo “restrict ntp3-ip mask 255.255.255.255 nomodify notrap noquery” >> /etc/ntp.conf
echo “server ntp3.site.company.com” >> /etc/ntp.conf
echo “driftfile /var/lib/ntp/drift” >> /etc/ntp.conf
echo “ntp1-ip” > /etc/ntp/step-tickers
echo “ntp2-ip” >> /etc/ntp/step-tickers
echo “ntp3-ip” >> /etc/ntp/step-tickers
service ntpd restart
hwclock –systohc

#configure SUDO

esxcfg-boot -g
esxcfg-boot -b

esxcfg-advcfg -s 32 /NFS/MaxVolumes

# make sure that NFS locks are not disabled
esxcfg-advcfg -s 0 /NFS/LockDisable

# this should already be set correctly, but just to make sure
esxcfg-advcfg -s 12 /NFS/HeartbeatFrequency

# this should also be set correctly already
esxcfg-advcfg -s 10 /NFS/HeartbeatMaxFailures

# increase the heap size. Default is 9.
esxcfg-advcfg -s 30 /Net/TcpIpHeapSize

# increase heap max. Default is 30.
esxcfg-advcfg -s 120 /Net/TcpIpHeapMax

#configure AD
/usr/sbin/esxcfg-auth –enablead –addomain=site.company.com –addc=DC-NAME.site.company.com
useradd IT1
useradd IT2
#useradd Administrator

#configure SNMP
/bin/cat /dev/null > /etc/snmp/snmpd.conf
echo “syscontact IT-TEAM-DL@company.com” >> /etc/snmp/snmpd.conf
echo “syslocation Company-Location” >> /etc/snmp/snmpd.conf
echo “rocommunity RO-String” >> /etc/snmp/snmpd.conf
echo “trapcommunity RO-String” >> /etc/snmp/snmpd.conf
echo “trapsink DELL-IT-Assistant-Server.site.company.com RO-String” >> /etc/snmp/snmpd.conf
echo “dlmod SNMPESX /usr/lib/vmware/snmp/libSNMPESX.so” >> /etc/snmp/snmpd.conf
echo “smuxpeer .1.3.6.1.4.1.674.10892.1″ >> /etc/snmp/snmpd.conf

#install Dell OpenManage Agent
esxcfg-firewall -o 80,tcp,out,http
/usr/bin/lwp-download http://DELL-IT-Assistant-Server.site.company.com/OM_5.5.0_ManNode_A00.targz
tar -xvf OM_5.5.0_ManNode_A00.tar.gz
cd linux/supportscripts/
./srvadmin-install.sh -b -w -r -s
srvadmin-services.sh start
esxcfg-firewall -o 1311,tcp,in,OpenManageRequest

#test by going to https://esxXX.site.company.com:1311

# service mgmt-vmware restart # if needed

#end of script

0
04-08-2009 / 21:06

NetApp A-SIS DeDuplication for VMware ESX Virtual Machines using NFS

I just wanted to share with you all. We are using a small NetApp with NFS for hosting ESX 3.5 Update 4 and ESX 4 RC Virtual Machines.

MODEL: FAS2020-R5
SW VERSION: 7.2.4L1

We have about 9 Windows VMs each one using about 20 GB disk space. There are Active Directory Domain Controllers, Exchange 2003 and 2007 servers, Windows Administration and Application servers and workstations and even Solaris 10 and Windows 2008 64 bit machines.

# du -h vmnfs/
21G vmnfs/vhq/dc1
21G vmnfs/vhq/dc2
21G vmnfs/vhq/vc
21G vmnfs/vhq/wadmin
8.6G vmnfs/vhq/w2008
91G vmnfs/vhq
31G vmnfs/eng/solaris10
31G vmnfs/eng
21G vmnfs/W2K3template
21G vmnfs/SW-Node01
21G vmnfs/SW-Node02

If we include the snapshots there is 1.6TB of data available and being served up with only 21GB of disk space being used!

> df -h /vol/vmnfs
Filesystem total used avail capacity Mounted on
/vol/vmnfs/ 400GB 21GB 378GB 5% /vol/vmnfs/

> df -sh /vol/vmnfs
Filesystem used saved %saved
/vol/vmnfs/ 21GB 160GB 88%

> man nfs
The disk space savings generated by the shared space is
shown in the saved column. The space used plus the space
saved would be the total disk space usage, if no space was
shared. The %saved is calculated as [saved / (used + saved)].

Below is a list of the maximum volume size for each storage system:

Storage system (with nearstor_option enabled) Max. A-SIS deduplication volume size
FAS6070, FAS6080, N7800 16TB
FAS6030, FAS6040, N7600 10TB
FAS3070, N5600 6TB
NearStore R200 4TB
FAS3040, N5300 3TB
FAS3050, N5500 2TB
FAS3020, N5200 1TB
FAS2050 1TB
FAS2020 0.5TB

You can use MRTG to graph the disk space saved by A-SIS deduplication by volume name.

http://www.usenet-forums.com/mrtg/392860-mrtg-mrtg-ntap-probe-release-0-5-0-sis-disk-space-savingsreport-added.html

What has your experience been with using A-SIS from NetApp with ESX hosts over NFS?

0
04-07-2009 / 15:22

VMware ESX setting static mac addresses

1. Select a static MAC. NOTE: Static MAC addresses must be in the range of 00:50:56:00:00:00-00:50:56:3F:FF:FF to work with this procedure.
2. Remember to record the Static MAC addresses registered for future reference.
3. Unregister vm:
4. Note the datastore, vm inventory folder, and name for the vm in the summary tab
5. Power down the virtual machine
6. Right click the vm and select remove from inventory
7. Edit vmx:
8. Ssh to the esx host system (use putty)
9. cd /vmfs/volumes/
10. cd to the system’s folder
11. cp .vmx to .vmx.bak
12. vi .vmx
13. find the ethernet0 section
14. make the following changes:
15. change ethernet0.addressType = “vpx” to ethernet0.addressType = “static”
16. ethernet0.generatedAddress = “00:50:56:01.01.00″ to ethernet0.address = “00:50:56:01.01.00″
17. rearrange so the following items are in this order and grouped together: ethernet0.address, ethernet0.addresstype, uuid.location, uuid.bios
18. Write the changes to the disk and exit
19. Reregister the vm:
20. In virtual center, browse to the host datastore (configuration, storage, double click on the vm’s datastore)
21. Browse to the edited .vmx file
22. Right click the .vmx file and select Add to Inventory
23. Enter the system name
24. Select the host
25. Select the resource pool
26. Click Finish
27. Power on the vm and verify the mac address
28. Windows: ipconfig /all find “Physical Address”
29. Linux: ifconfig /a grep Hwaddr

EXAMPLE

ethernet0.address = “00:50:56:88:6f:98″

ethernet0.addressType = “static”

uuid.location = “56 4d 6b b4 70 cc 85 24-59 1b 2d 24 0a 2b d7 7a”

uuid.bios = “50 08 5b 0d e1 f7 fb 8b-ba 39 74 1b 30 fc 0c 40″

Posted by Jae Ellers at Monday, January 28, 2008.

http://vmprofessional.com/2008/01/setting-static-mac-addresses.html

This post rocks! Helped me out of a tight bind today.

0
/ 11:55

ESX versus ESXi – feature comparison – Dell Open Manage

The following information was obtained from Dell’s web site:
http://support.dell.com/support/edocs/software/eslvmwre/Systems_Mngmnt/ESXi_MNGMNT/HTML/body.htm

Monitoring Comparison between ESX and ESXi

Systems Management
Feature Description: Inventory
Processor Information including brand, processor version, current speed, core count, model, stepping information, 64-bit support, HyperThreading (HT), Virtualization Technology (VT), Demand Based Switching (DBS), and Execute Disable (XD).
Cache information including status, level, max size, installed size, type, location, write policy, set associativity, and error correction.

ESX Classic
All of the above Inventory information is available through OpenManage Server Administrator.

Processor brand, processor version, current speed, core count, model, and stepping information is also available in IT Assistant

ESXi
Only Processor brand, processor version, current speed, core count, and model available using the VI Client.

0
03-30-2009 / 09:51

VMware ESX Cost Per GB Calc Sheet single processor

I ran some numbers for a customer recently and discovered the single processor high-RAM hardware configurations can be more cost effective for most corporate windows applications hosted on VMware ESX. Keep in mind that the number of processors a server has doesn’t always need to equal the number of sockets.

This includes the cost of hardware, ESX Enterprise, and Microsoft Windows Data Center Edition.

http://spreadsheets.google.com/ccc?key=p0EnXM-6h5gbFTHB27ffELA

What did I miss in these calculations. There are also per port costs to include for Network, Storage, backup agents, etc.

Reference:
VMware’s Multi-Core Pricing & Licensing Policy
http://www.vmware.com/download/eula/multicore.html

VMware’s End User License Agreement
http://www.vmware.com/download/eula/virtualcenter.html
1.6 "Processor" means a single, physical chip that houses no more than six (6) processor cores.

1
03-25-2009 / 10:50

Pano Logic Cube Video Resolution Settings

When logging into a PanoLogic virtual desktop console for the first time…

The default display resolution was 1024×768 standard 4:3 XGA

The HP w1707 LCD monitor has a native resolution of 1680×1050@60Hz 16:10 WSXGA+

Using the pano logic control panel I was only able to set the max resolution to 1440×900@69Hz 16:10 WSXGA

http://www.panologic.com/

List of Supported Reslutions: http://help.panologic.com/2.6/wwhelp/wwhimpl/js/html/wwhelp.htm#href=Introduction/Supported_Monitor_Resolutions.html

0
03-24-2009 / 13:02

Configure DataDomain NFS ESX DataStore

How to configure DataDomain as NFS DataStore for ESX
Purpose:
Follow these steps to allow a datadomain storage appliance to be used as a high capacity datastore by ESX and ESXi hosts using NFS so Virtual Machines can be moved from Production ESX cluster to test/dev ESXi hosts.

Basic steps:
1 – configure datadomain appliance nfs export
2 – add NFS datastore on ESX hosts
3 – copy VMs from Primary Storage to DDA (DataDomain Archiver).

Setup:
Data Domain OS 4.5.3.0-82657
Model 565
Active Directory Domain Admin user-id “itadmin”
DD IP Address: 10.10.10.99

Source ESX hosts’ VMkernel portgroups on 10.10.11.0/24 network
Destination ESXi host on 10.10.10.7 (VMkernel and Management are on shared Port Group)

itadmin@datadomain-lan# nfs show clients
path client options
—————- —————— —————————————-

itadmin@datadomain-lan# nfs add
nfs add [ ( ) ]
Add NFS clients to an export

itadmin@datadomain-lan# nfs add /share/vmtest 10.10.11.0/24
NFS export for “/share/vmtest” added.
dirodriguez@datadomain01-source# nfs add /share/vmtest 10.10.10.7
NFS export for “/share/vmtest” added.

itadmin@datadomain-lan# nfs show clients
path client options
—————- —————— —————————————-
/share/vmtest 10.10.11.0/24 (rw,no_root_squash,no_all_squash,secure)
/share/vmtest 10.10.10.7 (rw,no_root_squash,no_all_squash,secure)
—————- —————— —————————————-

Add share on ESX hosts.

Copy VMs from Source ESX SAN datastores to new shared datastore.

Copy VMs from shared datastore to local ESXi datastore and reconfigure.

Check Deduplication Compression.
You can see amount of deduplication provided by multiple VM images by running this command:

itadmin@datadomain-lan# file show compression /share/vmtest
Total files: 15; bytes/storage_used: 18.3
Original Bytes: 15,462,695,250
Globally Compressed: 2,191,220,844
Locally Compressed: 840,288,247
Meta-data: 6,953,000

In this example we are getting only 18x compression. With additional Virtual Machines the compression will increase allowing many VMs to be stored and archived.

0
03-22-2009 / 23:12

Is Cisco California right for your data center?

The Cisco Unified Fabric – California – is getting a lot of buzz lately.

This video gives some idea of the implications…

“All your base are belong to us”

Let the debates begin…

Will IBM buy SUN as part of this?

http://www.theregister.co.uk/2009/03/19/ibm_sun_deal_comment/

Juniper lowers CAPEX and OPEX and ensures flexibility and choice, and customer feedback verifies that we deliver a high-performance network.

http://forums.juniper.net/t5/Architecting-the-Network/California-Dreamin/ba-p/16488

http://virtualgeek.typepad.com/virtual_geek/2009/03/interesting-dialog-on-the-cisco-ucs-stuff-and-a-bit-of-detail.html

http://www.internetworkexpert.org/2009/01/01/nexus-1000v-with-fcoe-cna-and-vmware-esx-40-deployment-diagram/

http://www.breakingpointsystems.com/community/blog/unified-computing-begets-unified-testing

0
03-19-2009 / 11:15

how to reset root password on vmware esx classic

Follow these steps if you need to reset the root password on an ESX classic.

Note: Ignore the “quote marks” in the instructions below.

1 – turn on system (if it’s on then reboot it with Ctrl-Alt-Del from console)
2 – when grub appears press the “tab” key
3 – highlight VMware ESX line using the “arrow” keys
4 – press the “e” key
5 – scroll to kernel line using the “arrow” keys
6 – press the “e” key (again, I know!)
7 – press the “end” key to move cursor to end of the kernel line
8 – type the word “single” (using the keys)
9 – press the “b” key to boot the ESX host into single user mode
10 – eventually a “sh-3.2#” root prompt will appear
11 – use the command “passwd” to reset the password
12 – use the command “reboot” to reboot the ESX machine
13 – login to the console or the vic using the new password!

That’s it! I hope this procedure works for you. Your feedback is appreciated.

Morale of this story is:
1 – always protect the physical environment where you ESX host is located.
2 – always secure the Lights Out/Remote Access/IP-KVM/console access to your host.
3 – consider using a GRUB password on your ESX host so as to prevent password resets.

0
03-09-2009 / 13:46

Overhead Memory Table on ESX Virtual Machines

Refer to page 136 of http://www.vmware.com/pdf/vi3_35/esx_3/r35/vi3_35_25_resource_mgmt.pdf

Some examples:

With 1 vcpu and 256MB of RAM; the VM kernel requires 87MB for 32 bit VM’s and 108MB for 64 bit VM’s.

With 8GM of RAM and 1 vCPU you’ll need 188MB and 209MB for 32 and 64 bit.

With 4 vCPU’s and 8GB of RAM you’re looking at ~360MB for a 32 bit VM and 431MB for a 64 bit VM.

Note: memory overhead for 32-bit VMs generally increased between 3.0.1 and 3.5 while 64-bit overhead generally decreased.

ESX 3.5 Overhead


ESX
3.5 Update 2
Virtual CPUs Virtual Memory (MB) Overhead for 32-bit VM
(MB)
% Overhead for 32-bit VM Overhead for 64-bit VM
(MB)
% Overhead for 64-bit VM
1 256 87.56 34.20% 107.54 42.01%
1 512 90.82 17.74% 110.81 21.64%
1 1,024 97.35 9.51% 117.35 11.46%
1 2,048 110.40 5.39% 130.42 6.37%
1 4,096 136.50 3.33% 156.57 3.82%
1 8,192 188.69 2.30% 208.85 2.55%
1 16,384 293.07 1.79% 313.42 1.91%
1 32,768 501.84 1.53% 522.56 1.59%
1 65,536 919.37 1.40% 940.84 1.44%
           
2 256 108.73 42.47% 146.41 57.19%
2 512 114.49 22.36% 152.20 29.73%
2 1,024 126.04 12.31% 163.79 16.00%
2 2,048 149.11 7.28% 186.96 9.13%
2 4,096 195.27 4.77% 233.30 5.70%
2 8,192 287.57 3.51% 325.98 3.98%
2 16,384 472.18 2.88% 511.34 3.12%
2 32,768 841.40 2.57% 882.06 2.69%
2 65,536 1579.84 2.41% 1623.50 2.48%
           
4 256 146.75 57.32% 219.82 85.87%
4 512 153.52 29.98% 226.64 44.27%
4 1,024 167.09 16.32% 240.30 23.47%
4 2,048 194.20 9.48% 267.61 13.07%
4 4,096 248.45 6.07% 322.22 7.87%
4 8,192 356.91 4.36% 431.44 5.27%
4 16,384 573.85 3.50% 649.88 3.97%
4 32,768 1007.73 3.08% 1086.75 3.32%
4 65,536 1875.48 2.86% 1960.52 2.99%
   
  Averages 408.30 11.51% 453.30 15.29%

ESX 3.0 Overhead

vcpu vRAM 32 bit overhead 64 bit overhead
1 256 79 174
1 512 79 176
1 1024 84 180
1 2048 91 188
1 4096 107 204
1 8192 139 236
1 16384 203 300
2 256 97 288
2 512 101 292
2 1024 101 300
2 2048 125 316
2 4096 157 349
2 8192 221 413
2 16384 349 541
4 256 129 511
4 512 133 515
4 1024 141 523
4 2048 157 540
4 4096 189 572
4 8192 222 605
4 16384 350 734