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
6 changes: 6 additions & 0 deletions docs/admin/release_notes/version_1.15.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ This document describes all new features and changes in the release. The format
- Add parser support for Rad ETX.
- Update the library to the NTC 2025 development standards.

## [v1.15.1 (2025-10-20)](https://github.com/networktocode/netutils/releases/tag/v1.15.1)

### Added

- [#704](https://github.com/networktocode/netutils/issues/704) - Added show running config mapper for 22 additional operating systems.

## [v1.15.0 (2025-09-05)](https://github.com/networktocode/netutils/releases/tag/v1.15.0)

### Added
Expand Down
22 changes: 21 additions & 1 deletion docs/user/lib_mapper/running_config.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,28 @@
| NORMALIZED | | RUNNING_CONFIG_COMMAND |
| ---------- | -- | ------ |
| arista_eos | → | show running-config |
| aruba_os | → | show running-configuration |
| aruba_osswitch | → | show running-config |
| aruba_procurve | → | show running-config |
| checkpoint_gaia | → | clish -c "show configuration" |
| cisco_ios | → | show running-config |
| cisco_nxos | → | show running-config |
| cisco_wlc | → | show run-config commands |
| cisco_xr | → | show running-config |
| juniper_junos | → | show configuration | display set |
| dell_os10 | → | show running-config |
| dell_os9 | → | show running-config |
| extreme_exos | → | show configuration |
| extreme_slx | → | show running-config |
| extreme_vsp | → | show running-config |
| fortinet | → | show full-configuration |
| hp_procurve | → | show running-config |
| juniper_junos | → | show configuration | display set |
| mikrotik_routeros | → | /export |
| nokia_srl | → | info |
| nokia_sros | → | admin display-config |
| rad_etx | → | info |
| ruckus_fastiron | → | show running-config |
| ubiquiti_edge | → | show configuration |
| ubiquiti_edgerouter | → | show configuration |
| ubiquiti_edgeswitch | → | show configuration |
| vyos | → | show configuration |
24 changes: 22 additions & 2 deletions netutils/lib_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,12 +308,32 @@

# Running config command
RUNNING_CONFIG_MAPPER: t.Dict[str, str] = {
"arista_eos": "show running-config",
"aruba_os": "show running-configuration",
"aruba_osswitch": "show running-config",
"aruba_procurve": "show running-config",
"checkpoint_gaia": 'clish -c "show configuration"',
"cisco_ios": "show running-config",
"cisco_nxos": "show running-config",
"cisco_wlc": "show run-config commands",
"cisco_xr": "show running-config",
"dell_os10": "show running-config",
"dell_os9": "show running-config",
"extreme_exos": "show configuration",
"extreme_slx": "show running-config",
"extreme_vsp": "show running-config",
"fortinet": "show full-configuration",
"hp_procurve": "show running-config",
"juniper_junos": "show configuration | display set",
"arista_eos": "show running-config",
"checkpoint_gaia": 'clish -c "show configuration"',
"mikrotik_routeros": "/export",
"nokia_srl": "info",
"nokia_sros": "admin display-config",
"rad_etx": "info",
"ruckus_fastiron": "show running-config",
"ubiquiti_edge": "show configuration",
"ubiquiti_edgerouter": "show configuration",
"ubiquiti_edgeswitch": "show configuration",
"vyos": "show configuration",
}

# PYTNC | Normalized
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "netutils"
version = "1.15.0"
version = "1.15.1"
description = "Common helper functions useful in network automation."
authors = ["Network to Code, LLC <opensource@networktocode.com>"]
license = "Apache-2.0"
Expand Down