Implementing Automation for Cisco Enterprise Solutions (ENAUTO) — Question 32

Which two Netmiko methods are used to configure a device? (Choose two.)

Answer options

Correct answer: C, E

Explanation

The correct methods for configuring a device using Netmiko are send_config_set() and send_config_from_file(). The send_config_set() method allows you to send a list of commands to be executed sequentially, while send_config_from_file() enables you to send commands from a file. The other options do not pertain specifically to configuration tasks.