Hello ,
I have a 2960 stack switch and i want to create a scirpt to download the config file to windows share folder .i dii it for all my firewalls and i dont know if it's possible to do it with other devices like my stack here .
Any idea please ?
Regards
Hi, you can use the built in auto archive feature. An explanetion is available here:
Otherwise you can write a code to connect into the switch using telnet or ssh, execute a show run and export the output of the show command.
Regard.
one of snippet from my notes : (make sure you understand the script before deploying in live environment, test and put in production.)
event manager applet sync-config event timer watchdog time 86400 action 1.0 cli command "enable" action 2.0 cli command "copy running scp://username:password@192.168.1.1/backup-config" pattern "Address" action 3.0 cli command "192.168.1.1" pattern "username" action 4.0 cli command "user" pattern "filename" action 5.0 cli command "backup-config"
Hi
could i do this :
cho y | pscp.exe -l $Username -pw $Password -v “$switch::sys_config” $BackupPath\$Date\ | out-host -verbose
hi ,
any help about my last reply ?
Regards
I have given the script to back up from device automatically to SCP to destination.
If you looking auto backup from out of the box, there are many methods to do.
yes i didnt like to make a autobackup procedure .so , im looking for a SCP method to tranfer the config file to share folder
regards
Then original one do for SCP using EEM Script.
Hi
I have done almost the same.
echo y | pscp -scp admin@<ip>:startup-config hostname.cfg
*** Rate All Helpful Responses ***
in switch is running-config
but, in my script when i exzcuted There is prompt to enter password, how you are programming this ?