Custom script to backup Dell Force 10 switch
-- Use these scripts to manage Cisco devices
name="Dell Force 10"
desc="Dell Systems SSH/TFTP Scripts"
protocol=TFTP
--
-----BEGIN SCRIPT "Configuration Upload"-----
copy running-config tftp:
%TFTP_IP%
%RELATIVE_TARGET_FILE_PATH%
@receive 120
exit
-----END SCRIPT-----
-----BEGIN SUCCESS "Configuration Upload"-----
bytes successfully copied
-----END SUCCESS-----
-----BEGIN SCRIPT "Configuration Download"-----
copy %TFTP_URL% startup-config
startup-configuration
@receive 120
exit
-----END SCRIPT-----
-----BEGIN SUCCESS "Configuration Download"-----
bytes successfully copied
-----END SUCCESS-----