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
Specify a host name or IP address.
useIPv
String
Optionally specify the format of the IP address to identify the IP version to use when resolving an ambiguous host name to an IP address. Specify "-4" for IPv4 (the default), or "-6" for IPv6.
LocalAddress
String
Optionally specify the IP address of a local interface to use for the trace route.

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",
    }
}