Skip to content

Commit 3693cf4

Browse files
authored
Support opengear aded (#3769)
1 parent ae10899 commit 3693cf4

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

netmiko/opengear/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from netmiko.opengear.opengear_linux import OpengearLinuxSSH
2+
3+
__all__ = ["OpengearLinuxSSH"]

netmiko/opengear/opengear_linux.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from netmiko.linux.linux_ssh import LinuxSSH
2+
3+
4+
class OpengearLinuxSSH(LinuxSSH):
5+
pass

netmiko/ssh_dispatcher.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@
136136
from netmiko.netgear import NetgearProSafeSSH
137137
from netmiko.nec import NecIxSSH, NecIxTelnet
138138
from netmiko.oneaccess import OneaccessOneOSTelnet, OneaccessOneOSSSH
139+
from netmiko.opengear import OpengearLinuxSSH
139140
from netmiko.optilink import OptilinkEOLT9702Telnet
140141
from netmiko.optilink import OptilinkEOLT11444Telnet
141142
from netmiko.optilink import OptilinkGOLT924Telnet
@@ -313,6 +314,7 @@
313314
"nokia_sros": NokiaSrosSSH,
314315
"nokia_srl": NokiaSrlSSH,
315316
"oneaccess_oneos": OneaccessOneOSSSH,
317+
"opengear_linux": OpengearLinuxSSH,
316318
"ovs_linux": OvsLinuxSSH,
317319
"paloalto_panos": PaloAltoPanosSSH,
318320
"pluribus": PluribusSSH,

0 commit comments

Comments
 (0)