New-VMHostRoute

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

Syntax

-Destination  <IPAddress>
-Gateway  <IPAddress>
-PrefixLength  <Int32>
-VMHost  <VMHost>
[-Server  <VIServer[]>]
[CommonParameters]

Parameters

Required Parameter Name Type Position Features Description
required
Destination
IPAddress named Specifies a destination IP address for the new route.
required
Gateway
IPAddress named Specifies a gateway IP address for the new route.
required
PrefixLength
Int32 named 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
VMHost
VMHost named
  • wildcards
  • pipeline
  • Specifies the host for which you want to create a new route. Passing multiple values to this parameter is obsolete.
    optional
    Server
    VIServer[] named
  • wildcards
  • Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is provided or $null 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.

    Output

    VMware.VimAutomation.ViCore.Types.V1.Host.VMHostRoute

    Examples


    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 Commands

    Feedback

    Was this page helpful?