Summary
Send a gNOI traceroute command.
Description
Send a traceroute command over gRPC gNOI to a host and return results.
Route
POST /automationgateway/gnoi/traceroute/execute
Roles
admin
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
destination |
string |
yes |
- |
do_not_fragment |
boolean |
no |
- |
do_not_resolve |
boolean |
no |
- |
host |
string |
yes |
A host from the gRPC inventory |
initial_ttl |
number |
no |
- |
l3protocol |
string |
no |
- |
max_ttl |
number |
no |
- |
source |
string |
no |
- |
wait |
number |
no |
- |
Copied to Clipboard
{
"destination": "ea amet esse",
"host": "cupidatat id ipsum",
"do_not_fragment": true,
"do_not_resolve": true,
"initial_ttl": 39565850,
"l3protocol": "anim cillum",
"max_ttl": -11106457,
"source": "tempor irure ut ullamco",
"wait": -62055675
}
Copied to Clipboard
{
"type": "object",
"properties": {
"destination": {
"title": "destination",
"type": "string"
},
"do_not_fragment": {
"title": "do_not_fragement",
"type": "boolean"
},
"do_not_resolve": {
"title": "do_not_resolve",
"type": "boolean"
},
"host": {
"title": "host",
"type": "string"
},
"initial_ttl": {
"title": "initial_ttl",
"type": "integer"
},
"l3protocol": {
"title": "l3protocol",
"type": "string"
},
"max_ttl": {
"title": "max_ttl",
"type": "integer"
},
"source": {
"title": "source",
"type": "string"
},
"wait": {
"title": "wait",
"type": "integer"
}
},
"required": [
"destination",
"host"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
object |
gNOI response object. |
Copied to Clipboard
{
"title": "result",
"type": "object"
}