Configuration Backup
Although the system configuration will not change upon the software upgrade, it is mandatory to create creating a backup file of the configuration is mandatory by exportingthe complete configuration before any software upgrade.
...
The MCM-9000 software is delivered on a USB Flash disk (DoK). Upgrading the software can be performed either Offline or OnlineBesides Online and Offline Software Upgrade, it is possible to do software upgrades through API.
To perform a Software upgrade along with License and Firmware updateor Firmware upgrade through API, follow the below steps:
...
...
...
Select the Next Boot Image.
Download Latest Files
1. Download Latest Files
Anchor | ||||||
---|---|---|---|---|---|---|
|
Login to TagVS Storage Center and download the latest files: "MCM-9000_vxxxx.rar" (software)
...
and "Firmware_vxxxx.rar" (firmware)
...
.
2. Upload Software to Device
...
Online upgrade through GUI
For MCM-9000, version 5.1.2 onwards, follow the below steps to upload the device's latest files through the GUI.
After the download, navigate to System->System Information->Software Management.
Click on “Upload File” in the below screen to upload the downloaded RAR files (software, firmware, and license) and then click on Submit to finish the upload.
Select a "Next Boot Image" on Web GUI
Once the latest files are uploaded, they are available in the Next Boot Image drop-down menu on the system information tab (System → System Information → Boot Image Selection). Select the desired image from the drop-down menu and click on submit. Only valid software images will be displayed on the drop-down menu.
After submitting the image change, restart the system: System → Device Controls → Reboot.
Additionally, it is recommended to do a page cache refresh,
...
Windows users: Press ctrl + F5 on your keyboard.
...
Anchor | ||||||
---|---|---|---|---|---|---|
|
Use the following command to upload software to the GUI.
POST Resource URL : http://{host}/api/2.0/system_files/command/UploadFile/software
Please refer to API documentation here.
For Example, http://192.168.10.131/api/2.0/system_files/command/UploadFile/software
Under the body section on the POSTMAN, insert the KEY as data[File][0], upload the MCM file to upgrade under the VALUE field as shown below, and click Send.
...
Expand | |||||
---|---|---|---|---|---|
| |||||
|
3. Select the next boot image
Anchor | ||||||
---|---|---|---|---|---|---|
|
Use the following command to GET “next_boot_image“ from the response.
GET Resouce URL : http://{host}/api/2.0/devices/{id}/.json
Please refer to API documentation here.
...
For example, http://192.168.10.131/api/2.0/devices/9898/.json
Expand | |||||
---|---|---|---|---|---|
| |||||
|
The “next_boot_image” id is needed in step 4 to select the right image to be upgraded.
...
4. Set next boot image from the dropdown
Anchor | ||||||
---|---|---|---|---|---|---|
|
...
By default the current image is choosen in the dropdown list of the Next Boot Image. To choose the latest image uploaded use the image_id. Here, the latest image to be upgraded is the Image-2 | firmware:1.1.8 software:6.3.7. Hence, image_id = 2.(image_id is the id from next_boot_image in step 3)
Use the following command to choose the image from the drop down list.
GET Resource URL : http://{host}/api/2.0/devices/switchBootImage/{image_id}/.json
Please refer to API documentation here.
For example, http://192.168.10.131/api/2.0/devices/switchBootImage/2/.json
Expand | |||||
---|---|---|---|---|---|
| |||||
|
5. Finally reboot the System
Anchor | ||||||
---|---|---|---|---|---|---|
|
Use the following command to reboot the System.
GET Resource URL : http://{host}/api/2.0/devices/command/hardReset/.json
Please refer to API documentation here.
For example, http://192.168.10.131/api/2.0/devices/command/hardReset/.json
Expand | |||||
---|---|---|---|---|---|
| |||||
|