Hi,
I am planning to run a script in the NCM, that first checks the firmware level on the device and then checks it with the fimrware level it is going to upload to the switch. Should the firmware level match, it should abort upgrade. For example, it should move like this
Login into the switch via TELNET/SSH
Then it should do a
'show version' and check version number.
if(version_level==upgrade_level)
{
exit;
}
else
{
firmware_upgrade();
}
Can this be done and what are the variable I might choose? Is there a guide to writing scripts like these?
Thank you.
A