/opt/imh-python/lib/python3.9/site-packages/netmiko/cisco
NameSizeModeActions
__pycache__/-0755rm
cisco_asa_ssh.py56180644editdlrm
cisco_ftd_ssh.py8230644editdlrm
cisco_ios.py78310644editdlrm
cisco_nxos_ssh.py63190644editdlrm
cisco_s300.py9590644editdlrm
cisco_tp_tcce.py28400644editdlrm
cisco_wlc_ssh.py69620644editdlrm
cisco_xr.py81630644editdlrm
__init__.py10550644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/netmiko/cisco/cisco_ftd_ssh.py (823B)
"""Subclass specific to Cisco FTD.""" from netmiko.cisco_base_connection import CiscoSSHConnection class CiscoFtdSSH(CiscoSSHConnection): """Subclass specific to Cisco FTD.""" def session_preparation(self): """Prepare the session after the connection has been established.""" self._test_channel_read() self.set_base_prompt() def send_config_set(self, *args, **kwargs): """Canot change config on FTD via ssh""" raise NotImplementedError def enable(self, *args, **kwargs): """No enable mode on firepower ssh""" return "" def config_mode(self, *args, **kwargs): """No config mode on firepower ssh""" return "" def check_config_mode(self, *args, **kwargs): """No config mode on firepower ssh""" return False