DSCResources/cVMNetworkAdapterSettings/cVMNetworkAdapterSettings.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
# Fallback message strings in en-US DATA localizedData { # same as culture = "en-US" ConvertFrom-StringData @' HyperVModuleNotFound=Hyper-V PowerShell Module not found. VMNameAndManagementTogether=VMName cannot be provided when ManagementOS is set to True. MustProvideVMName=Must provide VMName parameter when ManagementOS is set to False. GetVMNetAdapter=Getting VM Network Adapter information. FoundVMNetAdapter=Found VM Network Adapter. NoVMNetAdapterFound=No VM Network Adapter found. PerformVMNetModify=Performing VM Network Adapter configuration changes. VMNetAdapterExistsNoActionNeeded=VM Network Adapter exists with requested configuration. No action needed. VMNetAdapterDoesNotExist=VM Network adapter does not exist. VMNetAdapterExistsWithDifferentConfiguration=VM Network Adapter exists but different configuration. This will be fixed. '@ } if (Test-Path "$PSScriptRoot\$PSCulture") { Import-LocalizedData LocalizedData -filename "cVMNetworkAdapterSettings.psd1" -BaseDirectory "$PSScriptRoot\$PSCulture" } Function Get-TargetResource { [CmdletBinding()] [OutputType([System.Collections.Hashtable])] Param ( [Parameter(Mandatory)] [String] $Name, [Parameter(Mandatory)] [String] $SwitchName ) if(!(Get-Module -ListAvailable -Name Hyper-V)) { Throw $localizedData.HyperVModuleNotFound } $Configuration = @{ Name = $Name SwitchName = $SwitchName } $Arguments = @{ Name = $Name } Write-Verbose $localizedData.GetVMNetAdapter $NetAdapter = Get-VMNetworkAdapter @Arguments -ErrorAction SilentlyContinue if ($NetAdapter) { Write-Verbose $localizedData.FoundVMNetAdapter $Configuration.Add('MacAddressSpoofing', $NetAdapter.MacAddressSpoofing) $Configuration.Add('DhcpGuard', $NetAdapter.DhcpGuard) $Configuration.Add('RouterGuard', $NetAdapter.RouterGuard) $Configuration.Add('AllowTeaming', $NetAdapter.AllowTeaming) $Configuration.Add('VmqWeight', $NetAdapter.VmqWeight) $Configuration.Add('MaximumBandwidth',$NetAdapter.BandwidthSetting.MaximumBandwidth) $Configuration.Add('MinimumBandwidthWeight',$NetAdapter.BandwidthSetting.MinimumBandwidthWeight) $Configuration.Add('MinimumBandwidthAbsolute',$NetAdapter.BandwidthSetting.MinimumBandwidthAbsolute) $Configuration.Add('IeeePriorityTag',$NetAdapter.IeeePriorityTag) $Configuration.Add('PortMirroring',$NetAdapter.PortMirroringMode) } else { Write-Verbose $localizedData.NoVMNetAdapterFound } $Configuration } Function Set-TargetResource { [CmdletBinding()] Param ( [Parameter(Mandatory)] [String] $Name, [Parameter(Mandatory)] [String] $SwitchName, [Parameter()] [Bool] $ManagementOS, [Parameter()] [String] $VMName, [Parameter()] [ValidateSet('On','Off')] [String] $MacAddressSpoofing = 'Off', [Parameter()] [ValidateSet('On','Off')] [String] $DhcpGuard = 'Off', [Parameter()] [ValidateSet('On','Off')] [String] $IeeePriorityTag = 'Off', [Parameter()] [ValidateSet('On','Off')] [String] $RouterGuard = 'Off', [Parameter()] [ValidateSet('On','Off')] [String] $AllowTeaming = 'Off', [Parameter()] [uint64] $MaximumBandwidth = 0, [Parameter()] [ValidateRange(0,100)] [uint32] $MinimumBandwidthWeight = 0, [Parameter()] [uint32] $MinimumBandwidthAbsolute, [Parameter()] [ValidateRange(0,100)] [uint32] $VmqWeight = 100, [Parameter()] [ValidateSet('None','Source','Destination')] [String] $PortMirroring = 'None' ) if(!(Get-Module -ListAvailable -Name Hyper-V)) { Throw $localizedData.HyperVModuleNotFound } if ($VMName -and $ManagementOS) { throw $localizedData.VMNameAndManagementTogether } if ((-not $ManagementOS) -and (-not $VMName)) { throw $localizedData.MustProvideVMName } $Arguments = @{ Name = $Name } if ($VMName) { $Arguments.Add('VMName',$VMName) } elseif ($ManagementOS) { $Arguments.Add('ManagementOS', $true) $Arguments.Add('SwitchName', $SwitchName) } Write-Verbose $localizedData.GetVMNetAdapter $NetAdapter = Get-VMNetworkAdapter @Arguments -ErrorAction SilentlyContinue $SetArguments = @{ VMNetworkAdapter = $NetAdapter MacAddressSpoofing = $MacAddressSpoofing DhcpGuard = $DhcpGuard RouterGuard = $RouterGuard VmqWeight = $VmqWeight MaximumBandwidth = $MaximumBandwidth MinimumBandwidthWeight = $MinimumBandwidthWeight MinimumBandwidthAbsolute= $MinimumBandwidthAbsolute IeeePriorityTag = $IeeePriorityTag AllowTeaming = $AllowTeaming PortMirroring = $PortMirroring } Write-Verbose $localizedData.PerformVMNetModify Set-VMNetworkAdapter @SetArguments -ErrorAction Stop } Function Test-TargetResource { [CmdletBinding()] [OutputType([System.Boolean])] Param ( [Parameter(Mandatory)] [String] $Name, [Parameter(Mandatory)] [String] $SwitchName, [Parameter()] [Bool] $ManagementOS, [Parameter()] [String] $VMName, [Parameter()] [ValidateSet('On','Off')] [String] $MacAddressSpoofing = 'Off', [Parameter()] [ValidateSet('On','Off')] [String] $DhcpGuard = 'Off', [Parameter()] [ValidateSet('On','Off')] [String] $IeeePriorityTag = 'Off', [Parameter()] [ValidateSet('On','Off')] [String] $RouterGuard = 'Off', [Parameter()] [ValidateSet('On','Off')] [String] $AllowTeaming = 'Off', [Parameter()] [uint64] $MaximumBandwidth = 0, [Parameter()] [ValidateRange(0,100)] [uint32] $MinimumBandwidthWeight = 0, [Parameter()] [uint32] $MinimumBandwidthAbsolute, [Parameter()] [ValidateRange(0,100)] [uint32] $VmqWeight = 100, [Parameter()] [ValidateSet('None','Source','Destination')] [String] $PortMirroring = 'None' ) if(!(Get-Module -ListAvailable -Name Hyper-V)) { Throw $localizedData.HyperVModuleNotFound } if ($VMName -and $ManagementOS) { throw $localizedData.VMNameAndManagementTogether } if ((-not $ManagementOS) -and (-not $VMName)) { throw $localizedData.MustProvideVMName } $Arguments = @{ Name = $Name } if ($VMName) { $Arguments.Add('VMName',$VMName) } elseif ($ManagementOS) { $Arguments.Add('ManagementOS', $true) $Arguments.Add('SwitchName', $SwitchName) } Write-Verbose $localizedData.GetVMNetAdapter $AdapterExists = Get-VMNetworkAdapter @Arguments -ErrorAction SilentlyContinue if ($AdapterExists) { Write-Verbose $localizedData.FoundVMNetAdapter if ($AdapterExists.MacAddressSpoofing -eq $MacAddressSpoofing ` -and $AdapterExists.RouterGuard -eq $RouterGuard ` -and $AdapterExists.DhcpGuard -eq $DhcpGuard ` -and $AdapterExists.IeeePriorityTag -eq $IeeePriorityTag ` -and $AdapterExists.AllowTeaming -eq $AllowTeaming ` -and $AdapterExists.BandwidthSetting.MaximumBandwidth -eq $MaximumBandwidth ` -and $AdapterExists.BandwidthSetting.MinimumBandwidthWeight -eq $MinimumBandwidthWeight ` -and $AdapterExists.BandwidthSetting.MinimumBandwidthAbsolute -eq $MinimumBandwidthAbsolute ` -and $AdapterExists.VMQWeight -eq $VMQWeight ` -and $AdapterExists.PortMirroringMode -eq $PortMirroring ) { Write-Verbose $localizedData.VMNetAdapterExistsNoActionNeeded return $true } else { Write-Verbose $localizedData.VMNetAdapterExistsWithDifferentConfiguration return $false } } else { throw $localizedData.VMNetAdapterDoesNotExist } } |