Mark Russinovich just posted a tweeted with the Infographic for The State of Cloud Storage in 2013 which compares, Microsoft Windows Azure, Google, Amazon, Rackspace and HP.
|
Mark Russinovich just posted a tweeted with the Infographic for The State of Cloud Storage in 2013 which compares, Microsoft Windows Azure, Google, Amazon, Rackspace and HP.
Microsoft released a updated version of the Windows Server 2012 Hyper-V Component Architecture Poster.

Windows Server 2012 Hyper-V Component Architecture Poster provides a visual reference for understanding key Hyper-V technologies in Windows Server 2012 and focuses on Hyper-V Replica, networking, virtual machine mobility (live migration), storage, failover clustering, and scalability.
You can download it from the Microsoft Download Center: Windows Server 2012 Hyper-V Component Architecture Poster and Companion References
via Maarten Wijsman from Hyper-V.nu.

In Windows Server 2008 R2 we had some really simple configurations and best practices for Hyper-V and network configurations. The problem with this was, that this configurations were not really flexible. This had two main reasons, first NIC teaming wasn’t officially supported by Microsoft and secondly there was no possibility to create virtual network interfaces without third party solution.
Here is a example of a Hyper-V 2008 R2 host design which was used in a cluster setup.
Each dedicated Hyper-V network such as CSV/Cluster communication or the Live Migration network used a own physical network interface. The different network interfaces could also be teamed with third party software from HP, Broadcom or Intel. This design is still a good design in Windows Server 2012 but there are other configurations which are a lot more flexible.
Microsoft MVP Adian Finn and Hans Vredevoort did a already some early work with Windows Server 2012 Converged Fabric and you should definitely read their blog posts.
In Windows Server 2012 you can get much more out of your network configuration. First of all NIC Teaming is now integrated and supported in Windows Server 2012 and another cool feature is the use of virtual network adapters in the Management OS (Host OS or Parent Partition). This allows you to create for example one of the following designs.
This scenario has two teamed 10GbE adapter for Cluster and VM traffic.
The same scenario with a teamed management interface.
One Virtual Switch for Management and Cluster traffic and a dedicated switch for VM traffic.
This is may favorite design at the moment. Two 10GbE adapter as one team for Virtual Machine, Cluster traffic and management. It is a very flexible design and allows the two 10GbE adapters to be used very dynamic.
This design solutions will also be very interesting if you us SMB 3.0 as a storage for Hyper-V Virtual Machines.
There are at the moment not a lot of official information which designs will be unsupported and which will be supported. You can find some information about supported designs in the TechEd North America session WSV329 Architecting Private Clouds Using Windows Server 2012 by Yigal Edery and Joshua Adams.
Now after you have seen these designs you may want to create such a configuration and want to know how you can do this. Not everything can be done via GUI you have to use your Windows PowerShell skills. In this scenario I use the design with four 10GbE network adapters 2 for iSCSI and to for my network connections.
Before you can use the features of the Virtual Switch and can start create Virtual Network Adapters on the Management OS (Parent Partition) you have to install the Hyper-V role. You can do this via Server Manager or via Windows PowerShell.
Add-WindowsFeature Hyper-V -Restart
Now most of the time you will create a NIC Teaming for fault tolerance and load balancing. A team can be created over the Server Manager or PowerShell. Of course I prefer the Windows PowerShell. For a Team which will not only be used for Hyper-V Virtual Machines but also for Management OS traffic I use the TransportPorts as load balancing algorithm. If you use this team only for Virtual Machine traffic there is a algorithm called Hyper-V-Port. The Teaming Mode of course depends on your configuration.
New-NetLbfoTeam -Name Team01 -TeamMembers NIC1,NIC2 -LoadBalancingAlgorithm HyperVPort -TeamingMode SwitchIndependent
After the team is created you have to create a new Virtual Switch. We also define the DefaultFlowMinimumBandwidthWeight to be set to 20.
New-VMSwitch -Name VMNET -NetAdapterName Team01 -AllowManagementOS $False -MinimumBandwidthMode Weight Set-VMSwitch "VMNET" -DefaultFlowMinimumBandwidthWeight 3.
After you have created the Hyper-V Virtual Switch or VM Switch you will find this switch also in the Hyper-V Manager.
After you have created your Hyper-V Virtual Switch you can now start adding VM Network Adapters to this Virtual Switch. We also configure the VLAN ID and the QoS policy settings.
Add-VMNetworkAdapter -ManagementOS -Name "Management" -SwitchName "VMNET" Add-VMNetworkAdapter -ManagementOS -Name "LiveMigration" -SwitchName "VMNET" Add-VMNetworkAdapter -ManagementOS -Name "CSV" -SwitchName "VMNET" Set-VMNetworkAdapterVlan -ManagementOS -VMNetworkAdapterName "Management" -Access -VlanId 185 Set-VMNetworkAdapterVlan -ManagementOS -VMNetworkAdapterName "CSV" -Access -VlanId 195 Set-VMNetworkAdapterVlan -ManagementOS -VMNetworkAdapterName "LiveMigration" -Access -VlanId 196 Set-VMNetworkAdapter -ManagementOS -Name "LiveMigration" -MinimumBandwidthWeight 20 Set-VMNetworkAdapter -ManagementOS -Name "CSV" -MinimumBandwidthWeight 10 Set-VMNetworkAdapter -ManagementOS -Name "Management" -MinimumBandwidthWeight 10
Your new configuration will now look like this:
As you can see the name of the new Hyper-V Virtual Ethernet Adapter is vEthernet (NetworkAdapaterName). This will be important for automation tasks or configuring IP addresses via Windows PowerShell.
Some months ago I wrote two blog posts, the first was how to configure you Hyper-V host network adapters like a boss and the second one was how to replace the netsh command with Windows PowerShell. Now using Windows PowerShell to configure IP addresses will save you a lot of time.
# Set IP Address Management New-NetIPAddress -InterfaceAlias "vEthernet (Management)" -IPAddress 192.168.25.11 -PrefixLength "24" -DefaultGateway 192.168.25.1 Set-DnsClientServerAddress -InterfaceAlias "vEthernet (Management)" -ServerAddresses 192.168.25.51, 192.168.25.52 # Set LM and CSV New-NetIPAddress -InterfaceAlias "vEthernet (LiveMigration)" -IPAddress 192.168.31.11 -PrefixLength "24" New-NetIPAddress -InterfaceAlias "vEthernet (CSV)" -IPAddress 192.168.32.11 -PrefixLength "24" # iSCSI New-NetIPAddress -InterfaceAlias "iSCSI01" -IPAddress 192.168.71.11 -PrefixLength "24" New-NetIPAddress -InterfaceAlias "iSCSI02" -IPAddress 192.168.72.11 -PrefixLength "24"
There is still a lot more about Windows Server 2012 Hyper-V Converged Fabric in the future, but I hope this post will give you a quick insight into some new features of Windows Server 2012 and Hyper-V.

This is another post in my series about Hyper-V vs. VMware.
This time it is about storage in terms of virtualization. And as you could read everywhere, Microsoft did also a lot of improvements for the Windows Server 2012 release.
| Capability | Windows Server 2012 RC Hyper-V | VMware vSphere Hypervisor | VMware vSphere 5.0 Enterprise Plus |
| Virtual Fiber Channel | Yes | Yes | Yes |
| 3rd Party Multipathing (MPIO) | Yes | No | Yes (VAMP) |
| Native 4-KB Disk Support | Yes | No | No |
| Maximum Virtual Disk Size | 64TB VHDX | 2TB VMDK | 2TB VMDK |
| Maximum Pass Through Disk Size | Variable | 64TB | 64TB |
| Offloaded Data Transfer | Yes | No | Yes (VAAI) |
| Storage Encryption | Yes | No | No |
Sources:
Check out my Blog post Hyper-V 2012 – Hey I Just Met You And This Is Crazy for more information about the latest version of Hyper-V.
![]()
I cloud not resist to install the CTP2 of System Center 2012 – Virtual Machine Manager. First I have to say the CTP2 of Virtual Machine Manager runs unbelievable stable and fast. If you may have worked with other releases of VMM you know what I mean.
I had not much time to check for everything which is new but I found two interesting things which are in my opinion great improvements.
In my opinion the new design of network adapter pages with the logical network selection is a great usability improvement, and makes much more sense now.
System Center 2012 – Virtual Machine Manager without Service Pack 1 (Screenshot from Hyper-V.nu):
System Center 2012 – Virtual Machine Manager Service Pack 1 CTP2:
Hyper-V Host Hardware – Storage
System Center 2012 – Virtual Machine Manager Service Pack 1 CTP2:
This things will maybe change until RTM of System Center 2012 SP1 but at the moment they look pretty good. I am sure there is a lot more in CTP2.

Two weeks ago the date of the Swiss IT Event Geekmania was announced and I got two session slots in the itnetx Private Cloud Track. Together with Philipp Witschi I will talk about Windows Server 2012 Hyper-V and Storage and how those features are integrated in the next Version of System Center.
Beside those two sessions there are a lot of other cool Microsoft Private Cloud sessions with the latest System Center products like System Center Orchestrator, Virtual Machine Manager, Operations Manager, Service Manager and Configuration Manager.
Private Cloud Track Speakers:
Geekmania 2012 will be a one day Event on Friday October 26. You can get more Information about the Event on the Geekmania 2012 homepage.

Last week I made a blog post about how you can create a USB drive for Windows To Go. In my post I used diskpart.exe to format the USB drive. Now we don’t live in the stone age anymore, so I did the same with the new version of Windows PowerShell coming in Windows 8 and Windows Server 8.
Now here some basic cmdlets to do some simple storage operations, like clean a disk, create a partition and so on.
Lets start simple
Get-Disk
Get-Partition
Get-Partition -DiskNumber 0
Get-Disk 1 | Clear-Disk -RemoveData
New-Partition -DiskNumber 1 -UseMaximumSize
Get-Partition -DiskNumber 1 -PartitionNumber 1 | Format-Volume -FileSystem NTFS
New-Partition -DiskNumber 1 -UseMaximumSize | Format-Volume -FileSystem NTFS -NewFileSystemLabel USB
Set-Partition -DriveLetter E -NewDriveLetter T
Set-Partition -DriveLetter T -IsActive $ture
Remove-Partition -DriveLetter T
Set-Disk 1 -isOffline $false
Set-Disk 1 -isReadOnly $false
Initialize-Disk 1 -PartitionStyle GPT
This is some basic knowledge about the storage module in PowerShell v3. Lets see how we can change the commands from using diskpart to Windows PowerShell.
select disk 1 clean create partition primary format fs=ntfs quick active assign letter=e
Get-Disk 1 | Clear-Disk -RemoveData New-Partition -DiskNumber 1 -UseMaximumSize -IsActive -DriveLetter E | Format-Volume -FileSystem NTFS -NewFileSystemLabel USB