/
opt
/
imh-python
/
lib
/
python3.9
/
site-packages
/
netmiko
/
eltex
/
/opt/imh-python/lib/python3.9/site-packages/netmiko/eltex
mkdir
upload
Name
Size
Mode
Actions
__pycache__/
-
0755
rm
eltex_esr_ssh.py
3314
0644
edit
dl
rm
eltex_ssh.py
604
0644
edit
dl
rm
__init__.py
136
0644
edit
dl
rm
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
Save
cmd:
run