DisableEthernetHardwareOffload
Trigger this action to temporarily disable Ethernet 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:{
"DisableEthernetHardwareOffload": {
"Interface": "Ethernet_interface"
}
}
- Interface
- String
Example
To disable Ethernet hardware offload for the interface Eth13, post the following payload to
https://yourhost:5554/mgmt/actionqueue/default
:
{
"DisableEthernetHardwareOffload": {
"Interface": "eth13"
}
}