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