This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Alteon loadbalancers and ssl offloader config download via snmp

we are currently using perl scripts to download the alteon configs via tftp with an snmp request. Can we get this feature implemented in the NCM? The relavent script details follow:

 

sub tftp_backup_alteon
        #requires: $tftp_server, $device, $target_file, $write_string
        {
        system "snmpset -t 30 -v 1 -c \'$write_string\' $device 1.3.6.1.4.1.1872.2.1.2.1.18.0 s $tftp_server &> /dev/null";
        system "snmpset -t 30 -v 1 -c \'$write_string\' $device 1.3.6.1.4.1.1872.2.1.2.1.19.0 s $target_file &> /dev/null";
        system "snmpset -t 30 -v 1 -c \'$write_string\' $device 1.3.6.1.4.1.1872.2.1.2.1.21.0 i 4 &> /dev/null";
        }