vmware / dscr-for-vmware

The Repository contains Microsoft PowerShell Desired State Configuration (DSC) Resources for managing VC and ESXi settings.
Other
140 stars 41 forks source link

VMHostIPRoute DSC Resource #238

Closed SimeonGerginov closed 4 years ago

SimeonGerginov commented 4 years ago

Added

SimeonGerginov commented 4 years ago

Example usage of VMHostIPRoute DSC Resource:

VMHostIPRoute VMHostIPRoute {
    Server = $Server
    Credential = $Credential
    Name = $Name
    Gateway = $VMHostDefaultGateway
    Destination = '192.168.100.0'
    PrefixLength = 24
    Ensure = 'Present'
}