Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Cisco IOSXE and Ericsson IPOS platforms to SSH autodetect #2898

Merged
merged 1 commit into from
Aug 11, 2022
Merged
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
12 changes: 12 additions & 0 deletions netmiko/ssh_autodetect.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@
"priority": 99,
"dispatch": "_autodetect_std",
},
"cisco_xe": {
"cmd": "show version",
"search_patterns": [r"Cisco IOS XE Software"],
"priority": 99,
"dispatch": "_autodetect_std",
},
"cisco_nxos": {
"cmd": "show version",
"search_patterns": [r"Cisco Nexus Operating System", r"NX-OS"],
Expand Down Expand Up @@ -180,6 +186,12 @@
"priority": 99,
"dispatch": "_autodetect_std",
},
"ericsson_ipos": {
"cmd": "show version",
"search_patterns": [r"Ericsson IPOS Version"],
"priority": 99,
"dispatch": "_autodetect_std",
},
"extreme_exos": {
"cmd": "show version",
"search_patterns": [r"ExtremeXOS"],
Expand Down