300-435試験無料問題集「Cisco Automating and Programming Cisco Enterprise Solutions 認定」
Drag and Drop Question
An engineer must add basic reliability to a monitoring script that polls uptime from multiple Cisco IOS routers. The engineer must implement proper exception handling for timeouts and authentication failures and preserve successful outputs. Drag and drop the code snippets from the bottom onto the boxes in the code to construct the artifact. Not all options are used. Options may be used more than once.

An engineer must add basic reliability to a monitoring script that polls uptime from multiple Cisco IOS routers. The engineer must implement proper exception handling for timeouts and authentication failures and preserve successful outputs. Drag and drop the code snippets from the bottom onto the boxes in the code to construct the artifact. Not all options are used. Options may be used more than once.

正解:

Explanation:
The script uses ConnectHandler to open a Netmiko session to each Cisco IOS router. The uptime check is an operational show command, so send_command is the correct method. Reliability is added by catching NetmikoTimeoutException for unreachable or slow devices and NetmikoAuthenticationException for login failures, while allowing successful device outputs to continue printing normally.
Drag and Drop Question
An engineer must enable VLANs and create a management VLAN on an MX appliance. The engineer must update the VLANs settings and then configure a VLAN using the appropriate appliance endpoints. Drag and drop the code snippets from the bottom onto the boxes in the code to construct the artifact. Not all options are used. Options may be used more than once.

An engineer must enable VLANs and create a management VLAN on an MX appliance. The engineer must update the VLANs settings and then configure a VLAN using the appropriate appliance endpoints. Drag and drop the code snippets from the bottom onto the boxes in the code to construct the artifact. Not all options are used. Options may be used more than once.

正解:

Explanation:
The Meraki Dashboard API authenticates with the x-cisco-meraki-api-key header. Enabling VLAN support on an MX network is done through the network-scoped appliance/vlans/settings endpoint.
After VLANs are enabled, the individual VLAN is configured on the same network through the appliance/vlans endpoint with the VLAN ID appended to the path.



