The TCL shell on the router and switch is one option to automate the process.
Start by going to the tcl shell on the router:
871#tclsh
871(tcl)#
Input the names of the file in the set file commad and add your FTP server username and password on the copy command. May want to do this in notepad, then paste it to the TCL prompt of the router.
set file {filename1 filename2 filename3 }
conf t
file prompt quiet
exit
foreach f $file {
copy ftp://username:password@192.168.23.125:$f flash: }
- Dan