/
opt
/
imh-python
/
lib
/
python3.9
/
site-packages
/
netmiko
/
checkpoint
/
/opt/imh-python/lib/python3.9/site-packages/netmiko/checkpoint
mkdir
upload
Name
Size
Mode
Actions
__pycache__/
-
0755
rm
checkpoint_gaia_ssh.py
965
0644
edit
dl
rm
__init__.py
102
0644
edit
dl
rm
Edit:
/opt/imh-python/lib/python3.9/site-packages/netmiko/checkpoint/checkpoint_gaia_ssh.py
(965B)
import time from netmiko.base_connection import BaseConnection class CheckPointGaiaSSH(BaseConnection): """ Implements methods for communicating with Check Point Gaia firewalls. """ def session_preparation(self): """ Prepare the session after the connection has been established. Set the base prompt for interaction ('>'). """ self._test_channel_read() self.set_base_prompt() self.disable_paging(command="set clienv rows 0") # Clear the read buffer time.sleep(0.3 * self.global_delay_factor) self.clear_buffer() def config_mode(self, config_command=""): """No config mode for Check Point devices.""" return "" def exit_config_mode(self, exit_config=""): """No config mode for Check Point devices.""" return "" def save_config(self, *args, **kwargs): """Not Implemented""" raise NotImplementedError
Save
cmd:
run