I believe the Next Generation Computing is Software Defined Infrastructure on top of the robust physical infrastructure. You can ask me anything about enterprise infrastructure (virtualization, compute, storage, network) and we can discuss it deeply on this blog. Don't hesitate to contact me.
Tuesday, December 20, 2011
Data Center Networking – Victor Lama's White Paper Series
Saturday, December 17, 2011
Wednesday, December 14, 2011
Monday, December 12, 2011
Data Center Interconnect: Layer 2 Extension Between Remote Data Centers
• Point-to-point or point-to-multipoint interconnection, using virtual switching system (VSS), virtual PortChannel (vPC), and optical technologies
• Point-to-point interconnection using Ethernet over Multiprotocol Label Switching (EoMPLS) natively (over an MPLS core) and over a Layer 3 IP core
• Point-to-multipoint interconnections, using virtual private LAN services (VPLS) or advanced VPLS (A-VPLS) natively (over an MPLS core) or over a Layer 3 IP core
Sunday, December 11, 2011
Wednesday, November 30, 2011
Wednesday, November 23, 2011
Tuesday, November 08, 2011
VMware vSphere Health Check Report v5.0.0
This script generates a health check report for the new vSphere release of VMware ESX(i) 4.x/5.x and VMware vCenter 4.x/5.x and it's managed entities. User's can now fully customize the report based on the categories that are of importance to their operating environment, including selecting specific set of ESX(i) hosts and/or Virtual Machines.
Monday, November 07, 2011
UBERAlign - disk partition alignment
Saturday, October 29, 2011
Adding a VM as an unmanaged desktop in VMware View
http://virtualisedreality.com/2011/01/29/adding-a-vm-as-an-unmanaged-desktop-in-view-4-5/
I have just come across a situation where I wished to add a VM from one environment (completely separated test and dev environment) to VMware View in another enviorment as an unmanaged desktop. To do this with a physical server you simply install the agent and enter the connection server details during the installation. When trying to do this on a VM the final screen where you are able to enter the connection server address doesn’t appear.It turns out this is by design and if you wish to add a VM in this manner to View you need to start the View Agent install with the following switch
VMware-viewagent-4.5.0-xxxxxx.exe /v”VDM_VC_MANAGED_AGENT=0″
This will cause it to act as if it is a physical machine and give you the oppertunity to add the View connection server.
Friday, September 23, 2011
Hidden VAAI Command
COPY
As some of you are probably already aware, one of the storage-related features added to vSphere 5 is support for the SCSI UNMAP command. While you would normally want this functionality enabled, there could be instances where you might want to disable this functionality. Unfortunately, there’s no option in the user interface to enable or disable SCSI UNMAP support.
However, you can use esxcli
to enable or disable UNMAP support:
esxcli system advcfg setvalue --int-value [0|1] --option /VMFS3/EnableBlockDelete
Setting this value to 0 disables SCSI UNMAP support; setting the value to 1 enables it.
Many thanks to Cormac Hogan of VMware and Cody Hosterman of EMC for their help with this command.
Tuesday, September 20, 2011
Sunday, September 04, 2011
Friday, September 02, 2011
Running VMWare Remote Console outside the browser
http://www.geeklab.info/2010/02/running-vmware-remote-console-outside-the-browser/
cd /tmp
IP=the.esx.srv.ip # < fill in esx server ip address here
wget --no-check-certificate https://$IP/ui/plugin/vmware-vmrc-linux-x86.xpi
mv vmware-vmrc-linux-x86.xpi vmware-vmrc-linux-x86.zip
cd ~
mkdir -p bin/vmwareconsole # make directory bin in your own homedir
cd bin/vmwareconsole
unzip /tmp/vmware-vmrc-linux-x86.zip
cd ~/bin
ln -s vmwareconsole/plugins/vmware-vmrc . # make a symlink for easy access
vmware-vmrc # run the console
In 64 bit CentOS I had to install QtGUI library.
yum install libQtGui.so.4
or from CD/DVD media
yum --disablerepo=\* --enablerepo=c6-media install libQtGui.so.4
VMware-vmrc Documentation
http://communities.vmware.com/thread/156057?start=0&tstart=0
Linux:
https://
vmware-vmrc -h [
https://
vmware-vmrc.exe -h
Example: vmware-vmrc -h 1.2.3.4 -u administrator -p 'password' -M vm-481
There are other options. Run vmware-vmrc -help to get help.
my %filter_hash = create_hash(Opts::get_option('ipaddress'),Minimal Centos6 for VNC server running vmware-vmrc remotely
Opts::get_option('powerstatus'),
Opts::get_option('guestos'));
my $vm_views = VMUtils::get_vms ('VirtualMachine',
Opts::get_option ('vmname'),
Opts::get_option ('datacenter'),
Opts::get_option ('folder'),
Opts::get_option ('pool'),
Opts::get_option ('host'),
%filter_hash);
foreach (@$vm_views) {
my $vm_view = $_;
my $moid = $vm_view->get_property('mo_ref')->value;
print "Manage Object ID: $moid\n";
}
yum --disablerepo=\* --enablerepo=c6-media install xorg-x11-server-Xorg xorg-x11-xinit dbus-x11 xorg-x11-drv-ati twm xterm
INSTALL VMWARE TOOLS
it creates new /etc/X11/xorg.conf
yum --disablerepo=\* --enablerepo=c6-media install tigervnc-server
yum install xorg-x11-font*
Other useful links
https://github.com/vmware/rvc/
http://kintoandar.blogspot.com
.