Quick Guide to the Virtual Switch in Hyper-V Server 2012

I’ve been seeing and fielding a lot of questions about the virtual switch in the 2012 products specifically as they relate to Hyper-V. The nice thing is that it seems the conceptual hurdles are shifting from “What is it?” to “How do I do this correctly?” So, where previous posts have been about concept, this post is about function and form. Please ask questions if anything isn’t thorough enough.

How To Set Up a Hyper-V 2012 Virtual Switch

Rule #1: Unless you are very clear on what the defaults are and what you’re going to get, don’t use the GUI. If you’re installing Hyper-V as a role through Server Manager, don’t let it create a switch. PowerShell gives you far more control. More than a few of the people who create a switch with the GUI will wind up deleting their switch and making another one because the GUI didn’t even let them see the options that they wanted (this doesn’t apply to SCVMM which is smarter about creating switches).

It all starts with New-VMSwitch . Read the full documentation, if you like. I’m going to annotate Microsoft’s rather Spartan notes here:

AllowManagementOS

Set this to zero or $false . All this does is create a virtual adapter for you, which you then have to go back, locate, rename and change all the settings on. You can make your own virtual adapter with Add-VMNetworkAdapter  that begins life with most of the settings that you want.

ComputerName

“One or more hosts”, as in, use this one line to create the same switch with the same settings on all the hosts in that new cluster of yours. Try that in the GUI. Leave this parameter off for the local system.

EnableIov

Another setting that’s inaccessible in the Server Manager wizard and can never be changed later. Of course, if your hardware doesn’t support it, setting this can end badly.

MinimumBandwidthMode

The cake is a lie. “Default Value: weight” is an error. The default is Absolute. This cannot be changed after the fact. So, if you used a GUI or trusted the documentation, congratulations! You can’t set QoS mode to Weight.

Name

I’m assuming everyone understands what this one does. Remember to choose a name you can type easily. Auto-complete doesn’t work for switch names.

Notes

That odd stuff you wanted to put in the switch name? Put it here. Or don’t. I’ve never used the Notes parameter but I’m assuming someone out there wanted it or it wouldn’t be here. The Notes are also visible on the property sheet of the switch in the GUI.

SwitchType

Internal or private. External automatically is chosen with the NetAdapterName parameter. Struggling with this one? Look here. As with the AllowManagementOS parameter, it doesn’t mean exactly what it says. If you choose Private and then use Add-VMNetworkAdapter to make a vNIC in the management OS on it, it becomes Internal. If you use Remove-VMNetworkAdapter on all its vNICs in the management OS, it becomes Private. There is no converting to or from the External type, though.

NetAdapterInterfaceDescription

This parameter indicates the physical adapter you want to create the switch on by its description. This isn’t incredibly useful because the description is probably a lot longer and more difficult to type than the name, but it does provide consistency with the way the GUI does things. As the documentation indicates, you can see the description in Get-NetAdapter . Don’t use this with Private or Internal switch type because you can’t and because if you could, it wouldn’t be a Private or External switch type.

NetAdapterName

The name of the adapter to create a virtual switch on. You can get a list of the adapters with Get-NetAdapter. This can be a physical adapter or the virtual adapter that is created when you team adapters together. It cannot be a virtual adapter on a virtual switch. As with NetAdapterInterfaceDescription, don’t use this with the Internal or Private switch types for exactly the same reasons. I haven’t tested to see if it’s possible, but I wouldn’t recommend that you use this with the NetAdapterInterfaceDescription parameter either. There’s nothing overtly wrong with the combination, but it’s not good for anything unless you need a line item to boost your résumé for your application to the Department of Redundancy Department.

Confirm

Just in case you want the system to ask you if you’re sure that you want to create the switch. I can envision plenty of cases in a script where you want this (and that’s why it’s there), but any time I use -Confirm during manual entry, it looks exactly like this: -Confirm:$false , because, if I don’t know what I’m doing, asking me if I’m sure won’t change the fact that I don’t know what I’m doing. So, all it can do is delay the amount of time it takes to prove that I don’t know what I’m doing, which also delays the time I can get started on fixing it. But, if using -Confirm  makes you feel better, by all means, please use it. It’s a switch parameter, so you only need to specify $false  if you both want to include the parameter and want it to be ignored. You also need a colon for that. There’s a joke in there somewhere.

What You Get

Either you get a brand new virtual switch, or you get an error. 50/50 odds aren’t too bad, I suppose. Realistically, you’re going to get errors because you tried to create an internal/private switch with an adapter or because you picked an adapter it doesn’t like. You can also get an error if you used the Confirm parameter, tried to pass in $false, and forgot the colon. If you’re getting other errors, share them.

If all went well, you’ve got the virtual switch you’ve always wanted. Try Get-VMSwitch to admire your handiwork. Now, you can start creating virtual machines and attaching their virtual adapters to your switch. They’ll connect by switch name. What you can also do is create virtual adapters in the management operating system. This is something you must use PowerShell for, because the GUI only lets you create a single virtual adapter for the management OS. The PowerShell way is Add-VMNetworkAdapter. Why is its verb “Add” instead of “New”? I have absolutely no idea. I can tell you that I was really angry when I spent fifteen minutes adding a bunch of virtual adapters to a system and then went to another host and tried to use Add-VMSwitch and it didn’t work the way I thought it should. I won’t embarrass myself further by admitting just how long it took me to remember that New-VMSwitch was the command I wanted.

The Fine Print

Some things that bear repeating and some other things you might be interested in:

  • SR-IOV can only be enabled when the switch is created. It must then be set on the vNICs. Your physical adapter determines how many SR-IOV vNICs you can have. Check its documentation or ad sheet for Virtual Functions. One Virtual Function equals one SR-IOV vNIC.
  • If you Live Migrate a VM with an SR-IOV adapter to a host that doesn’t have any available Virtual Functions, the Live Migration fails. The reason is that it’s like trying to replace the vNIC on the fly without interruption.
  • You can use an adapter team for a virtual switch or you can enable SR-IOV. You can’t do both. Actually, you probably can set both, but SR-IOV won’t work. The reason is that the virtual machine talks directly to the Virtual Function, which is right on the hardware, which is difficult and maybe impossible to properly perform on a team. Given that VMQ works by singling out a team member, I suspect this might change someday. For now, team or SR-IOV, not both. You can team in the guest if it’s running 2012.
  • You can’t team vNICs in the management OS, but you can in guest OSs if they support it (2012+ for Windows guests).
  • VMQ (virtual machine queues) have limited slots like SR-IOV, also determined by the adapter hardware. Check with your hardware vendor. Unlike SR-IOV, nothing will fail if there aren’t any queues left and you don’t need to set anything on the switch.
  • The switch can get squirrely if VMQ is on but the hardware won’t support it.

Running into issues using virtual switches?

I’ve got a handy guide on Troubleshooting Hyper-V virtual switches for you.

 

Share this post