A network engineer needs to automate the backup of running configurations from multiple Cisco IOS XE devices to a central TFTP server. Which tool is best suited for this task in a Python-based automation framework?
Trap 1: RESTCONF
RESTCONF is a protocol for model-driven APIs, not for CLI-based backup.
Trap 2: Ansible
Ansible is a configuration management tool, not a Python library.
Trap 3: Netmiko
Netmiko is a high-level library built on Paramiko, but Paramiko is the underlying SSH implementation.
- A
RESTCONF
Why wrong: RESTCONF is a protocol for model-driven APIs, not for CLI-based backup.
- B
Ansible
Why wrong: Ansible is a configuration management tool, not a Python library.
- C
Paramiko
Paramiko provides SSH connectivity to network devices.
- D
Netmiko
Why wrong: Netmiko is a high-level library built on Paramiko, but Paramiko is the underlying SSH implementation.