Set-VMMigrationNetwork

Sets the subnet, subnet mask, and/or priority of a migration network.

Syntax

Set-VMMigrationNetwork
   [-Subnet] <String>
   [[-NewSubnet] <String>]
   [-ComputerName <String[]>]
   [-NewPriority <UInt32>]
   [-Passthru]
   [-Confirm]
   [-WhatIf]

Description

The Set-VMMigrationNetwork cmdlet sets the subnet, subnet mask, and/or priority of a migration network.

Examples

Example 1

PS C:\>Set-VMMigrationNetwork 192.168.10.1 192.168.10.3

This example changes an IPv4 address on a migration network.

Example 2

PS C:\>Set-VMMigrationNetwork 192.168.10.* 192.168.10.3

This example changes the IPv4 address on a migration network selected using a wildcard.

Example 3

PS C:\>Set-VMMigrationNetwork 2001:836c:6456:1c99::/64 -NewPriority 12

This example changes the priority of a migration network to 12.

Parameters

-ComputerName

Specifies one or more Hyper-V hosts on which migration network properties are to be set. NetBIOS names, IP addresses, and fully-qualified domain names are allowable. The default is the local computer - use "localhost" or a dot (".") to specify the local computer explicitly.

Type:String[]
Position:Named
Default value:.
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type:SwitchParameter
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-NewPriority

Specifies the new priority of the virtual machine migration network. Multiple networks can have the same priority.

Type:UInt32
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-NewSubnet

Specifies a string representing the new subnet value to be set on the migration network.

Type:String
Position:2
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Passthru

Specifies that a Microsoft.Virtualization.Powershell.MigrationNetwork is to be passed through to the pipeline representing the migration network to be configured.

Type:SwitchParameter
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Subnet

Specifies a string representing an IPv4 or IPv6 subnet mask which identifies the migration network whose properties are to be set. Wildcards are allowed.

Type:String
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:True

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type:SwitchParameter
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Outputs

None

Default

Microsoft.Virtualization.Powershell.MigrationNetwork

If -PassThru is specified.