diff --git a/ChangeLog b/ChangeLog index aa5944b0..4b568ae2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ SNMP::Info - Friendly OO-style interface to Network devices using SNMP. +version 3.35 () + + [BUG FIXES] + + * #180 support CiscoConfig on Nexus (sf.net:scratchfury) + version 3.34 (2016-11-20) [ENHANCEMENTS] @@ -721,7 +727,7 @@ version 1.05 (11/25/07) - CVS only. No official release + Added support for Cisco (Airespace) wireless controllers as new class L2::Airespace + Added support for Nortel Ethernet Routing Switch 2500 series and - Business Ethernet Switches (David Siebörger) + Business Ethernet Switches (David Siebörger) + Update of L3::Foundry to support all Foundry devices including newer switches. Depreciate L2::Foundry. + Added generic device type detection using IANA assigned enterpise diff --git a/Info/CiscoConfig.pm b/Info/CiscoConfig.pm index 61fd5c7d..f7e7ff8f 100644 --- a/Info/CiscoConfig.pm +++ b/Info/CiscoConfig.pm @@ -97,6 +97,10 @@ sub copy_run_tftp { print "Using new method, row iid: $rand\n" if $ciscoconfig->debug(); #Check each set, delete created row if any fail + unless ( $ciscoconfig->set_config_row_status( 5, $rand ) ) { + $ciscoconfig->error_throw("Initializing config copy instruction failed"); + return; + } unless ( $ciscoconfig->set_config_source_type( 4, $rand ) ) { $ciscoconfig->error_throw("Setting source type failed"); unless ( $ciscoconfig->set_config_row_status( 6, $rand ) ) {