Skip to content

Commit

Permalink
add Allied Telesis in SNMP and SSH autodetect
Browse files Browse the repository at this point in the history
  • Loading branch information
rnuyttens committed Oct 13, 2023
1 parent 7400cd8 commit af12fc7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions netmiko/snmp_autodetect.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@
"expr": re.compile(r".*Arista Networks EOS.*", re.IGNORECASE),
"priority": 99,
},
"allied_telesis_awplus": {
"oid": ".1.3.6.1.2.1.1.1.0",
"expr": re.compile(r".*AlliedWare Plus.*", re.IGNORECASE),
"priority": 99,
},
"paloalto_panos": {
"oid": ".1.3.6.1.2.1.1.1.0",
"expr": re.compile(r".*Palo Alto Networks.*", re.IGNORECASE),
Expand Down
6 changes: 6 additions & 0 deletions netmiko/ssh_autodetect.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@
"priority": 99,
"dispatch": "_autodetect_std",
},
"allied_telesis_awplus": {
"cmd": "show version",
"search_patterns": ["AlliedWare Plus"],
"priority": 99,
"dispatch": "_autodetect_std",
},
"apresia_aeos": {
"cmd": "show system",
"search_patterns": ["Apresia"],
Expand Down

0 comments on commit af12fc7

Please sign in to comment.