configuration / system / firmware

CLI REST-API

select-fw

select-fw [firmware-image]
The "select-fw" command selects a firmware image to use.
After selecting a firmware, the LANTIME requires a reboot to use the selected firmware.

RESTAPI: The data can be passed in the body like this:
{
    "parameters": {
        "firmware-image": "fw_7.00.001"
    }
}
NameValueDescriptionExample
firmware-image
See also:
/configuration/system/firmware: Firmware
/configuration/system/firmware/show-fw: lists all installed and usable firmware images
/configuration/system/firmware/delete-fw: removes a firmware image from the flash of the system
/configuration/system/firmware/restore-osv: reinstall the OSV

REST-API Support:


This command is supported by the REST API:

Method: PUT
URL: /api/configuration/system/firmware/select-fw
Body:
{
    "parameters": {
        "firmware-image": [firmware-image]
    }
}

Example using curl:
curl -X PUT /api/configuration/system/firmware/select-fw -d 
"{
    \"parameters\": {
        \"firmware-image\": \"fw_7.00.001\"
    }
}"