DSCResources/DSC_NetAdapterLso/en-US/about_NetAdapterLso.help.txt

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
.NAME
    NetAdapterLso
 
.DESCRIPTION
    This resource is used to enable or disable LSO for specific protocols on a
    network adapter.
 
    The following table shows configuration overlap with [NetAdapterAdvancedProperty](https://github.com/dsccommunity/NetworkingDsc/wiki/NetAdapterAdvancedProperty).
 
    | NetAdapterLso | | NetAdapterAdvancedProperty |
    | -------------------- | ---- | ------------------------------------ |
    | V1IPv4 | = | Not Available |
    | IPv4 | = | *LsoV2IPv4 |
    | IPv6 | = | *LsoV2IPv6 |
 
.PARAMETER Name
    Key - String
    Specifies the name of network adapter.
 
.PARAMETER Protocol
    Key - String
    Allowed values: V1IPv4, IPv4, IPv6
    Specifies which protocol to make changes to.
 
.PARAMETER State
    Required - Boolean
    Specifies whether LSO should be enabled or disabled.
 
.EXAMPLE 1
 
This configuration disables LSO for IPv6 on the network adapter.
 
Configuration NetAdapterLso_DisableLsoIPv6_Config
{
    Import-DSCResource -ModuleName NetworkingDsc
 
    Node localhost
    {
        NetAdapterLso DisableLsoIPv6
        {
            Name = 'Ethernet'
            Protocol = 'IPv6'
            State = $false
        }
    }
}
 
.EXAMPLE 2
 
This configuration disables LSO for IPv4 on the network adapter.
 
Configuration NetAdapterLso_DisableLsoIPv4_Config
{
    Import-DSCResource -ModuleName NetworkingDsc
 
    Node localhost
    {
        NetAdapterLso DisableLsoIPv4
        {
            Name = 'Ethernet'
            Protocol = 'IPv4'
            State = $false
        }
    }
}