Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/user/lib_mapper/ansible.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
| ---------- | -- | ------ |
| a10.acos_axapi.a10 || a10 |
| arista.eos.eos || arista_eos |
| arubanetworks.aos_switch || aruba_aos |
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where is aruba_aos originating from? Its not one of the options from https://github.com/ktbyers/netmiko/blob/develop/PLATFORMS.md which I think is the root of the problem we're having with this one.

| arubanetworks.aoscx || aruba_aoscx |
| ciena.saos6.saos6 || ciena_saos |
| cisco.asa.asa || cisco_asa |
Expand Down
1 change: 1 addition & 0 deletions docs/user/lib_mapper/ansible_reverse.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
| ---------- | -- | ------ |
| a10 || a10.acos_axapi.a10 |
| arista_eos || arista.eos.eos |
| aruba_aos || arubanetworks.aos_switch |
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as previous comment:
where is aruba_aos originating from? Its not one of the options from https://github.com/ktbyers/netmiko/blob/develop/PLATFORMS.md which I think is the root of the problem we're having with this one.

| aruba_aoscx || arubanetworks.aoscx |
| bigip_f5 || f5networks.f5_bigip.bigip |
| ciena_saos || ciena.saos6.saos6 |
Expand Down
1 change: 1 addition & 0 deletions docs/user/lib_mapper/napalm.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| NAPALM | | NORMALIZED |
| ---------- | -- | ------ |
| arubaoss | → | aruba_os |
| aoscx | → | aruba_aoscx |
| asa | → | cisco_asa |
| cisco_wlc_ssh | → | cisco_wlc |
Expand Down
1 change: 1 addition & 0 deletions docs/user/lib_mapper/napalm_reverse.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
| NORMALIZED | | NAPALM |
| ---------- | -- | ------ |
| arista_eos | → | eos |
| aruba_os | → | arubaoss |
| aruba_aoscx | → | aoscx |
| bigip_f5 | → | f5 |
| cisco_asa | → | asa |
Expand Down
1 change: 1 addition & 0 deletions docs/user/lib_mapper/netmiko.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
| apresia_aeos | → | apresia_aeos |
| arista_eos | → | arista_eos |
| aruba_os | → | aruba_os |
| aruba_aoscx| → | aruba_aoscx |
| aruba_osswitch | → | aruba_osswitch |
| aruba_procurve | → | aruba_procurve |
| avaya_ers | → | avaya_ers |
Expand Down
1 change: 1 addition & 0 deletions docs/user/lib_mapper/netmiko_reverse.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
| apresia_aeos | → | apresia_aeos |
| arista_eos | → | arista_eos |
| aruba_os | → | aruba_os |
| aruba_aoscx| → | aruba_aoscx |
| aruba_osswitch | → | aruba_osswitch |
| aruba_procurve | → | aruba_procurve |
| avaya_ers | → | avaya_ers |
Expand Down
5 changes: 5 additions & 0 deletions netutils/lib_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@
"apresia_aeos": "apresia_aeos",
"arista_eos": "arista_eos",
"aruba_os": "aruba_os",
"aruba_aoscx":"aruba_aoscx",
"aruba_osswitch": "aruba_osswitch",
"aruba_procurve": "aruba_procurve",
"avaya_ers": "avaya_ers",
Expand Down Expand Up @@ -288,6 +289,7 @@
# NAPALM | Normalized
NAPALM_LIB_MAPPER: t.Dict[str, str] = {
"aoscx": "aruba_aoscx",
"arubaoss":"aruba_os",
"asa": "cisco_asa",
"cisco_wlc_ssh": "cisco_wlc",
"eos": "arista_eos",
Expand Down Expand Up @@ -331,6 +333,7 @@
ANSIBLE_LIB_MAPPER: t.Dict[str, str] = {
"a10.acos_axapi.a10": "a10",
"arista.eos.eos": "arista_eos",
"arubanetworks.aos_switch":"aruba_os",
"arubanetworks.aoscx": "aruba_aoscx",
"ciena.saos6.saos6": "ciena_saos",
"cisco.asa.asa": "cisco_asa",
Expand Down Expand Up @@ -467,6 +470,7 @@
NAPALM_LIB_MAPPER_REVERSE: t.Dict[str, str] = {
"arista_eos": "eos",
"aruba_aoscx": "aoscx",
"aruba_os":"arubaoss",
"bigip_f5": "f5",
"cisco_asa": "asa",
"cisco_ios": "ios",
Expand Down Expand Up @@ -500,6 +504,7 @@
ANSIBLE_LIB_MAPPER_REVERSE: t.Dict[str, str] = {
"a10": "a10.acos_axapi.a10",
"arista_eos": "arista.eos.eos",
"aruba_os":"arubanetworks.aos_switch",
"aruba_aoscx": "arubanetworks.aoscx",
"bigip_f5": "f5networks.f5_bigip.bigip",
"ciena_saos": "ciena.saos6.saos6",
Expand Down