Automatic config backup / L2Edge license
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎11-12-2014 08:12 AM
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!
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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎11-13-2014 10:06 AM
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!
https://www.dropbox.com/s/tsqclfxg8c8p9n1/rancid-extreme-changes.tgz?dl=0
Thanks Frank!
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎11-12-2014 11:25 AM
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')
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')
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎11-12-2014 10:25 AM
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?
Is there other possibility?
Is there possibility to done python script from SOAP XML?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎11-12-2014 10:00 AM
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
I had to make minor modifications to the "..login" and "..rancid" scripts to make them work properly with EXOS
