...
Code Block | ||
---|---|---|
| ||
Promise<PingResult> ping(String host_name, PingConfig config) |
For BrightSign internal use. Behavior subject to change without notice. Pings a device with the specified host_name
to determine if there are connection issues.
traceroute()
Code Block | ||
---|---|---|
| ||
Promise<InterfaceTestResult> traceroute(String host_name, TraceRouteConfig config) |
...
[unsigned short] count:
The default value is 10.[unsigned long]
interval:
The interval value in milliseconds. The default is 100.[unsigned long]
timeout:
The timeout value in seconds. The default is 10000.[unsigned long] packetsize
: The packet size in bytes. The default is 56.[bool]
ipv4:
Enable pinging IPv4 addresses. The default istrue
.[bool]
ipv6:
Enable pinging IPv6 addresses. The default isfalse
true
.[bool]
allAddresses:
Iftrue
then ping all addresses returned from the DNS query. Iffalse,
then each will be pinged in turn until one responds. The default isfalse
.
...