DisableVLANHardwareOffload

Trigger this action to temporarily disable VLAN hardware offload for the specified interface.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "DisableVLANHardwareOffload": {
    "Interface": "VLAN_interface"
    }
}
Interface
String

Specifies the VLAN interface.

Example

To disable hardware offload for the VLAN interface VLAN09, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{
  "DisableVLANHardwareOffload": {
    "Interface": "VLAN09"
    }
}