Skip to content

Commit

Permalink
Merge branch 'develop' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers authored Oct 17, 2023
2 parents 6370d79 + d0287a3 commit 10a9590
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion netmiko/base_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def __init__(
(default: False)
:param encoding: Encoding to be used when writing bytes to the output channel.
(default: ascii)
(default: "utf-8")
:param sock: An open socket or socket-like object (such as a `.Channel`) to use for
communication to the target host (default: None).
Expand Down
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 10a9590

Please sign in to comment.