Hi there, I'm trying to write a custom template for detecting Vyatta routers, currently the OID isn't "supported" as a proper name, hence the "unknown", the file is named "unknown-1.3.6.1.4.1.30803.configmgmt-commands" and is in the same directory as in the other templates.
The content of the file is as follows (this is my first attempt at changing/creating device templates)...
<!-- edited with XML Spy v4.4 U (http://www.xmlspy.com) by () -->
<!--SolarWinds Network Management Tools-->
<!--Copyright 2005 SolarWinds.Net All rights reserved-->
<Configuration-Management Device="Unknown" SystemOID=" 1.3.6.1.4.1.30803">
<Commands>
<Command Name="EnableIdentifier" Value="$"/>
<Command Name="Reset" Value="set cli complete-on-space off${CRLF}set cli screen-width 0${CRLF}set cli screen-length 0"/>
<Command Name="Reboot" Value="reboot${CRLF}yes"/>
<Command Name="EnterConfigMode" Value="configure"/>
<Command Name="ExitConfigMode" Value="commit${CRLF}save${CRLF}exit"/>
<Command Name="SaveConfig" Value="save"/>
<Command Name="DownloadConfig" Value="show configuration"/>
<Command Name="UploadConfig" Value="${EnterConfigMode}${CRLF}${ConfigText}${CRLF}${ExitConfigMode}"/>
<Command Name="SaveConfig" Value="${EnterConfigMode}${CRLF}${ExitConfigMode}"/>
<Command Name="Version" Value="show version"/>
</Commands>
</Configuration-Management>
When trying to get the device configs, I get the following error message "unable to locate or error loading device template"...
Is there a syntax problem with the file?
Thanks
Dave