ExamGecko
Home Home / Cisco / 300-435

Cisco 300-435 Practice Test - Questions Answers, Page 5

Question list
Search
Search

List of questions

Search

Related questions











Which action allows for creating a Python script to pull inventory for Cisco SD-WAN Viptela devices using the Viptela library in the code?

A.

from urllib.request import Viptela

A.

from urllib.request import Viptela

Answers
B.

from viptela.devices import Viptela

B.

from viptela.devices import Viptela

Answers
C.

from viptela.viptela import Viptela

C.

from viptela.viptela import Viptela

Answers
D.

from viptela.library import Viptela

D.

from viptela.library import Viptela

Answers
Suggested answer: C

Explanation:

:

The viptela.devices import viptela can be used to put inventory from Cisco SD WAN viptela devices.

What is primary purpose of using the Cisco SD-WAN vManage Certificate Management API?

A.

to securely deploy vManage

A.

to securely deploy vManage

Answers
B.

to report an issue to Cisco TAC

B.

to report an issue to Cisco TAC

Answers
C.

to install signed certificates

C.

to install signed certificates

Answers
D.

to contact Enterprise Certificate Authority

D.

to contact Enterprise Certificate Authority

Answers
Suggested answer: A

Explanation:

Reference: https://sdwan-docs.cisco.com/Product_Documentation/vManage_Help/Release_17.1/Configuration/Certificates

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.

users?

A.

users?

Answers
Suggested answer: A

Explanation:

:

https://vmanage-ip-address/dataservice/device/interface?deviceId=deviceId

Reference: https://sdwan-docs.cisco.com/Product_Documentation/Command_Reference/Command_Reference/vManage_REST_APIs/Real-Time_Monitoring_APIs/Interface

Which two API calls must be issued to attach a device template in Cisco SD-WAN? (Choose two.)

A.

“monitor device action status” GET API request with the device ID to display the status of the attach action

A.

“monitor device action status” GET API request with the device ID to display the status of the attach action

Answers
B.

“monitor device action status” GET API request with the process ID to display the status of the attach action

B.

“monitor device action status” GET API request with the process ID to display the status of the attach action

Answers
C.

PUT call to initiate the attach action

C.

PUT call to initiate the attach action

Answers
D.

POST call to initiate the attach action

D.

POST call to initiate the attach action

Answers
E.

GET call to initiate the attach action

E.

GET call to initiate the attach action

Answers
Suggested answer: B, D

Explanation:

Reference: https://sdwan-docs.cisco.com/Product_Documentation/Command_Reference/Command_Reference/vManage_REST_APIs/Device_Configuration_APIs/Device_Templates

During a network outage, a network administrator used the Cisco SD-WAN vManage Troubleshooting Dashboard APIs to troubleshoot the cause of the issue. Which detail is captured during troubleshooting with these APIs?

A.

VPN health

A.

VPN health

Answers
B.

public cloud resources

B.

public cloud resources

Answers
C.

connections summary

C.

connections summary

Answers
D.

OMP connection health

D.

OMP connection health

Answers
Suggested answer: C

Explanation:

Reference: https://sdwan-docs.cisco.com/Product_Documentation/Command_Reference/Command_Reference/vManage_REST_APIs/Troubleshooting_APIs/Dashboard

Refer to the exhibit.

A Python script has been created that calls the Cisco SD-WAN vManage Device Inventory API to get the list of vEdges. The JSON data that returns to a Python dictionary has been converted and assigned to a variable named “d”. A portion of the JSON is shown in the exhibit. Which code will complete the expression hostname= to access the hostname?

A.

d[“data”][0][“host-name”]

A.

d[“data”][0][“host-name”]

Answers
B.

d[data][0][host-name]

B.

d[data][0][host-name]

Answers
C.

d(“data”)[0](“host-name”)

C.

d(“data”)[0](“host-name”)

Answers
D.

d[“host-name”][“data”]{“0”}

D.

d[“host-name”][“data”]{“0”}

Answers
Suggested answer: A

Explanation:

:

The double-quotations are a necessary syntax of Python. And for the json portion doesnt use parentheses. It always uses brackets. d[“data”][0][“host-name”] is the only logical answer.

Fill in the blank to complete the URL for an API call to Cisco SD-WAN to display the history of the Bidirectional Forwarding Detection sessions that run on a vEdge router.

A.

bfd/history?

A.

bfd/history?

Answers
Suggested answer: A

Explanation:

:h ttps://vmanage-ip-address/dataservice/device/bfd/synced/sessions?deviceId=deviceId

Reference: https://sdwan-docs.cisco.com/Product_Documentation/Command_Reference/Command_Reference/vManage_REST_APIs/Real-Time_Monitoring_APIs/BFD

Refer to the exhibit.

A Python script must be created to deactivate vSmart Policy Cisco SD-WAN vManage Configuration APIs. The documentation states the URL is as shown in the exhibit for this REST call using POST, and that “policyId” is a required request parameter. Which line of Python code makes this call, assuming the variable “s” is a valid Requests session object and the variable “policy-id” is the policyId?

A.

s.port(‘https://vmanage:8443/dataservice/template/policy/vsmart/activate?policyId=%s’ %policy_id)

A.

s.port(‘https://vmanage:8443/dataservice/template/policy/vsmart/activate?policyId=%s’ %policy_id)

Answers
B.

s.port(‘https://vmanage:8443/dataservice/template/policy/vsmart/activate/%s’ % policy_id)

B.

s.port(‘https://vmanage:8443/dataservice/template/policy/vsmart/activate/%s’ % policy_id)

Answers
C.

s.port(‘https://vmanage:8443/dataservice/template/policy/vsmart/activate&policyId=%s’ %policy_id)

C.

s.port(‘https://vmanage:8443/dataservice/template/policy/vsmart/activate&policyId=%s’ %policy_id)

Answers
D.

s.port(‘https://vmanage:8443/dataservice/template/policy/vsmart/activate/’, data = {‘policyId’:policy_id})

D.

s.port(‘https://vmanage:8443/dataservice/template/policy/vsmart/activate/’, data = {‘policyId’:policy_id})

Answers
Suggested answer: B

A configuration has been made to add to every switch port a new port description. The script worked initially, but after a few seconds, an HTTP 429 status code was received. What causes this error message from the Meraki cloud?

A.

The wrong API key is used to query the data.

A.

The wrong API key is used to query the data.

Answers
B.

The rate limit of the Cisco Meraki API is exceeded.

B.

The rate limit of the Cisco Meraki API is exceeded.

Answers
C.

The API key has expired.

C.

The API key has expired.

Answers
D.

The device goes offline while you poll the API dashboard.

D.

The device goes offline while you poll the API dashboard.

Answers
Suggested answer: B

Explanation:

Reference: https://community.meraki.com/t5/Developers-APIs/my-API-Limit-exceed-and-key-is-notworking/td- p/64034

Which Python snippet receives a Meraki webhook request?

A.

Option A

A.

Option A

Answers
B.

Option B

B.

Option B

Answers
C.

Option C

C.

Option C

Answers
D.

Option D

D.

Option D

Answers
Suggested answer: D

Explanation:

Reference: https://github.com/CiscoDevNet/dnav3-code/blob/master/intro-meraki/meraki-07-webhooks/ webhookreceiver.py

Total 124 questions
Go to page: of 13