Hi !
I would like to develop new adaper for RAD FCD-155 ethernet/SDH device.
This device does not have "CISCO like" CLI but menues driven telnet CLI.
I would like to backup FCD's configuration by incorporating my PERL Net-snmp script.
Where do I put my script?
I have wathed the video tutorial but still don't understand how to do it?

Many thanks for some clues.
Roman.

hey there roman, what is it

hey there roman,

what is it that your script does? there is already a decent amount of info that we'll try to auto-parse out of SNMP info when you create an adapter. i'm guess that your script is doing essentially what one of the ziptie adapter would do, which is to run through a series of collections and then parse out the data. in that case you could just grab the collection sections of your script and put them in your main .pm file for the adapter, and then take the parsing sections out and then either incorporate them into the existing parsing subroutines, or just add your own. you can pop open any of the existing adapters and take a look at the main perl module (IOS.pm, for example) and see how the command output collection is stuffing the responses into variables, and then open up the parsers.pm module for that adapter and look at how those variables are read in and parsed. if you have more specific questions, just let us know. i hope that helps.

-Z