TCPConnectionTest
Trigger this action to test connectivity to a remote host using a specific port.
Use the HTTP POST method with the resource
/mgmt/actionqueue/default
, specifying
a request payload with the following
format:{
"TCPConnectionTest": {
"RemoteHost": "host",
"RemotePort": "port",
"Timeout": seconds,
"useIPv": "IP_address_format",
"LocalAddress": "IP_address"
}
}
- RemoteHost
- String
- RemotePort
- String
- Timeout
- Int
- useIPv
- String
- LocalAddress
- String
Example
To test the connection to port 5554 of the host williamswillow.co.uk with a twenty second timeout, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:
{
"TCPConnectionTest": {
"RemoteHost": "williamswillow.co.uk",
"RemotePort": "5554",
"Timeout": 20
}
}