Cisco APIC Installation and ACI Upgrade and Downgrade Guide

PDF

Cisco APIC Installation and ACI Upgrade and Downgrade Guide

Upgrade or downgrade the Cisco APIC software using the REST API

Want to summarize with AI?

Log in

Manages Cisco APIC software versions by executing REST API commands to download images and trigger controller firmware updates. This procedure ensures the fabric controllers transition to the specified software release.


Procedure

1.

Download the Cisco APIC image into the repository.

Example:

POST URL: https://<ip address>/api/node/mo/uni/fabric.xml
                        <firmwareRepoP>
                        <firmwareOSource name="APIC_Image_download" proto="http" url="http://<ip address>/<ver-no>"/>
                        </firmwareRepoP>
                    
2.

Post the following policy to set the desired version for controllers:

Example:

POST URL: https://<ip address>/api/node/mo/uni/controller.xml
                        <firmwareCtrlrFwP
                        version="<ver-no>"
                        ignoreCompat="true">
                        </firmwareCtrlrFwP>
3.

Post the following policy to trigger the controller upgrade immediately:

Example:

POST URL : https://<ip address>/api/node/mo/uni/controller.xml
                        <maintCtrlrMaintP
                        adminState="up" adminSt="triggered">
                        </maintCtrlrMaintP>