| Current Path : /proc/3/root/opt/imh-python/lib/python3.9/site-packages/netmiko/dell/ |
| Current File : //proc/3/root/opt/imh-python/lib/python3.9/site-packages/netmiko/dell/dell_force10_ssh.py |
"""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
)