/opt/imh-python/lib/python3.9/site-packages/netmiko/dell
NameSizeModeActions
__pycache__/-0755rm
dell_dnos6.py10090644editdlrm
dell_force10_ssh.py5010644editdlrm
dell_isilon_ssh.py30060644editdlrm
dell_os10_ssh.py42440644editdlrm
dell_powerconnect.py36690644editdlrm
__init__.py6200644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/netmiko/dell/dell_force10_ssh.py (501B)
"""Dell Force10 Driver - supports DNOS9.""" from netmiko.cisco_base_connection import CiscoSSHConnection class DellForce10SSH(CiscoSSHConnection): """Dell Force10 Driver - supports DNOS9.""" def save_config( self, cmd="copy running-configuration startup-configuration", confirm=False, confirm_response="", ): """Saves Config""" return super().save_config( cmd=cmd, confirm=confirm, confirm_response=confirm_response )