Examples/Resources/NetAdapterLso/2-DisableLsoIPv4.ps1

<#
    .EXAMPLE
    This configuration disables LSO for IPv4 on the network adapter.
#>

Configuration Example
{
    param
    (
        [Parameter()]
        [System.String[]]
        $NodeName = 'localhost'
    )

    Import-DSCResource -ModuleName NetworkingDsc

    Node $NodeName
    {
        NetAdapterLso DisableLsoIPv4
        {
            Name     = 'Ethernet'
            Protocol = 'IPv4'
            State    = $false
        }
    }
}