D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
imh-python
/
lib
/
python3.9
/
site-packages
/
netmiko
/
dell
/
Filename :
dell_force10_ssh.py
back
Copy
"""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 )