/opt/imh-python/lib/python3.9/site-packages/netmiko/eltex
NameSizeModeActions
__pycache__/-0755rm
eltex_esr_ssh.py33140644editdlrm
eltex_ssh.py6040644editdlrm
__init__.py1360644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/netmiko/eltex/eltex_ssh.py (604B)
import time from netmiko.cisco_base_connection import CiscoSSHConnection class EltexSSH(CiscoSSHConnection): def session_preparation(self): """Prepare the session after the connection has been established.""" self.ansi_escape_codes = True self._test_channel_read() self.set_base_prompt() self.disable_paging(command="terminal datadump") # Clear the read buffer time.sleep(0.3 * self.global_delay_factor) self.clear_buffer() def save_config(self, *args, **kwargs): """Not Implemented""" raise NotImplementedError