5.7 KiB
curl based test script
This script is built on top of curl and jq. You must set the global variable UCENTRALGW in order to use it.
cli help
The commands
getdevice serial
Get the device JSON document.
deletedevice serial
Delete the device.
createdevice serial cfg MAC
Create a device using the default configuration.
serial: device serial numbercfg: JSON config file nameMAC: string MAC Address
getdevicestatus serial
Get the device status JSON document.
serial: device serial number
getstats serial
Get statistics for the device.
serial: device serial number
gethealthchecks serial
Get healthchecks for a device.
serial: device serial number
newesthealthchecks serial
Get newest healthchecks for a device.
serial: device serial number
lasthealthcheck serial
Get the last healthcheck
serial: device serial number
getcapababilities serial
Get the device capabilities JSON document.
serial: device serial number
deletecapababilities serial
Delete the device capabilities JSON.
serial: device serial number
reboot serial
Reboot the device.
serial: device serial number
upgrade serial URI
Do firmware upgrade for a device.
serial: device serial numberURI: complete URI where the upgrade file exists. No validation is performed.
leds serial pattern duration
Activate LEDs a device.
serial: device serial numberpattern: on/off/blinkduration: number in seconds
configure serial cfg
Change configuration for a device.
serial: device serial numbercfg: JSON config file name
factory serial keep_redirector
Do factory reset for device.
serial: device serial numberkeep_redirector: true=keep redirector, false=reset redirector
request serial message
Force a message from the device.
serial: device serial numbermessage: state or healthcheck
wifiscan serial verbose
Do wifiscan for a device.
serial: device serial numberverbose: verbose=true/false
telemetry serial
Start telemetry stream for a device.
trace serial duration network
Launch a remote trace for a device.
serial: device serial numberduration: number in secondsnetwork: which network to perform trace on: lan or wan
getcommand command-uuid
Get the command JSON document.
command-uuid: command UUID
deletecommand command-uuid
Delete the command.
command-uuid: command UUID
newestcommands serial
Get the newest commands for a device.
serial: device serial number
listdevices
List devices.
listcommands serial
List commands for a specific device.
serial: device serial number
deletecommands serial
Delete commands for a device.
serial: device serial number
getlogs serial
Get logs for the device.
serial: device serial number
newestlogs serial
Get the latest logs for the device.
serial: device serial number
deletelogs serial
Delete logs for the device.
serial: device serial number
eventqueue serial
Request event queue for the device.
serial: device serial number
listdefaultconfigs
List default configurations.
createdefaultconfig name ids cfg
Create a default configuration
name: unique name, no spacesids: comma separated list of modelscfg: JSON config file name
addblacklistdevice serial reason
Add a device to the black list
serial: serial number of the device to addreason: reason for blacklisting
getblacklist
List all blacklisted devices
deleteblacklistdevice serial
Add a device to the black list.
serial: device serial number
devicecount
Get the number of devices in the DB.
deviceserialnumbers
Get only the serial numbers.
selectdevices serial_list
Get a list of devices based on a list.
serial_list: serial numbers (must be comma separated).
deviceswithstatus
Get devices with their status.
setloglevel
Set the log level for s specific subsystem.
getloglevels
Get the current log levels for all subsystems.
getloglevelnames
Get the log level names available.
getsubsystemnames
Get the list of subsystems.
systeminfo
Get basic system information.
reloadsubsystem subsystem name
Reload the configuration for a subsystem.### getfile
Get the file associated with trace command .
uuid: UUID of file to retrieve
rtty serial number
Get the details for an rtty session.
serial: device serial number
lifetimestats serial number
Get the lifetime stats counters for a device
serial: device serial number
laststats serial number
Get the last statistics for a device.
serial: device serial number
neweststats serial number
Get the newest statistics for a device.
serial: device serial number
deviceping serial number
This will return you the end-to-end latency from command-line to return value.
Notes
To pass additional flags to the CURL command, create an environment variable called FLAGS and git ve the values you want. For example, for force all call to use IPv6, set FLAGS="-6", for verbose mode and IPv6, set FLAGS="-6 -v"
Dates
All dates are expressed in UNIX time UTC in seconds. If you are using JS or other languages, please make sure that you convert your UTC time to seconds (some languages use microseconds or milliseconds).