Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
Is it possible to use processing instruction in devices templates that are used by NSO compliance reports?I am looking to validate configurations based on the platform model normally in a service template I would use: <?set-root-node {/devices/device...
Hi,
I am having some challenges when implementing config templates based on device version using config-template only.
My solution is aiming to use the platform version from the devices provided by the NED based on the version nr a config template ...
Hi,
I have some question which I am struggling with, I have to read the device NED type from the device module. Almost all NEDs returns with position 0 from the keys the correct NED type except IOS-XR NED the position of the NED type is not 0 but 3...
You can do that by modifying the ncs.conf file:
Under the <CLI> section in the ncs.conf file, you can add <style>c</style>
This will change the CLI behavior to Cisco style as default.
<cli>
<style>c</style>
Thank you very much for pointing that out, after reading the man page I have to change the logic to the following:
<?if {string-compare(/version, 'saos-06-14-00-0434') <=0}?>
The result worked exactly as I wanted...