Cisco (300-435-ENAUTO) Exam Questions And Answers page 4
Refer to the exhibit. Which NETCONF statement type is represented by +--rw address* [ip]?
leaf-list
container
submodule
Automate APIs and Protocols
Network Device Programmability
Refer to the exhibit. Drag and drop the code from the bottom onto the box where the code is missing to complete the ncclient request that captures the operational data of the interfaces of a Cisco IOS XE device. Options may be used once, more than once, or not at all.
Network Device Programmability
Cisco SD-WAN Programmability
Which Python snippet receives a Meraki webhook request?
Automate APIs and Protocols
Cisco Meraki Programmability
Which curl command is used to update the SNMP community of network ID 1234567 to read-only?
Automate APIs and Protocols
Network Device Programmability
Which HTTP request is valid to create a new wireless network called Demo Wireless Network in the organization QASD-EROA-MKAW ?
Automate APIs and Protocols
Network Device Programmability
Which two API calls are used to trigger a device configuration sync in Cisco DNA Center? (Choose two.)
PUT /dna/intent/api/v1/network-device
PUT /dna/intent/api/v1/network-device/sync-all
PUT /dna/intent/api/v1/network-device/{networkDeviceId}/sync
PUT /dna/intent/api/v1/network-device/sync
POST /dna/intent/api/v1/network-device/{networkDeviceId}/sync
Automate APIs and Protocols
Network Device Programmability
Refer to the exhibit. Which NETCONF protocol operation is used to interact with the YANG model?
Network Programmability Foundation
Automate APIs and Protocols
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?
intf_info
intf_config
intf_get
intf_config[0]
Automate APIs and Protocols
Network Device Programmability
Refer to the exhibit. A Python script is used to configure a Cisco IOS XE device. The script must be updated to print the IP addresses of all the loopback interfaces. Which statement should be added before the loop?
interfaces = response.json()[ ietf-interfaces:interfaces ]
interface = response.json()[ ietf-interfaces:interfaces ]
interface = response.json()[ ietf-interfaces:interfaces ][ interface ]
interfaces = response.json()[ ietf-interfaces:interfaces ][ interface ]
Network Programmability Foundation
Network Device Programmability
Refer to the exhibit. The goal is to write a Python script to automatically send a message to an external messaging application when a rogue AP is detected on the network. The message should include the broadcast SSID that is in the alert. A function called send_to_application is created, and this is the declaration:
send_to_application(message)
The exhibit also shows the data that is received by the application and stored in the variable return_val. Which Python code completes the task?
Comments