- Community Home
- >
- Storage
- >
- Midrange and Enterprise Storage
- >
- HPE EVA Storage
- >
- Automating backup of config on a Brocade 2800?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2002 07:10 AM
тАО08-30-2002 07:10 AM
Automating backup of config on a Brocade 2800?
>configupload command...
Does anyone have any ideas on how to automate this process?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2002 07:42 AM
тАО08-30-2002 07:42 AM
Re: Automating backup of config on a Brocade 2800?
Configuration is static, it don't change if you don't change it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2002 08:23 AM
тАО08-30-2002 08:23 AM
Re: Automating backup of config on a Brocade 2800?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2002 09:23 AM
тАО08-30-2002 09:23 AM
Re: Automating backup of config on a Brocade 2800?
Sorry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2002 09:25 AM
тАО08-30-2002 09:25 AM
Re: Automating backup of config on a Brocade 2800?
The configuration can be upload/download by ftp or tftp
you can schedule a cron that download the config to a server.... but I don't probe it...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-20-2002 01:43 AM
тАО09-20-2002 01:43 AM
Re: Automating backup of config on a Brocade 2800?
I am doing this using expect. Here is a simple script that you can use to run a command on a Brocade switch from a Unix host (assuming you have not changed default admin password):
#!/opt/expect/bin/expect -f
set username admin
set prompt [lindex $argv 0]:$username>
spawn telnet [lindex $argv 0]
expect login:
send "$username\r"
expect Password:
send "password\r"
expect $prompt
send "[lrange $argv 1 $argc \r"
expect $prompt
send "exit\r"
exit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2002 06:40 AM
тАО10-01-2002 06:40 AM
Re: Automating backup of config on a Brocade 2800?
I use a script to generate a telnet script which I then run and remove (passwords are enclosed in it!)
echo "(sleep 2; echo admin; echo bobby1; echo 'configUpload \"53.202.171.26\",\"tempftp\",\"/operations/etc/slk04.cfg\",\"robert99\"'; sleep 5; echo logout) | telnet dcsslk04.ourplace.net" >>/tmp/leftsanscript.sh
echo >>/tmp/leftsanscript.sh
chmod 775 /tmp/leftsanscript.sh
/tmp/leftsanscript.sh
rm /tmp/leftsanscript.sh
This works a treat! Share and Enjoy! Ian Dennison
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-01-2002 12:45 PM
тАО10-01-2002 12:45 PM
Re: Automating backup of config on a Brocade 2800?
This tool is really useful . you can backup your zones in a database and from database into a flat file and vice versa .
Its a really good tool and you should try it .
I am not sure if its available free but try it on http://powerlink.emc.com .