en-US/about_xNetAdapterLso.help.txt

.NAME
    xNetAdapterLso
 
# Description
     
    This resource is used to enable or disable LSO for specific protocols on a network adapter.
     
.PARAMETER Name
    Key - String
    Specifies the name of network adapter.
 
.PARAMETER Protocol
    Required - 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
    This configuration disables LSO for IPv6 on the network adapter.
 
Configuration Example
{
    param
    (
        [Parameter()]
        [System.String[]]
        $NodeName = 'localhost'
    )
 
    Import-DSCResource -ModuleName xNetworking
 
    Node $NodeName
    {
        xNetAdapterLso DisableLsoIPv6
        {
            Name = 'Ethernet'
            Protocol = 'IPv6'
            State = $false
        }
    }
}
 
 
    .EXAMPLE
    This configuration disables LSO for IPv4 on the network adapter.
 
Configuration Example
{
    param
    (
        [Parameter()]
        [System.String[]]
        $NodeName = 'localhost'
    )
 
    Import-DSCResource -ModuleName xNetworking
 
    Node $NodeName
    {
        xNetAdapterLso DisableLsoIPv4
        {
            Name = 'Ethernet'
            Protocol = 'IPv4'
            State = $false
        }
    }
}