Category Archives: 300-435 Automating Cisco Enterprise Solutions (ENAUTO)

300-435 Automating Cisco Enterprise Solutions (ENAUTO) Question and Answers

What are two benefits of leveraging Ansible for automation of Cisco IOS XE Software? (Choose two.)

A. Ansible playbooks are packaged and installed on IOS XE devices for automatic execution when an IOS device reboots. B. All IOS XE operating systems include Ansible playbooks for basic system administration tasks. C. It is a device-independent method for automation and can be used with any type of device or operating system. D. Ansible playbooks can be… Read More »

Which two features are foundations of a software-defined network instead of a traditional network? (Choose two.)

A. control plane and data plane are tightly coupled B. build upon a robust software stack C. requires device by device-level configurations D. automated through expressed intent to a software controller E. requires significant physical hardware resources Answer: Option B, D. Explanation:  In traditional networks, control plane and data plane are coupled tightly. It also requires device by… Read More »

Which statement is true for Cisco IOS XE Software?

A. RESTCONF supports JSON and XML and NETCONF supports XML. B. RESTCONF supports XML and NETCONF supports JSON and XML. C. RESTCONF and NETCONF supports JSON and XML. D. RESTCONF supports XML and NETCONF supports JSON. Answer: Option A. Explanation:  Reference: https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/prog/configuration/169/b_169_programmability_cg/restconf_programmable_interface.html Show AnswerDiscussion The post Which statement is true for Cisco IOS XE Software? appeared first on… Read More »

The automation engineer must replace device configuration using RESTCONF. How is this configured using the Python library Requests?

A. delete() B. post() C. put() D. patch() Answer: Option C. Explanation:  Reference: https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/prog/configuration/166/b_166_programmability_cg/restconf_prog_int.html Show AnswerDiscussion The post The automation engineer must replace device configuration using RESTCONF. How is this configured using the Python library Requests? appeared first on Majanto.

Fill in the blank to complete the URL for the Cisco SD-WAN API that retrieves a list of users that are logged into a device.

A. interface? Answer: Option A. Explanation:  Reference: https://sdwan-docs.cisco.com/Product_Documentation/Command_Reference/Command_Reference/vManage_REST_APIs/Real-Time_Monitoring_APIs/Interface https://vmanage-ip-address/dataservice/device/interface?deviceId=deviceIdReference: https://sdwan-docs.cisco.com/Product_Documentation/Command_Reference/Command_Reference/vManage_REST_APIs/Real-Time_Monitoring_APIs/Interface Show AnswerDiscussion The post Fill in the blank to complete the URL for the Cisco SD-WAN API that retrieves a list of users that are logged into a device. appeared first on Majanto.

What does the command boot ipxe forever switch 1 perform when executed on a Cisco IOS XE device?

A. It continuously sends DHCP requests for iPXE until the device boots with an image. B. It continuously sends DNS requests for iPXE until the device restarts. C. It continuously sends DNS requests for iPXE until the device boots with an image. D. It continuously sends DHCP requests for iPXE until the device restarts. Answer: Option A. Explanation: … Read More »

Cisco SD-WAN deployment must be troubleshooted using vManage APIs. A call to vEdge Hardware Health API returns the data in the exhibit (only a portion is shown). If this JSON is converted to a Python dictionary and assigned to the variable “d”, how the status is accessed that is indicated on line 16?

Refer to the exhibit. Cisco SD-WAN deployment must be troubleshooted using vManage APIs. A call to vEdge Hardware Health API returns the data in the exhibit (only a portion is shown). If this JSON is converted to a Python dictionary and assigned to the variable “d”, how the status is accessed that is indicated on line 16? A.… Read More »

Which two API calls are used to trigger a device configuration sync in Cisco DNA Center? (Choose two.)

A. PUT /dna/intent/api/v1/network-device B. PUT /dna/intent/api/v1/network-device/sync-all C. PUT /dna/intent/api/v1/network-device/{networkDeviceId}/sync D. PUT /dna/intent/api/v1/network-device/sync E. POST /dna/intent/api/v1/network-device/{networkDeviceId}/sync Answer: Option C, E. Explanation:  Reference: https://github.com/CiscoDevNet/DNAC-JAVA-SDK/tree/master/DnacAppApi Show AnswerDiscussion The post Which two API calls are used to trigger a device configuration sync in Cisco DNA Center? (Choose two.) appeared first on Majanto.

An engineer creates a Python scripts using ncclient to display interface information. The code must be completed so that it can be tested. Which expression completes the highlighted section in the format call?

Refer to the exhibits. An engineer creates a Python scripts using ncclient to display interface information. The code must be completed so that it can be tested. Which expression completes the highlighted section in the format call? A. intf_info B. intf_config C. intf_get D. intf_config[0] Answer: Option A. Explanation:  Reference: The highlighted format cell for print is for… Read More »

Which two actions do Python virtual environments allow users to perform? (Choose two.)

A. Simplify the CI/CD pipeline when checking a project into a version control system, such as Git. B. Efficiently port code between different languages, such as JavaScript and Python. C. Run and simulate other operating systems within a development environment. D. Quickly create any Python environment for testing and debugging purposes. E. Quickly create an isolated Python environment… Read More »