Cisco 3850 Switches require that the Bundle is deployed to the Active and then the following command is run to deploy to member switches
software install file flash:<IOS VERSION> (optional: switch x - y)
Therefore I'm trying to script deploying the .bin file via solarwinds...easy enough, but due to the size of the file this can take up to 20 mins, therefore I'd like the script to pause for 20 mins before issuing the command above?
{
//ISSUE COMMANDS TO DEVICE
string @CommandLine = 'copy tftp flash:'
string @Pause = '${Delay:1800}'
CLI
{
@CommandLine
<ip address of solarwinds>
@IOS_FILENAME
@IOS_FILENAME
}
}
@Pause
{
string @Pause = '${Delay:1800}'
CLI
{
software install file flash:cat3k_caa-universalk9.SPA.03.06.03.E.152-2.E3.bin
}
}
I have also tried the following through configuration management, with no joy!
copy tftp flash
<ip address of solarwinds>
cat3k_caa-universalk9.SPA.03.06.03.E.152-2.E3.bin
cat3k_caa-universalk9.SPA.03.06.03.E.152-2.E3.bin
${Delay:2000}
software install file flash:cat3k_caa-universalk9.SPA.03.06.03.E.152-2.E3.bin switch 1-3}
${Delay:1200}
n