Module netmiko.digi

Expand source code
from netmiko.digi.digi_transport import DigiTransportSSH

__all__ = ["DigiTransportSSH"]

Sub-modules

netmiko.digi.digi_transport

Digi TransPort Routers

Classes

class DigiTransportSSH (*args: Any, **kwargs: Any)

Class for platforms that have no enable mode.

Netmiko translates the meaning of "enable" mode to be a proxy for "can go into config mode". In other words, that you ultimately have privileges to execute configuration changes.

The expectation on platforms that have no method for elevating privileges is that the standard default privileges allow configuration changes.

Consequently check_enable_mode returns True by default for platforms that don't explicitly support enable mode.

Expand source code
class DigiTransportSSH(DigiTransportBase):
    pass

Ancestors

Inherited members