UniversalStopPacketCapture
Trigger this action to stop a packet capture session.
Use the HTTP POST method with the resource
/mgmt/actionqueue/default
, specifying
a request payload with the following
format:{
"UniversalStopPacketCapture": {
"Filename":"filepath"
"InterfaceType": "interface_type",
"EthernetInterface": "Eth_interface_name",
"VLANInterface": "VLAN_interface_name",
"LinkAggregation": "linkagg_interface_name",
"StandaloneStandbyControlInterface": "standalone_interface_name"
}
}
- Filename
- String
- InterfaceType
- String
- EthernetInterface
- String
- VLANInterface
- String
- LinkAggregation
- String
- StandaloneStandbyControlInterface
- String
Example
The following example stops the packet-capture session that writes data to the temporary:///capture-2 file on the VLAN interface named VLAN203.
To stop the packet capture session, post the following payload to
https://yourhost:5554/mgmt/actionqueue/default
:
{
"UniversalStopPacketCapture": {
"Filename": "temporary:///capture-2",
"InterfaceType": "VLAN",
"Interface": "VLAN203"
}
}