From 6806c36f52a5fc80a14abebbc03a22e377af80c8 Mon Sep 17 00:00:00 2001 From: Kenny Hackworth Date: Thu, 14 May 2026 12:05:30 -0400 Subject: [PATCH 1/2] fix: reverting the network driver changes --- ansible/roles/platforms/defaults/main.yml | 4 ++-- containers/nautobot/nautobot_config.py | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ansible/roles/platforms/defaults/main.yml b/ansible/roles/platforms/defaults/main.yml index 39c392ced..21717924c 100644 --- a/ansible/roles/platforms/defaults/main.yml +++ b/ansible/roles/platforms/defaults/main.yml @@ -14,5 +14,5 @@ platforms_defaults: platforms_with_drivers: - man: Cisco name: "Cisco NX-OS" - driver: nxos_ssh - network: nxos_ssh + driver: cisco_nxos + network: cisco_nxos diff --git a/containers/nautobot/nautobot_config.py b/containers/nautobot/nautobot_config.py index ed5633578..5904df8cc 100644 --- a/containers/nautobot/nautobot_config.py +++ b/containers/nautobot/nautobot_config.py @@ -183,6 +183,11 @@ def _read_cred(filename): "use_config_context": { "connection_options": True, }, + "connection_options": {s": { + "netutils_parser": { + "cisco_nxos": "cisco_nxos", + }, + }, "connection_options": { "napalm": { "extras": { @@ -192,11 +197,6 @@ def _read_cred(filename): }, }, }, - "network_driver_mappings": { - "napalm": { - "cisco_nxos": "nxos_ssh", - }, - }, }, "nautobot_golden_config": { "per_feature_bar_width": 0.15, From 317eaf4fe3fb05e2cc15b7ae1aba60cf2ecdba18 Mon Sep 17 00:00:00 2001 From: Kenny Hackworth Date: Thu, 14 May 2026 12:13:01 -0400 Subject: [PATCH 2/2] Reverting the nautobot_config.py too --- containers/nautobot/nautobot_config.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/containers/nautobot/nautobot_config.py b/containers/nautobot/nautobot_config.py index 5904df8cc..ed5633578 100644 --- a/containers/nautobot/nautobot_config.py +++ b/containers/nautobot/nautobot_config.py @@ -183,11 +183,6 @@ def _read_cred(filename): "use_config_context": { "connection_options": True, }, - "connection_options": {s": { - "netutils_parser": { - "cisco_nxos": "cisco_nxos", - }, - }, "connection_options": { "napalm": { "extras": { @@ -197,6 +192,11 @@ def _read_cred(filename): }, }, }, + "network_driver_mappings": { + "napalm": { + "cisco_nxos": "nxos_ssh", + }, + }, }, "nautobot_golden_config": { "per_feature_bar_width": 0.15,