-
Notifications
You must be signed in to change notification settings - Fork 90
NetAdapterRsc
dscbot edited this page Apr 14, 2025
·
7 revisions
| Parameter | Attribute | DataType | Description | Allowed Values |
|---|---|---|---|---|
| Name | Key | String | Specifies the Name of network adapter. | |
| Protocol | Required | String | Specifies which protocol to make changes to. |
IPv4, IPv6, All
|
| State | Required | Boolean | Specifies whether RSC should be enabled or disabled. | |
| StateIPv4 | Read | String | Returns the current state of RSC for IPv4 | |
| StateIPv6 | Read | String | Returns the current state of RSC for IPv6 |
This resource is used to enable or disable RSC (Recv Segment Coalescing) for specific protocols on a network adapter.
This configuration disables RSC for IPv6 on the network adapter.
Configuration NetAdapterRsc_DisableRscIPv6_Config
{
Import-DSCResource -ModuleName NetworkingDsc
Node localhost
{
NetAdapterRsc DisableRscIPv6
{
Name = 'Ethernet'
Protocol = 'IPv6'
State = $false
}
}
}This configuration disables RSC for IPv4 on the network adapter.
Configuration NetAdapterRsc_DisableRscIPv4_Config
{
Import-DSCResource -ModuleName NetworkingDsc
Node localhost
{
NetAdapterRsc DisableRscIPv4
{
Name = 'Ethernet'
Protocol = 'IPv4'
State = $false
}
}
}This configuration disables RSC on the network adapter.
Configuration NetAdapterRsc_DisableRscAll_Config
{
Import-DSCResource -ModuleName NetworkingDsc
Node localhost
{
NetAdapterRsc DisableRscAll
{
Name = 'Ethernet'
Protocol = 'All'
State = $false
}
}
}- DefaultGatewayAddress
- DnsClientGlobalSetting
- DnsClientNrptGlobal
- DnsClientNrptRule
- 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