Configure and Verify Cisco ACI Using Acitoolkit
Some instructions and code on how to use the Acitoolkit objects to perform configuration checks against the APIC running state and then create a new Tenant configuration from scratch. Instructions for setting up acitoolkit for the first time are given here: https://acitoolkit.readthedocs.io/en/latest/tutorialsetup.html When trying to use acitoolkit in python for the first time, I got quite a few 'ModuleNotFoundError' messages before succeeding. After overcoming this rabbit-hole after much StackOverflow-ing, I managed to get the acitoolkit working. Definitely ensure the Microsoft Visual C++ components have been installed: https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2019 You may also get the same problems as I did in needing to do pip installs for acitoolkit, six, websocket, websocket-client and pyrsistent before being able to proceed. What this script does is to import the import the necessary modules for session, tenant, con...