Examples/Resources/xNetAdapterLso/1-DisableLsoIPv6.ps1

<#
    .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
        }
    }
}