Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"cookiecutter": {
"codeowner_github_usernames": "@itdependsnetworks @jeffkala @qduk",
"codeowner_github_usernames": "@itdependsnetworks @jeffkala",
"full_name": "Network to Code, LLC",
"email": "info@networktocode.com",
"github_org": "networktocode",
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ fabric.properties
# Rando
creds.env
development/*.txt
!development/towncrier_header.txt

# Invoke overrides
invoke.yml
Expand Down
1 change: 1 addition & 0 deletions changes/596.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added a library mapping for `ncclient` which is used for NETCONF communication.
1 change: 1 addition & 0 deletions changes/775.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed platform mappings to reconcile Netmiko driver support.
1 change: 1 addition & 0 deletions changes/795.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed the incorrect running configuration command for `aruba_os`.
1 change: 1 addition & 0 deletions changes/833.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed typo in Ansible mappings for `dell_os10`.
9 changes: 9 additions & 0 deletions development/towncrier_header.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# v{version} Release Notes

This document describes all new features and changes in the release. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Release Overview

- Major features or milestones

<!-- towncrier release notes start -->
12 changes: 12 additions & 0 deletions development_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,18 @@
"_dict": lib_mapper.NAPALM_LIB_MAPPER_REVERSE,
"_file": "docs/user/lib_mapper/napalm_reverse.md",
},
"ncclient": {
"header_src": "NCCLIENT",
"header_dst": "NORMALIZED",
"_dict": lib_mapper.NCCLIENT_LIB_MAPPER,
"_file": "docs/user/lib_mapper/ncclient.md",
},
"ncclient_reverse": {
"header_src": "NORMALIZED",
"header_dst": "NCCLIENT",
"_dict": lib_mapper.NCCLIENT_LIB_MAPPER_REVERSE,
"_file": "docs/user/lib_mapper/ncclient_reverse.md",
},
"netmiko": {
"header_src": "NETMIKO",
"header_dst": "NORMALIZED",
Expand Down
4 changes: 3 additions & 1 deletion docs/user/lib_mapper/ansible.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
| ---------- | -- | ------ |
| 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 |
| cisco.catalystcenter | → | cisco_dnac |
| cisco.ios.ios | → | cisco_ios |
| cisco.iosxr.iosxr | → | cisco_xr |
| cisco.meraki.meraki | → | cisco_meraki |
Expand All @@ -23,7 +25,7 @@
| community.network.sros | → | nokia_sros |
| community.network.voss | → | extreme_vsp |
| dellemc.enterprise_sonic.sonic | → | sonic |
| dellemc.os10.0s10 | → | dell_os10 |
| dellemc.os10.os10 | → | dell_os10 |
| dellemc.os6.os6 | → | dell_os6 |
| dellemc.os9.os9 | → | dell_os9 |
| f5networks.f5_bigip.bigip | → | bigip_f5 |
Expand Down
4 changes: 3 additions & 1 deletion docs/user/lib_mapper/ansible_reverse.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@
| a10 | → | a10.acos_axapi.a10 |
| arista_eos | → | arista.eos.eos |
| aruba_aoscx | → | arubanetworks.aoscx |
| aruba_os | → | arubanetworks.aos_switch |
| bigip_f5 | → | f5networks.f5_bigip.bigip |
| ciena_saos | → | ciena.saos6.saos6 |
| cisco_asa | → | cisco.asa.asa |
| cisco_dnac | → | cisco.catalystcenter |
| cisco_ios | → | cisco.ios.ios |
| cisco_meraki | → | cisco.meraki.meraki |
| cisco_nxos | → | cisco.nxos.nxos |
| cisco_xe | → | cisco.ios.ios |
| cisco_xr | → | cisco.iosxr.iosxr |
| dell_os10 | → | dellemc.os10.0s10 |
| dell_os10 | → | dellemc.os10.os10 |
| dell_os6 | → | dellemc.os6.os6 |
| dell_os9 | → | dellemc.os9.os9 |
| ericsson_ipos | → | community.network.eric_eccli |
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,6 +1,7 @@
| NAPALM | | NORMALIZED |
| ---------- | -- | ------ |
| aoscx | → | aruba_aoscx |
| arubaoss | → | aruba_os |
| asa | → | cisco_asa |
| cisco_wlc_ssh | → | cisco_wlc |
| eos | → | arista_eos |
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
Expand Up @@ -2,6 +2,7 @@
| ---------- | -- | ------ |
| arista_eos | → | eos |
| aruba_aoscx | → | aoscx |
| aruba_os | → | arubaoss |
| bigip_f5 | → | f5 |
| cisco_asa | → | asa |
| cisco_ios | → | ios |
Expand Down
11 changes: 11 additions & 0 deletions docs/user/lib_mapper/ncclient.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
| NCCLIENT | | NORMALIZED |
Comment thread
jeffkala marked this conversation as resolved.
| ---------- | -- | ------ |
| alu | → | alcatel_sros |
| ciena | → | ciena_saos |
| h3c | → | h3c_comware |
| hpcomware | → | hp_comware |
| huawei | → | huawei |
| huaweiyang | → | huawei_vrp |
| iosxe | → | cisco_xe |
| iosxr | → | cisco_xr |
| junos | → | juniper_junos |
15 changes: 15 additions & 0 deletions docs/user/lib_mapper/ncclient_reverse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
| NORMALIZED | | NCCLIENT |
| ---------- | -- | ------ |
| alcatel_sros | → | alu |
| ciena_saos | → | ciena |
| cisco_ios | → | iosxe |
| cisco_nxos | → | nexus |
| cisco_xe | → | iosxe |
| cisco_xr | → | iosxr |
| h3c_comware | → | h3c |
| hp_comware | → | hpcomware |
| huawei | → | huawei |
| huawei_vrp | → | huaweiyang |
| huawei_vrpv8 | → | huaweiyang |
| juniper_junos | → | junos |
| nokia_sros | → | alu |
40 changes: 39 additions & 1 deletion docs/user/lib_mapper/netmiko.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,26 @@
| adtran_os | → | adtran_os |
| adva_fsp150f2 | → | adva_fsp150f2 |
| adva_fsp150f3 | → | adva_fsp150f3 |
| alaxala_ax26s | → | alaxala_ax26s |
| alaxala_ax36s | → | alaxala_ax36s |
| alcatel_aos | → | alcatel_aos |
| alcatel_sros | → | alcatel_sros |
| allied_telesis_awplus | → | allied_telesis_awplus |
| apresia_aeos | → | apresia_aeos |
| arista_eos | → | arista_eos |
| arris_cer | → | arris_cer |
| aruba_aoscx | → | aruba_aoscx |
| aruba_os | → | aruba_os |
| aruba_osswitch | → | aruba_osswitch |
| aruba_procurve | → | aruba_procurve |
| asterfusion_asternos | → | asterfusion_asternos |
| audiocode_66 | → | audiocode_66 |
| audiocode_72 | → | audiocode_72 |
| audiocode_shell | → | audiocode_shell |
| avaya_ers | → | avaya_ers |
| avaya_vsp | → | avaya_vsp |
| bigip_f5 | → | bigip_f5 |
| bintec_boss | → | bintec_boss |
| broadcom_icos | → | broadcom_icos |
| brocade_fastiron | → | brocade_fastiron |
| brocade_fos | → | brocade_fos |
Expand All @@ -25,69 +33,94 @@
| brocade_vdx | → | brocade_vdx |
| brocade_vyos | → | brocade_vyos |
| calix_b6 | → | calix_b6 |
| casa_cmts | → | casa_cmts |
| cdot_cros | → | cdot_cros |
| centec_os | → | centec_os |
| checkpoint_gaia | → | checkpoint_gaia |
| ciena_saos | → | ciena_saos |
| ciena_saos10 | → | ciena_saos10 |
| ciena_waveserver | → | ciena_waveserver |
| cisco_apic | → | cisco_apic |
| cisco_asa | → | cisco_asa |
| cisco_ftd | → | cisco_ftd |
| cisco_ios | → | cisco_ios |
| cisco_nxos | → | cisco_nxos |
| cisco_s200 | → | cisco_s200 |
| cisco_s300 | → | cisco_s300 |
| cisco_tp | → | cisco_tp |
| cisco_wlc | → | cisco_wlc |
| cisco_xe | → | cisco_xe |
| cisco_xr | → | cisco_xr |
| cloudgenix_ion | → | cloudgenix_ion |
| corelight_linux | → | corelight_linux |
| coriant | → | coriant |
| cumulus_linux | → | cumulus_linux |
| dell_dnos9 | → | dell_dnos9 |
| dell_force10 | → | dell_force10 |
| dell_isilon | → | dell_isilon |
| dell_os10 | → | dell_os10 |
| dell_os6 | → | dell_os6 |
| dell_os9 | → | dell_os9 |
| dell_powerconnect | → | dell_powerconnect |
| dell_sonic | → | dell_sonic |
| digi_transport | → | digi_transport |
| dlink_ds | → | dlink_ds |
| edgecore_sonic | → | edgecore_sonic |
| ekinops_ek360 | → | ekinops_ek360 |
| eltex | → | eltex |
| eltex_esr | → | eltex_esr |
| endace | → | endace |
| enterasys | → | enterasys |
| ericsson_ipos | → | ericsson_ipos |
| ericsson_mltn63 | → | ericsson_mltn63 |
| ericsson_mltn66 | → | ericsson_mltn66 |
| extreme | → | extreme |
| extreme_ers | → | extreme_ers |
| extreme_exos | → | extreme_exos |
| extreme_netiron | → | extreme_netiron |
| extreme_nos | → | extreme_nos |
| extreme_slx | → | extreme_slx |
| extreme_tierra | → | extreme_tierra |
| extreme_vdx | → | extreme_vdx |
| extreme_vsp | → | extreme_vsp |
| extreme_wing | → | extreme_wing |
| f5_linux | → | bigip_f5 |
| f5_ltm | → | bigip_f5 |
| f5_tmsh | → | bigip_f5 |
| fiberstore_fsos | → | fiberstore_fsos |
| fiberstore_fsosv2 | → | fiberstore_fsosv2 |
| flexvnf | → | flexvnf |
| fortinet | → | fortinet |
| generic | → | generic |
| generic_termserver | → | generic_termserver |
| h3c_comware | → | h3c_comware |
| hillstone_stoneos | → | hillstone_stoneos |
| hp_comware | → | hp_comware |
| hp_procurve | → | hp_procurve |
| huawei | → | huawei |
| huawei_olt | → | huawei_olt |
| huawei_smartax | → | huawei_smartax |
| huawei_smartaxmmi | → | huawei_smartaxmmi |
| huawei_vrp | → | huawei_vrp |
| huawei_vrpv8 | → | huawei_vrpv8 |
| infinera_packet | → | infinera_packet |
| ipinfusion_ocnos | → | ipinfusion_ocnos |
| juniper | → | juniper |
| juniper_junos | → | juniper_junos |
| juniper_screenos | → | juniper_screenos |
| keymile | → | keymile |
| keymile_nos | → | keymile_nos |
| lancom_lcossx4 | → | lancom_lcossx4 |
| linux | → | linux |
| maipu | → | maipu |
| mellanox | → | mellanox |
| mellanox_mlnxos | → | mellanox_mlnxos |
| mikrotik_routeros | → | mikrotik_routeros |
| mikrotik_switchos | → | mikrotik_switchos |
| moxa_nos | → | moxa_nos |
| mrv_lx | → | mrv_lx |
| mrv_optiswitch | → | mrv_optiswitch |
| nec_ix | → | nec_ix |
| netapp_cdot | → | netapp_cdot |
| netgear_prosafe | → | netgear_prosafe |
| netscaler | → | netscaler |
Expand All @@ -102,15 +135,20 @@
| raisecom_roap | → | raisecom_roap |
| ruckus_fastiron | → | ruckus_fastiron |
| ruijie_os | → | ruijie_os |
| silverpeak_vxoa | → | silverpeak_vxoa |
| sixwind_os | → | sixwind_os |
| sophos_sfos | → | sophos_sfos |
| telcosystems_binos | → | telcosystems_binos |
| teldat_cit | → | teldat_cit |
| tplink_jetstream | → | tplink_jetstream |
| ubiquiti_edge | → | ubiquiti_edge |
| ubiquiti_edgerouter | → | ubiquiti_edgerouter |
| ubiquiti_edgeswitch | → | ubiquiti_edgeswitch |
| ubiquiti_unifiswitch | → | ubiquiti_unifiswitch |
| vertiv_mph | → | vertiv_mph |
| vyatta_vyos | → | vyatta_vyos |
| vyos | → | vyos |
| watchguard_fireware | → | watchguard_fireware |
| yamaha | → | yamaha |
| zte_zxros | → | zte_zxros |
| zte_zxros | → | zte_zxros |
| zyxel_os | → | zyxel_os |
Loading
Loading