Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Hyper-V Network Virtualization Cookbook

You're reading from   Hyper-V Network Virtualization Cookbook Over 20 recipes to ease the creation of new virtual machines in the networking layer using Hyper-V Network Virtualization

Arrow left icon
Product type Paperback
Published in Nov 2014
Publisher
ISBN-13 9781782177807
Length 228 pages
Edition 1st Edition
Tools
Arrow right icon
Author (1):
Arrow left icon
Ryan Boud Ryan Boud
Author Profile Icon Ryan Boud
Ryan Boud
Arrow right icon
View More author details
Toc

Table of Contents (11) Chapters Close

Preface 1. Installing Virtual Machine Manager 2. Configuring Networks for Hyper-V Network Virtualization FREE CHAPTER 3. Creating the Gateway for Virtual Machine Communications 4. IP Address Management Integration with VMM for Hyper-V Network Virtualization 5. Windows Server Gateway Configuration 6. Implementing Network Isolation in Hyper-V 7. Network Access Control Lists A. VM Templates B. Planning the Virtual Machine Manager Index

Configuration

After the completion of the setup process, the following PowerShell cmdlets were executed on the virtual machine in an elevated PowerShell console:

#Enable SMB IN, ICMP ECHO IPv4
$FileSharing = ("FPS-SMB-In-TCP","FPS-ICMP4-ERQ-In")
$FileSharing | %{ Enable-NetFirewallRule -Name $_}

#Required WMI rules
$WMI = ("WMI-ASYNC-In-TCP","WMI-RPCSS-In-TCP","WMI-WINMGMT-In-TCP")
$WMI | %{ Enable-NetFirewallRule -Name $_}

#Enable PowerShell Remoting
Enable-PSRemoting -Force 

These cmdlets enable the following Firewall rules:

  • File and Printer Sharing (SMB-In)
  • File and Printer Sharing (Echo Request - ICMPv4-In)
  • Windows Management Instrumentation (ASync-In)
  • Windows Management Instrumentation (DCOM-In)
  • Windows Management Instrumentation (WMI-In)

By enabling these Firewall rules within the VM template, any VM created using this template will automatically have these rules enabled. Additionally, the PowerShell cmdlets ensure that PowerShell Remoting...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at AU $24.99/month. Cancel anytime