ExamGecko
Home / Cisco / 350-601 / List of questions
Ask Question

Cisco 350-601 Practice Test - Questions Answers, Page 10

Add to Whishlist

List of questions

Question 91

Report Export Collapse

Due to a major version change, an engineer must perform a software upgrade on a Cisco Nexus Series switch. Which two technologies can be implemented to reduce disruptions to the network during the upgrade? (Choose two.)

MLAG

MLAG

HSRP

HSRP

PAgP

PAgP

VDC

VDC

vPC

vPC

Suggested answer: D, E
Explanation:

To reduce disruptions during a major software upgrade on a Cisco Nexus Series switch, technologies like VDC (Virtual Device Contexts) and vPC (Virtual Port Channels) can be implemented. VDC allows for the partitioning of a single physical device into multiple logical devices, which can be managed and operated independently. This means that one VDC can be upgraded while others remain operational, minimizing downtime.vPC enables the linking of two switches to create a single logical switch, providing redundancy and allowing for one switch to be upgraded while the other maintains the network operations1.

asked 10/10/2024
Maria Gervasi
41 questions

Question 92

Report Export Collapse

Refer to the exhibit.

Cisco 350-601 image Question 92 116822 10102024233033000000

Why does the python code for Cisco NX-API print an error message?

The ''type'' is wrong in the header of the request and should be ''cli_ conf''.

The ''type'' is wrong in the header of the request and should be ''cli_ conf''.

NX-API does not allow configuration for features via the requests module.

NX-API does not allow configuration for features via the requests module.

The ''type'' is wrong is the body of the request and should be ''cli_ conf''.

The ''type'' is wrong is the body of the request and should be ''cli_ conf''.

The JSON is not a supported format for the NX-API.

The JSON is not a supported format for the NX-API.

Suggested answer: C
Explanation:

'Commands that belong to different message types should not be mixed. For example, show commands are cli_show message type and are not supported in cli_conf mode.'

https://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus7000/sw/programmability/guide/cisco_nexus7000_programmability_guide_8x/b-cisco-nexus7000-programmability-guide-8x_chapter_011.html

the payload 'type' value is wrong in the body of the request. For the request to be successful, it should be changes to 'cli_conf'.

For example, if we run the same request with the updated payload:

{

'ins_api': {

'version': '1.0',

'type': 'cli_conf',

'chunk': '0',

'sid': '1',

'input': 'configure terminal ;feature hsrp',

'output_format': 'json'

}

}

We get a 200 response:

{

'ins_api': {

'sid': 'eoc',

'type': 'cli_conf',

'version': '1.0',

'outputs': {

'output': [

{

'code': '200',

'msg': 'Success',

'body': {}

},

{

'code': '200',

'msg': 'Success',

'body': {}

}

]

}

}

}

CLI verification:

nxos9kv# sh run | inc hsrp

feature hsrp

asked 10/10/2024
Blake Heffelfinger
43 questions

Question 93

Report Export Collapse

A server engineer wants to control power uses on a Cisco UCS C-series rack server down to the component level. Which two components support specific power limits? (Choose two.)

memory

memory

graphic card

graphic card

processor

processor

network controller

network controller

storage controller

storage controller

Suggested answer: A, C
asked 10/10/2024
Reselan Govender
43 questions

Question 94

Report Export Collapse

What occurs when running the command install deactivate <filename> while a software maintenance upgrade is performed on a Cisco Nexus 9000 Series switch?

The current set of packages is committed.

The current set of packages is committed.

The package is removed from the switch.

The package is removed from the switch.

The package features for the line card are disabled.

The package features for the line card are disabled.

The current upgrade stops.

The current upgrade stops.

Suggested answer: C
Explanation:

https://www.cisco.com/c/en/us/td/docs/switches/datacenter/nexus9000/sw/6-x/system_management/configuration/guide/b_Cisco_Nexus_9000_Series_NX-OS_System_Management_Configuration_Guide/sm_smu.html#task_B8B0F5BA80BE41AEA93197F560665648

asked 10/10/2024
Enayat Meer
41 questions

Question 95

Report Export Collapse

A network architect wants to propose a scalable network monitoring solution in which data is repeatedly acquired from network devices. The solution must use a push model and provide close to realtime access to operational data. Which technology must be used to meet these requirements?

streaming telemetry

streaming telemetry

logging

logging

SNMPv3

SNMPv3

CLI-based scripting

CLI-based scripting

Suggested answer: A
Explanation:

https://blogs.cisco.com/developer/its-time-to-move-away-from-snmp-and-cli-and-use-model-driven-telemetry

Streaming telemetry is a technology that enables scalable network monitoring by repeatedly acquiring data from network devices and sending it to configured endpoints. Streaming telemetry uses a push model, meaning that the network devices initiate the data transmission without being polled by the monitoring clients.Streaming telemetry also provides close to real-time access to operational data, allowing for more dynamic and responsive network analysis and troubleshooting12.

asked 10/10/2024
Tamilselvi R
40 questions

Question 96

Report Export Collapse

A network engineer is adding a Cisco HyperFlex data platform to the Cisco intersight management portal. Which two components are required for Intersight to claim the Cisco HyperFlex data platform? (Choose two.)

device FQDN

device FQDN

device public IP address

device public IP address

device claim code

device claim code

device ID

device ID

device serial number

device serial number

Suggested answer: C, E
Explanation:

To add a Cisco HyperFlex data platform to the Cisco Intersight management portal, two components are required for Intersight to claim the Cisco HyperFlex data platform: the device claim code and the device serial number. The device claim code is a unique identifier that is generated by the Cisco HyperFlex installer and is used to register the device with Intersight.The device serial number is the serial number of the Cisco HyperFlex controller node and is used to verify the device ownership and entitlement3.

asked 10/10/2024
Osman Rana
36 questions

Question 97

Report Export Collapse

Refer to the exhibit.

Cisco 350-601 image Question 97 116827 10102024233033000000

Which command is run from the Guest Shell to set the description on the first five interfaces of the Cisco Nexus switch?

Cisco 350-601 image Question 97 116827 10102024233033000000

Option A

Option A

Option B

Option B

Option C

Option C

Option D

Option D

Suggested answer: D
Explanation:

The command in Option D correctly uses a loop to iterate over the range {1...5}, which represents the first five interfaces. Thedohostcommand is used to send commands to the host Cisco Nexus switch from the Guest Shell. The syntaxinterface eth1/$xanddescription Server$xwithin the loop sets the description for each interface eth1/1 to eth1/5 to ''Server1'' to ''Server5'' respectively.

Here's the command from Option D formatted for clarity:

[guestshell@guestshell ~]$ for x in {1..5}; do

dohost 'conf t' ;

interface eth1/$x;

description Server$x;

done

This command will configure the description for each of the first five Ethernet interfaces with the respective server number as part of the description.

asked 10/10/2024
Wilfried Wagener
42 questions

Question 98

Report Export Collapse

A Cisco UCS user called 'Employee1' accidentally changed the boot policy of the Cisco UCS server at the Cisco UCS Manager root level. This change impacted all service profiles and their storage connectivity was lost. The system administrator wants to prevent this issue from recurring in the future. The new security policy mandates that access must be restricted up to the organization level and prevent other users from modifying root policies. Which action must be taken to meet these requirements?

Become a Premium Member for full access
  Unlock Premium Member

Question 99

Report Export Collapse

An engineer is running an ACI fabric, has VMM integration with VMware vCenter, and wants to enable microsegmentation based on vCenter VM attributes. Which statement about microsegmentation is true?

Become a Premium Member for full access
  Unlock Premium Member

Question 100

Report Export Collapse

A network architect considers a Cisco HyperFlex design solution for a company. The proposed solution is for a virtual environment that is not performance-sensitive, but the solution must have high storage capacity and a low cost. Which Cisco HyperFlex storage configuration should be used?

Become a Premium Member for full access
  Unlock Premium Member
Total 491 questions
Go to page: of 50
Search

Related questions