< Back

New-VMHostRoute

Sun Jan 19, 2020 7:02 pm

NAME New-VMHostRoute



SYNOPSIS

This cmdlet creates a new route in the routing table of a host.





SYNTAX

New-VMHostRoute [-VMHost] <VMHost> -Destination <IPAddress> -Gateway <IPAddress> -PrefixLength <Int32> [-Server

<VIServer[]>] [-Confirm] [-WhatIf] [<CommonParameters>]





DESCRIPTION

This cmdlet creates a new route in the routing table of a host.





PARAMETERS

-Destination <IPAddress>

Specifies a destination IP address for the new route.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Gateway <IPAddress>

Specifies a gateway IP address for the new route.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-PrefixLength <Int32>

Specifies the prefix length of the destination IP address. For IPv4, the valid values are from 0 to 32, and

for IPv6 - from 0 to 128.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Server <VIServer[]>

Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is passed to this

parameter, the command runs on the default servers. For more information about default servers, see the

description of Connect-VIServer.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? true



-VMHost <VMHost>

Specifies the host for which you want to create a new route. Passing multiple values to this parameter is

obsolete.



Required? true

Position? 1

Default value None

Accept pipeline input? True (ByValue)

Accept wildcard characters? true



-Confirm [<SwitchParameter>]

If the value is $true, indicates that the cmdlet asks for confirmation before running. If the value is $false,

the cmdlet runs without asking for user confirmation.



Required? false

Position? named

Default value $true

Accept pipeline input? False

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

Indicates that the cmdlet is run only to display the changes that would be made and actually no objects are

modified.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS

The one or more newly created VMHostRoute objects







NOTES





Supported only on ESX 4.1/ vCenter Server 4.1 and later.



-------------------------- Example 1 --------------------------



New-VMHostRoute -VMHost 10.23.114.195 -Destination 192.168.103.102 -PrefixLength 32 -Gateway 10.23.84.53



Creates a route for the specified host.



RELATED LINKS

Online Version: https://code.vmware.com/doc/preview?id= ... Route.html

Get-VMHostRoute

Remove-VMHostRoute

Set-VMHostRoute