User Tools

Site Tools


virtualization:microsoft:hyper-v

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
virtualization:microsoft:hyper-v [2012/11/05 16:34]
gcooper
virtualization:microsoft:hyper-v [2019/05/20 11:29] (current)
gcooper
Line 1: Line 1:
 ====== Microsoft Hyper-V Server ====== ====== Microsoft Hyper-V Server ======
  
-See also **[[https://www.sonoracomm.com/wiki/doku.php?do=search&id=hyper-v|more Hyper-V pages]]**+See also **[[https://virtualarchitects.com/wiki/doku.php?do=search&id=start&q=hyper-v|more Hyper-V pages]]** 
 + 
 +See also **[[computing:windows:windows_core|Windows Core Configuration]]**
  
 http://blogs.technet.com/b/keithmayer/archive/2012/09/07/getting-started-with-hyper-v-server-2012-hyperv-virtualization-itpro.aspx http://blogs.technet.com/b/keithmayer/archive/2012/09/07/getting-started-with-hyper-v-server-2012-hyperv-virtualization-itpro.aspx
Line 10: Line 12:
  
 :!: Note that Microsoft Hyper-V requires hardware virtualization support in the mainboard and CPU.  Windows Server 8 will also require SLAT for Hyper-V. :!: Note that Microsoft Hyper-V requires hardware virtualization support in the mainboard and CPU.  Windows Server 8 will also require SLAT for Hyper-V.
 +
 +:!: Don't try to run an app directly from the root of C:.  Create a folder and run the app from the folder.
  
 Microsoft virtualization comes in two basic flavors: Microsoft virtualization comes in two basic flavors:
Line 23: Line 27:
  
 RemoteFX http://www.petri.co.il/configuring-remotefx-hyper-v-r2-sp1.htm RemoteFX http://www.petri.co.il/configuring-remotefx-hyper-v-r2-sp1.htm
 +
 +Windows Server 2012 Virtual Labs http://technet.microsoft.com/en-us/windowsserver/hh968267.aspx
  
 ===== Driver Installation ===== ===== Driver Installation =====
  
-==== Remote Management ====+See also **[[virtualization:microsoft:hyper-v-remote-mgmt|Hyper-V Remote Management]]**
  
 On a Windows management workstation: On a Windows management workstation:
Line 68: Line 74:
 sc delete <service_name> sc delete <service_name>
 </file> </file>
 +
 +===== NIC Teaming (NIC Bonding) =====
 +
 +:!: You should configure NIC teaming after installing drivers and before network configuration.
 +
 +:!: You will have to reconfigure the server networking after configuring NIC teaming.
 +
 +:!: NIC Teaming is now built into Windows Server 2012 and is vendor independent.
 +
 +NIC Teaming User Guide: http://www.microsoft.com/en-us/download/details.aspx?id=30160
 +
 +http://www.aidanfinn.com/?p=12646
 +
 +http://blogs.technet.com/b/privatecloud/archive/2012/06/19/nic-teaming-in-windows-server-2012-brings-simple-affordable-traffic-reliability-and-load-balancing-to-your-cloud-workloads.aspx
 +
 +http://social.technet.microsoft.com/Forums/en-US/winserverhyperv/thread/02eaa377-8a1e-43f1-ad8b-4227138742d0
 +
 +==== NIC Team Creation with PowerShell ====
 +
 +<file>
 +Get-NetAdapter -Physical
 +
 +New-NetLbfoTeam Team1 "Network 2","Network 3" -LoadBalancingAlgorithm HyperVPort
 +</file>
 +
 +  * List NIC names
 +  * Load Balancing + Failover
 +  * Name is "Team1"
 +  * Switch Independent Mode
 +    * Switch does **not** require advanced features (LACP)
 +  * 'Generic' or 'Static' team
 +    * As opposed to IEEE 802.1ax Link Aggregation Control Protocol (LACP)
 +  * Connected to the Hyper-V external switch
  
 ===== Hyper-V Server Configuration ===== ===== Hyper-V Server Configuration =====
Line 125: Line 164:
  
 ===== Hyper-V Management ===== ===== Hyper-V Management =====
 +
 +See also **[[computing:windows:windows_core|Windows Core Configuration]]**
  
  * Microsoft Hyper-V Server only has a limited text console (sconfig.cmd) for local management.  There is also a command prompt available.  * Microsoft Hyper-V Server only has a limited text console (sconfig.cmd) for local management.  There is also a command prompt available.
Line 132: Line 173:
  * The **Microsoft System Center Virtual Machine Manager (SCVMM)** has been renamed to **Microsoft System Center 2012**.  These are commercial tools for managing Hyper-V.  * The **Microsoft System Center Virtual Machine Manager (SCVMM)** has been renamed to **Microsoft System Center 2012**.  These are commercial tools for managing Hyper-V.
  
-==== vtUtilities for Local Management ====+==== Hyper-V Manager MMC ====
  
-https://vttechnology.com/Products/vtUtilities+Install and restart server on WS2012 with PowerShell: 
 + 
 +List available Hyper-V features: 
 + 
 +<file> 
 +Get-WindowsFeature hyper-v* 
 + 
 +Install-WindowsFeature hyper-v-tools 
 +Install-WindowsFeature hyper-v-powershell 
 +</file> 
 + 
 +Old info? 
 + 
 +FIXME 
 + 
 +<file> 
 +Install-WindowsFeature Server-Gui-Mgmt-Infra 
 + 
 +Restart-Computer 
 +</file>
  
-==== Hyper-V Manager MMC - Remote Access ====+Manage:
  
 <file> <file>
Line 160: Line 220:
 http://archive.msdn.microsoft.com/HVRemote http://archive.msdn.microsoft.com/HVRemote
  
-==== Hyper-V Tools ====+==== Hyper-V Management Tools ====
  
 http://technet.microsoft.com/en-us/library/cc794756%28v=ws.10%29.aspx http://technet.microsoft.com/en-us/library/cc794756%28v=ws.10%29.aspx
Line 167: Line 227:
  
 http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=7d2f6ad7-656b-4313-a005-4e344e43997d http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=7d2f6ad7-656b-4313-a005-4e344e43997d
 +
 +:!: You must be a member of the Administrators user group to run the tools
 +
 +Install the tools:
 +
 +**Start -> Control Panel -> Programs -> Programs and Features -> Turn Windows features on or off -> Remote Server Administration Tools**
 +
 +Run the Hyper-V Manager:
 +
 +**Start -> Administrative Tools -> Hyper-V Manager**
  
 ==== Microsoft System Center ==== ==== Microsoft System Center ====
virtualization/microsoft/hyper-v.1352158492.txt.gz · Last modified: 2012/11/05 16:34 by gcooper