IPAddress_AddingStaticIPWithPrefix_Config.ps1
<#PSScriptInfo .VERSION 1.0.0 .GUID 50924e43-8e8f-46cb-a1cc-c3a16531f2fd .AUTHOR Microsoft Corporation .COMPANYNAME Microsoft Corporation .COPYRIGHT .TAGS DSCConfiguration .LICENSEURI https://github.com/PowerShell/NetworkingDsc/blob/master/LICENSE .PROJECTURI https://github.com/PowerShell/NetworkingDsc .ICONURI .EXTERNALMODULEDEPENDENCIES .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES First version. .PRIVATEDATA 2016-Datacenter,2016-Datacenter-Server-Core #> #Requires -module NetworkingDsc <# .DESCRIPTION Disabling DHCP and adding a static IP Address for IPv6 and IPv4 using specified prefixes in CIDR notation. #> Configuration IPAddress_AddingStaticIPWithPrefix_Config { Import-DscResource -Module NetworkingDsc Node localhost { NetIPInterface DisableDhcp { InterfaceAlias = 'Ethernet' AddressFamily = 'IPv6' Dhcp = 'Disabled' } IPAddress NewIPv6Address { IPAddress = '2001:4898:200:7:6c71:a102:ebd8:f482/64' InterfaceAlias = 'Ethernet' AddressFamily = 'IPV6' } IPAddress NewIPv4Address { IPAddress = '192.168.10.5/24' InterfaceAlias = 'Ethernet' AddressFamily = 'IPV4' } } } |