TraceRoute
Trigger this action to trace the network path to a remote host.
Use the HTTP POST method with the resource
/mgmt/actionqueue/default
, specifying
a request payload with the following
format:{
"TraceRoute": {
"RemoteHost": "host",
"useIPv": "IP_address_format",
"LocalAddress": "IP_address"
}
}
- RemoteHost
- String
- useIPv
- String
- LocalAddress
- String
Example
To trace the path to the host williamswillow.co.uk, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:
{
"TraceRoute": {
"RemoteHost": "williamswillow.co.uk",
}
}