Skip to content
Snippets Groups Projects
Commit cb9cc2a6 authored by Chris Jones's avatar Chris Jones Committed by Kirk Byers
Browse files

Add QFabric and Brocade-Extreme NetIron and SLX Support in SSH Autodetect

parent 9501e6ed
Branches
Tags
No related merge requests found
......@@ -140,6 +140,7 @@ SSH_MAPPER_BASE = {
r"JUNOS Software Release",
r"JUNOS .+ Software",
r"JUNOS OS Kernel",
r"JUNOS Base Version",
],
"priority": 99,
"dispatch": "_autodetect_std",
......@@ -150,6 +151,18 @@ SSH_MAPPER_BASE = {
"priority": 99,
"dispatch": "_autodetect_std",
},
"brocade_netiron": {
"cmd": "show version",
"search_patterns": [r"NetIron"],
"priority": 99,
"dispatch": "_autodetect_std",
},
"extreme_slx": {
"cmd": "show version",
"search_patterns": [r"SLX-OS Operating System Software"],
"priority": 99,
"dispatch": "_autodetect_std",
},
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment