最新的Cisco Automating and Programming Cisco Enterprise Solutions - 300-435免費考試真題
Drag and Drop Question
Drag and drop the code snippers from the bottom onto the blanks in the code to subscribe to a Cisco DNA event by using the intent API . Not all options used.

Drag and drop the code snippers from the bottom onto the blanks in the code to subscribe to a Cisco DNA event by using the intent API . Not all options used.

正確答案:

A network automation team plans to configure webhook notifications for device monitoring in a large-scale enterprise environment. The design requires secure authentication and event-specific payload filtering to optimize alert handling. SDN controller deployment introduces the use of a specific controller type, and RESTful HTTPS endpoint configuration describes the required webhook endpoint configuration. Which implementation meets the monitoring requirement?
正確答案: A
說明:(僅 Fast2test 成員可見)
Drag and Drop Question
Drag and drop the code snippets from the bottom onto the boxes in the code to complete the get_device_list function that uses the vManage Administration API to retrieve a list of devices in the overlay network that connects to the vManage NMS. Not all options are used.

Drag and drop the code snippets from the bottom onto the boxes in the code to complete the get_device_list function that uses the vManage Administration API to retrieve a list of devices in the overlay network that connects to the vManage NMS. Not all options are used.

正確答案:

Explanation:

'device': The correct vManage API endpoint for retrieving device list information.
get(url, verify=False): Performs a GET request to the endpoint without verifying SSL (commonly done in test environments).
response.status_code == 200: Checks for a successful response before processing the device data.
The automation engineer must replace device configuration using RESTCONF. How is this configured using the Python library Requests?
正確答案: A
說明:(僅 Fast2test 成員可見)
Which solution is used for automating the configuration of a device when it is first powered on, using DHCP and TFTP?
正確答案: A
Refer to exhibit. A network engineer creates an Ansible playbook execution task that automates the removal of unnecessary IP addresses from the loopback interfaces of Cisco IOS XE devices.
Which code snippet must be added to the box in the code?

Which code snippet must be added to the box in the code?

正確答案: B
說明:(僅 Fast2test 成員可見)
Refer to the exhibit. A RESTCONF GET request is sent to a Cisco IOS XE device. A portion of the response is shown in the exhibit.

Which module name corresponds to the YANG model referenced in the request?

Which module name corresponds to the YANG model referenced in the request?
正確答案: B
Refer to the exhibit. What is a valid JSON instance of this YANG module?


正確答案: B
說明:(僅 Fast2test 成員可見)
Which two encoding formats do YANG interfaces support? (Choose two.)
正確答案: A,D
Drag and Drop Question
Refer to the exhibit. An engineer must automate the configuration of Layer 3 interfaces in an Ansible playbook. The engineer must configure interface GigabitEthernet0/3 with IP address
192.168.2.100/24 and define a secondary IP address on GigabitEthernet0/4 with IP address
192.168.4.100/24. The current configuration must not be overwritten. Drag and drop the code snippets from the bottom onto the boxes in the code to complete the configuration. Not all options are used.


Refer to the exhibit. An engineer must automate the configuration of Layer 3 interfaces in an Ansible playbook. The engineer must configure interface GigabitEthernet0/3 with IP address
192.168.2.100/24 and define a secondary IP address on GigabitEthernet0/4 with IP address
192.168.4.100/24. The current configuration must not be overwritten. Drag and drop the code snippets from the bottom onto the boxes in the code to complete the configuration. Not all options are used.


正確答案:

Explanation:

config specifies the configuration block.
ipv4 defines the IPv4 addresses for the interfaces.
secondary: true sets the secondary IP.
state: merged ensures the configuration is merged, not replaced.
Which two statement describe the role of an artifact repository in a CI/CD pipeline? (Choose two.)
正確答案: C,D