-
Notifications
You must be signed in to change notification settings - Fork 88
NetIPInterface
dscbot edited this page Jun 7, 2024
·
7 revisions
Parameter | Attribute | DataType | Description | Allowed Values |
---|---|---|---|---|
InterfaceAlias | Key | String | Alias of the network interface to configure. | |
AddressFamily | Key | String | IP address family on the interface to configure. |
IPv4 , IPv6
|
AdvertiseDefaultRoute | Write | String | Specifies the default router advertisement for an interface. |
Enabled , Disabled
|
Advertising | Write | String | Specifies the router advertisement value for the IP interface. |
Enabled , Disabled
|
AutomaticMetric | Write | String | Specifies the value for automatic metric calculation. |
Enabled , Disabled
|
Dhcp | Write | String | Specifies the Dynamic Host Configuration Protocol (DHCP) value for an IP interface. |
Enabled , Disabled
|
DirectedMacWolPattern | Write | String | Specifies the wake-up packet value for an IP interface. |
Enabled , Disabled
|
EcnMarking | Write | String | Specifies the value for Explicit Congestion Notification (ECN) marking. |
Disabled , UseEct1 , UseEct0 , AppDecide
|
ForceArpNdWolPattern | Write | String | Specifies the Wake On LAN (WOL) value for the IP interface. |
Enabled , Disabled
|
Forwarding | Write | String | Specifies the packet forwarding value for the IP interface. |
Enabled , Disabled
|
IgnoreDefaultRoutes | Write | String | Specifies a value for Default Route advertisements. |
Enabled , Disabled
|
ManagedAddressConfiguration | Write | String | Specifies the value for managed address configuration. |
Enabled , Disabled
|
NeighborUnreachabilityDetection | Write | String | Specifies the value for Neighbor Unreachability Detection (NUD). |
Enabled , Disabled
|
OtherStatefulConfiguration | Write | String | Specifies the value for configuration other than addresses. |
Enabled , Disabled
|
RouterDiscovery | Write | String | Specifies the value for router discovery for an IP interface. |
Enabled , Disabled , ControlledByDHCP
|
WeakHostReceive | Write | String | Specifies the receive value for a weak host model. |
Enabled , Disabled
|
WeakHostSend | Write | String | Specifies the send value for a weak host model. |
Enabled , Disabled
|
NlMtu | Write | UInt32 | Specifies the network layer Maximum Transmission Unit (MTU) value, in bytes, for an IP interface. | |
InterfaceMetric | Write | UInt32 | Specifies the metric for an IP interface. |
This resource is used to configure the IP interface settings for a network interface.
- If you define a value for
InterfaceMetric
, theAutomaticMetric
setting is ignored. PowerShell ignoresAutomaticMetric
when you use both arguments with theSet-NetIPInterface
cmdlet.
This example enables the following settings on the IPv4 network interface with alias 'Ethernet':
- AdvertiseDefaultRoute
- Avertising
- AutomaticMetric
- DirectedMacWolPattern
- ForceArpNdWolPattern
- Forwarding
- IgnoreDefaultRoute
- ManagedAddressConfiguration
- NeighborUnreachabilityDetection
- OtherStatefulConfiguration
- RouterDiscovery
- NlMtu The EcnMarking parameter will be set to AppDecide.
Configuration NetIPInterface_MultipleSettings_Config
{
Import-DscResource -Module NetworkingDsc
Node localhost
{
NetIPInterface MultipleSettings
{
InterfaceAlias = 'Ethernet'
AddressFamily = 'IPv4'
AdvertiseDefaultRoute = 'Enabled'
Advertising = 'Enabled'
AutomaticMetric = 'Enabled'
DirectedMacWolPattern = 'Enabled'
EcnMarking = 'AppDecide'
ForceArpNdWolPattern = 'Enabled'
Forwarding = 'Enabled'
IgnoreDefaultRoutes = 'Enabled'
ManagedAddressConfiguration = 'Enabled'
NeighborUnreachabilityDetection = 'Enabled'
OtherStatefulConfiguration = 'Enabled'
RouterDiscovery = 'Enabled'
NlMtu = 1576
}
}
}
Enabling DHCP for the IPv4 Address and DNS on the adapter with alias 'Ethernet'.
Configuration NetIPInterface_EnableDHCP_Config
{
Import-DscResource -Module NetworkingDsc
Node localhost
{
NetIPInterface EnableDhcp
{
InterfaceAlias = 'Ethernet'
AddressFamily = 'IPv4'
Dhcp = 'Enabled'
}
DnsServerAddress EnableDhcpDNS
{
InterfaceAlias = 'Ethernet'
AddressFamily = 'IPv4'
}
}
}
Disable the weak host receive IPv4 setting for the network adapter with alias 'Ethernet'.
Configuration NetIPInterface_DisableWeakHostReceive_Config
{
Import-DscResource -Module NetworkingDsc
Node localhost
{
NetIPInterface DisableWeakHostReceiving
{
InterfaceAlias = 'Ethernet'
AddressFamily = 'IPv4'
WeakHostReceive = 'Disabled'
}
}
}
Disable the weak host send IPv4 setting for the network adapter with alias 'Ethernet'.
Configuration NetIPInterface_DisableWeakHostSend_Config
{
Import-DscResource -Module NetworkingDsc
Node localhost
{
NetIPInterface DisableWeakHostSend
{
InterfaceAlias = 'Ethernet'
AddressFamily = 'IPv4'
WeakHostSend = 'Disabled'
}
}
}
Set a specified interface metrics for the network adapters with alias 'Ethernet' and 'Ethernet 2'.
Configuration NetIPInterface_SetInterfaceMetric
{
Import-DscResource -Module NetworkingDsc
Node localhost
{
NetIPInterface EthernetMetric
{
InterfaceAlias = 'Ethernet'
AddressFamily = 'IPv4'
AutomaticMetric = 'Disabled'
InterfaceMetric = 10
}
NetIPInterface Ethernet2Metric
{
InterfaceAlias = 'Ethernet 2'
AddressFamily = 'IPv4'
AutomaticMetric = 'Disabled'
InterfaceMetric = 20
}
}
}
- DefaultGatewayAddress
- DnsClientGlobalSetting
- DnsConnectionSuffix
- DnsServerAddress
- Firewall
- FirewallProfile
- HostsFile
- IPAddress
- IPAddressOption
- NetAdapterAdvancedProperty
- NetAdapterBinding
- NetAdapterLso
- NetAdapterName
- NetAdapterRdma
- NetAdapterRsc
- NetAdapterRss
- NetAdapterState
- NetBios
- NetConnectionProfile
- NetIPInterface
- NetworkTeam
- NetworkTeamInterface
- ProxySettings
- Route
- WaitForNetworkTeam
- WinsServerAddress
- WinsSetting