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/running_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
| 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 |
1 change: 1 addition & 0 deletions netutils/lib_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@
RUNNING_CONFIG_MAPPER: t.Dict[str, str] = {
"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",
"arista_eos": "show running-config",
Expand Down