Skip to content

Commit

Permalink
Merge pull request #2898 from bleuzkernel/sshautodetect
Browse files Browse the repository at this point in the history
Added Cisco IOSXE and Ericsson IPOS platforms to SSH autodetect
  • Loading branch information
ktbyers authored Aug 11, 2022
2 parents e517229 + b0d5fb3 commit cfb7f07
Showing 1 changed file with 12 additions and 0 deletions.
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

0 comments on commit cfb7f07

Please sign in to comment.