Halloween Special - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

What is an advantage of software-defined networks as compared to traditional networks?

A.

They simplify operations by creating a concrete copy of the network.

B.

They reduce complexity by coupling the control and the data plane.

C.

They enable older hardware to be repurposed without an investment in new infrastructure.

D.

They deliver a distributed management architecture that provides better resilience to errors.

Refer to the exhibit.

Which ncclient method is used to collect the running configuration of a Cisco IOS XE device that uses NETCONF?

A.

config=m.copy_config(source=’running’)

B.

config=m.get(source=’running’)

C.

config=m.collect_config(source=’running’)

D.

config=m.get_config(source=’running’)

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

A.

to securely deploy vManage

B.

to report an issue to Cisco TAC

C.

to install signed certificates

D.

to contact Enterprise Certificate Authority

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?

A.

interfaces = response.json()[“ietf-interfaces:interfaces”]

B.

interface = response.json()[“ietf-interfaces:interfaces”]

C.

interface = response.json()[“ietf-interfaces:interfaces”][“interface”]

D.

interfaces = response.json()[“ietf-interfaces:interfaces”][“interface”]

Refer to the exhibit.

NTP server 10.1.1.20 must be configured on the target Cisco IOS XE device without using

authentication and logging. Which state should be added on a new line at the end of the Ansible task?

A.

state: true

B.

state: started

C.

state: present

D.

state: installed

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.

When API request are implement for Cisco DNA Centre, which two response are returned in the JSON response when HTTP GET call is made to obtain site health? (choose two)

A.

clientHealthWired

B.

clientHealthAverage

C.

totalApplicationCount

D.

routerGoodCount

E.

overallBadDevices

What is a benefit of developing an application in a Python virtual environment?

A.

The application operates in multiple target systems simultaneously.

B.

The application supports concurrency or multithreading.

C.

The application operates across systems that have different operating systems.

D.

The development environment is isolated from Python projects that already exist.

Which setting is used for the dampening period when configuring an on-change publication for YANG-push versus Openconfig?

A.

Null

B.

-1

C.

0

D.

1000

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)

B.

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

C.

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

D.

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