cancel
Showing results for 
Search instead for 
Did you mean: 

Automatic config backup / L2Edge license

Automatic config backup / L2Edge license

Alexandr_P
Valued Contributor
Hello, colleagues!

Is there some ideas how can I automatically backup configurations from L2 switches with L2 Edge license.
UPM work from Edge license.

Thank you!
8 REPLIES 8

dflouret
Extreme Employee
Here's a pointer to the Rancid scripts that Frank sent to me.
https://www.dropbox.com/s/tsqclfxg8c8p9n1/rancid-extreme-changes.tgz?dl=0

Thanks Frank!

PARTHIBAN_CHINN
Contributor
sample perl script
use Net::Telnet;$telnet = new Net::Telnet ( Timeout=>10,Errmode=>'die');
$telnet->open('10.209.72.216');
$telnet->login('admin', '');
print $telnet->cmd('tftp put 1.1.1.1 vr vr-default primary.cfg primaydate.cfg')

Alexandr_P
Valued Contributor
We have X150 and X350 switches that have no 15.6 EXOS.
Is there other possibility?

Is there possibility to done python script from SOAP XML?

Frank
Contributor
We're using 'rancid' (http://www.shrubbery.net/rancid/) to backup the configs and track changes of all our switches. Rancid is basically an automated ssh/telnet connect tool that grabs the config and stores them via CVS - with a web-based front-end to look at the configs or changes.
I had to make minor modifications to the "..login" and "..rancid" scripts to make them work properly with EXOS
GTM-P2G8KFN