Skip to content

Commit dffca83

Browse files
committed
Moxa Nos Cleanup
1 parent ee3da59 commit dffca83

File tree

5 files changed

+16
-17
lines changed

5 files changed

+16
-17
lines changed

PLATFORMS.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -75,43 +75,41 @@
7575

7676
###### Experimental
7777

78-
- 6WIND TurboRouter
7978
- A10
8079
- Accedian
8180
- Alaxala AX2600S and AX3600S
8281
- Allied Telesis AlliedWare Plus
8382
- Arris CER
84-
- Aruba AOS-CX
8583
- Aruba OS (Wireless Controllers/WAPs)
84+
- Aruba AOS-CX
8685
- AsterFusion AsterNOS SONiC
8786
- Bintec BOSS (Bintec/Funkwerk)
8887
- Brocade Fabric OS
8988
- C-DOT CROS
90-
- Check Point GAiA
9189
- Ciena SAOS
9290
- Ciena SAOS10
9391
- Ciena Waveserver
92+
- Citrix Netscaler
9493
- Cisco APIC (Linux)
9594
- Cisco Telepresence
9695
- Cisco Viptela
97-
- Citrix Netscaler
9896
- Corelight Linux
9997
- Coriant
10098
- Cumulus VX Linux
101-
- Dell EMC Isilon
10299
- Dell OS6
100+
- Dell EMC Isilon
103101
- Digi TransPort Routers
104102
- Edgecore SONiC
105103
- Eltex
106-
- Endace
107104
- Enterasys
105+
- Endace
108106
- Extreme EXOS
109-
- Extreme SLX (Brocade)
110107
- Extreme Wing
111-
- F5 Linux
108+
- Extreme SLX (Brocade)
112109
- F5 TMSH
113-
- Fiberstore FS-OS (V2)
110+
- F5 Linux
114111
- Fiberstore NetworkOS
112+
- Fiberstore FS-OS (V2)
115113
- Fortinet
116114
- Garderos GRS
117115
- Genexis Saturn SOLT33 (telnet only)
@@ -134,6 +132,7 @@
134132
- Vertiv MPH Power Distribution Units
135133
- Watchguard Firebox
136134
- Zyxel NOS
135+
- 6WIND TurboRouter
137136

138137
###### Supported SSH device_type values
139138

@@ -256,7 +255,7 @@
256255
- mellanox_mlnxos
257256
- mikrotik_routeros
258257
- mikrotik_switchos
259-
- moxa
258+
- moxa_nos
260259
- mrv_lx
261260
- mrv_optiswitch
262261
- nec_ix

netmiko/moxa/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from netmiko.moxa.moxa import MoxaSSH
1+
from netmiko.moxa.moxa_nos import MoxaNosSSH
22

3-
__all__ = ["MoxaSSH"]
3+
__all__ = ["MoxaNosSSH"]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
from netmiko.cisco_base_connection import CiscoSSHConnection
22

33

4-
class MoxaBase(CiscoSSHConnection):
4+
class MoxaNosBase(CiscoSSHConnection):
55
"""MOXA base driver"""
66

77
pass
88

99

10-
class MoxaSSH(MoxaBase):
10+
class MoxaNosSSH(MoxaNosBase):
1111
"""MOXA SSH driver"""
1212

1313
pass

netmiko/ssh_autodetect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@
349349
"priority": 99,
350350
"dispatch": "_autodetect_std",
351351
},
352-
"moxa": {
352+
"moxa_nos": {
353353
"cmd": "",
354354
"dispatch": "_autodetect_remote_version",
355355
"search_patterns": [r"[Mm]oxa"],

netmiko/ssh_dispatcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
from netmiko.mikrotik import MikrotikRouterOsSSH, MikrotikRouterOsFileTransfer
122122
from netmiko.mikrotik import MikrotikSwitchOsSSH
123123
from netmiko.mellanox import MellanoxMlnxosSSH
124-
from netmiko.moxa import MoxaSSH
124+
from netmiko.moxa import MoxaNosSSH
125125
from netmiko.mrv import MrvLxSSH
126126
from netmiko.mrv import MrvOptiswitchSSH
127127
from netmiko.netapp import NetAppcDotSSH
@@ -300,7 +300,7 @@
300300
"mikrotik_switchos": MikrotikSwitchOsSSH,
301301
"mellanox": MellanoxMlnxosSSH,
302302
"mellanox_mlnxos": MellanoxMlnxosSSH,
303-
"moxa": MoxaSSH,
303+
"moxa_nos": MoxaNosSSH,
304304
"mrv_lx": MrvLxSSH,
305305
"mrv_optiswitch": MrvOptiswitchSSH,
306306
"nec_ix": NecIxSSH,

0 commit comments

Comments
 (0)