I'm trying to build a device template for an MDS iNET-II radio. I can get it to successfuly login to the unit, but I'm haveing trouble initiating the TFTP transfer to retrieve the config file. Here's what I have so far:
<!--SolarWinds Network Management Tools-->
<!--Copyright 2007 SolarWinds.Net All rights reserved-->
<Configuration-Management Device="Microwave Data Systems" SystemOID="1.3.6.1.4.1.4130.2.1.1.5">
<Commands>
<Command Name="Reboot" Value="reset${CRLF}"/>
<Command Name="DownloadConfigIndirect" Value="H B E ${CRLF}"/>
<Command Name="UploadConfigIndirect" Value="copy ${TransferProtocol}://${StorageAddress}/${StorageFilename} ${ConfigType}${CRLF}${CRLF}"/>
<Command Name="PreCommand" Value="G" delay="5" regex="Press 'G' to go to Main Menu"/>
<Command Name="EnableIdentifier" Value=""/>
<Command Name="Version" Value="F"/>
</Commands>
</Configuration-Management>
The radio uses a menu. It is selecteable by entering a letter to select an option. In order to get it to send the file via TFTP, I would hit "H" then "B" then "E". Here are the menus:
Main Menu
========================================================================== A) Starting Information Screen F) Device Information
Network Configuration G) Performance Information
C) Radio Configuration H) Maintenance / Tools
D) Serial Gateway Configuration I) Redundancy Configuration
E) Security Configuration
Select a letter to configure an item, 'Q' to exit menu
Maintenance / Tools Menu
==========================================================================
A) Reprogramming
Configuration Scripts
C) Authorization Key
D) Radio Test
E) Ping Utility
F) Reset to Factory Defaults
Select a letter to configure an item, <ESC> for the prev menu
Configuration Scripts Menu
==========================================================================
A) TFTP Host Address x.x.x.x
Filename sitename-Running.Config
C) TFTP Timeout 10 sec
D) Retrieve File
E) Send File
Select a letter to configure an item, <ESC> for the prev menu
I would think it should be a simple matter, but I haven't been able to get it right yet. Any help would be appreciated.
Roger