NQE for confirming configuration within Cisco switch interfaces
Hi! Looking for help with an NQE to scan/identify configuration for all Cisco switches within a workspace that contain one of two QOS policy maps within at least one of the device interfaces.
For example
interface gigabitethernet1/1
service-policy output 1P7Q3T
or
service-policy output 1P7Q1T
Thanks
Page 1 / 1
@rrogers33 You can leverage blockMatches Try the following test.
foreach x in 0] let config = parseConfigBlocks(OS.UNKNOWN, test) let matches = blockMatches(config, pattern) foreach match in matches let violation = match.data.policy not in "1P7Q3T", "1P7Q1T"] select {violation, intf: match.data.intf, policy: match.data.policy}
Another option (available since 23.11), in case you are looking to run some ad-hoc searches (as opposed to having a saved query that you can use as a Verification or in Inventory+), is to use our “Config Search” parameterized query in the Forward Library. You can just open this query, set the config pattern you are looking for, and then run the query.
The query is “Forward Library/Devices/Config Search” (you can also search for it). Open the query, click the “Parameters” button, and then enter the config pattern you like. You can also specify OSes and device name globs in case you want to narrow down the search. See the screenshot below for the example with a pattern that is close to what you are looking for:
Thank you very much for the responses. @GaryB, I will play around with that query. @Andreas Unfortunately for the “Config Search” I am not finding that as an option in our NQE Library. Perhaps we are at an older code.
@rrogers33 Yes you will need 23.11 for the new “Edit Parameterized Query” feature in NQE