Chad,
There is a cli command that returns the uuid:
mts-io-sysfs show uuid
and the serial number:
mts-io-sysfs show device-id
On the other hand you can do a REST’ful GET request using the http request node for both these values from the configuration database locally:
admin@mtcdt:/sbin# curl -m 5 -s 127.0.0.1/api/system/uuid
{
“code” : 200,
“result” : “ABCDEF0123456789ABCDEF0123456789”,
“status” : “success”
}
admin@mtcdt:/sbin# curl -m 5 -s 127.0.0.1/api/system/deviceId
{
“code” : 200,
“result” : “18114615”,
“status” : “success”
}
Jeff