Even though this script is best effort supported, please send any issues you find, suggestions for improvements etc to: po@arista.com. Please use the subject: CV EOS Conversion tool
I also want to give credit to Hugh Adams, Steve Ulrich, Thomas Smith and Jonathan Smith for reviewing and contributing to the code and regexes. They have been participating in developing and debugging the tool! Team work!
Important files: CVEOSConversion.py - The original tool to which the command line options are described further down. CVEOSConversionV2.py - A conversion of the script to use CVPRAC and less command line options. If so desired it can be used instead of CVEOSConversion.py CvEosConversion_cvprac.py - A worked through version of the tool that uses CVPRAC. Uses If so desired it can be used instead of CVEOSConversion.py
Supporting files: convertGenerated2Static.py - A script that will convert generated configlets to static configlets, since CVEOSConversion only work on static configlets. If so desired, convertGenerated2Static.py should be used before running the CVEOSConversion.
This tool is meant to be used from a Linux Python script host (Python 2.6, 2.7 and 3.x) and connect to CVPs REST API. Current tested CVP version is 2019.1.x. There is work put into making the tool CVP 2020.1.x compatible. The script itself uses the provided CloudVisiob Python based API. All files needed to use the Python based API is provided in this repo. Make sure to clone all files to your directory.
There is a TEST-CONFIGLET.TXT
which can be pasted into a static configlet. The file have all old CLI configs that will be changed. The thought here is to have something to test on.
The script will connect to CVP and open all static configlets. It will look for all CLI changes and update the configlets. This means a lot of tasks will be created and when running them basically just the running config changes withoutany impact on data plane or control plane. All that really happens is that config is saved in the new CLI format in running-config and startup-config.
Known caveats right now:
-
The CLI changes apply to EOS with versions 4.21.x and above. So if you are running vRouters that are at max EOS version 4.20.x, the changes will be applied and fail. This doesnt impact anything, but it forces you to edit the vRouters configlets and change to old CLI commands again.
-
system control-plane
can be translated by mistake tosystem system control-plane
-
The tool is meant to be used on static configlets. Any generated configlets by configlet builders should be updated through editing the configlet builder to use new CLI syntax. Also convertGenerated2Static.py can be used to convert all generated configlets to static configlets. A headsup there is that then altering the script in the configlet builder will not update those configlets converted to static configlets.
-
In interface config mode:
ip igmp query-max-response-time
is meant to change toigmp query-max-response-time
Right now it is not changed, because it overlaps with a command inrouter igmp
. -
In router igmp config mode:
ip igmp query-max-response-time
is meant to change toquery-max-response-time
Right now it is not changed, because it overlaps with a command in interface config mode. -
In router isis config mode:
passive-interface
is meant to change topassive
Right now it is not changed since it conflicts with several other config modes usingpassive-interface
. -
In router rip config mode:
default-metric
is meant to change tometric default
Right now it is not changed since it conflicts with several other config modes usingdefault-metric
.
Below is an explanation of all command line options to CVEOSConversion.py
:
-c, --cvphostname Mandatory, provides CVP host name FQDN or IP for
CVP REST API connection.
-u, --cvpusername Mandatory, provides CVP username for CVP REST API connection.
-p, --cvppassword Optional, provides CVP password for CVP REST API connection. If not used, the script will prompt for
prompt for the password.
-d, --debug Optional, default is 'no'. If debug is yes, nothing will
actually be sent to CVP and proposed configs are
written to terminal.
-t, --trace Optional, default is 'no'. If trace is yes, alongside
actual changes to CVP configlets, there will be
trace messages to terminal.
Thx, Patrik Olsson, Systems Engineer Arista Networks