Following on from
I thought I would share this NQE if others are using Arista AP’s and want to maintain version numbers across their estate.
/**
* @intent List all Arista AP's and there software version.
* @description List all Arista AP End Points and there software version.
*/
allowedVersion = "18.0.0";
foreach endpoint in network.endpoints
where endpoint.profileName == "Arista Wireless AP's"
foreach command in endpoint.cliCommandResponses
where command.command == "show device info"
let ParsedResponse = parseConfigBlocks(OS.UNKNOWN,command.response)
foreach line in ParsedResponse
let modelNo = patternMatch(line.text,`Device Model : {string}`)
foreach line in ParsedResponse
let software = patternMatch(line.text, `Device Version : {string}`)
foreach line in ParsedResponse
let serialNo = patternMatch(line.text,`Serial Number : {string}`)
where isPresent(modelNo)
where isPresent(software)
where isPresent(serialNo)
select {
violation: software != allowedVersion,
name: endpoint.name,
location: endpoint.locationName,
ModelNo: modelNo,
SerialNo: serialNo,
Software: software
}
Hope it helps, it probably can be refined to make it more efficient, but will revisit these over time as quite new to NQE’s at the moment.