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

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

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
41 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
40 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
40 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
37 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
39 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?

Modify the privilege level assigned to the user

Modify the privilege level assigned to the user

Define a custom user role and assign it to users

Define a custom user role and assign it to users

Assign the user 'Employee1' the network-operator role

Assign the user 'Employee1' the network-operator role

Assign users to a specific Cisco UCS locale

Assign users to a specific Cisco UCS locale

Suggested answer: B
Explanation:

To prevent users from modifying root policies, the system administrator can define a custom user role and assign it to users. A custom user role can have specific privileges and scope of access that are different from the predefined user roles. For example, a custom user role can have read-only access to the root policies, but full access to the organization policies. By assigning this custom user role to users, the system administrator can ensure that only authorized users can modify the root policies, while still allowing users to manage their own organization policies. This way, the system administrator can avoid accidental changes to the boot policy or other root policies that can impact all service profiles and their storage connectivity.Reference:= Implementing and Operating Cisco Data Center Core Technologies (DCCOR) v1.2, Module 5: Cisco Unified Computing System, Lesson 5.2: Cisco UCS Manager Administration [Cisco UCS Manager Administration Management Guide, Release 4.1], Chapter: User Management, Section: Creating a Custom User Role [Cisco UCS Manager GUI Configuration Guide, Release 4.1], Chapter: Managing Organizations and Locales, Section: Creating an Organization

asked 10/10/2024
Joe Mon
32 questions

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?

ACI does not support microsegmentation based on vCenter VM attributes. You should use network attributes for mircosegmentation.

ACI does not support microsegmentation based on vCenter VM attributes. You should use network attributes for mircosegmentation.

An ACI microsegmented EPG automatically creates a port group with a private VLAN configured on a VMware vCenter distributed virtual switch.

An ACI microsegmented EPG automatically creates a port group with a private VLAN configured on a VMware vCenter distributed virtual switch.

When enabled, microsegmentation performs distributed switching and routing on the ESXi hosts.

When enabled, microsegmentation performs distributed switching and routing on the ESXi hosts.

Microsegmentation is supported only using AVE or AVS.

Microsegmentation is supported only using AVE or AVS.

Suggested answer: C
Explanation:

Microsegmentation is a feature of ACI that allows granular control of traffic between endpoints based on vCenter VM attributes, such as name, guest OS, or network adapter type. Microsegmentation works by creating a micro-EPG for each VM and applying contracts and policies to the micro-EPGs. When microsegmentation is enabled, ACI performs distributed switching and routing on the ESXi hosts using the Cisco Application Virtual Switch (AVS) or the Cisco Application Virtual Edge (AVE). This allows ACI to enforce policies at the hypervisor level, without requiring any changes to the physical network or the VM configuration.Reference:=

Implementing and Operating Cisco Data Center Core Technologies (DCCOR) v1.2, Module 6: Cisco ACI, Lesson 6.3: Cisco ACI Integration

Cisco ACI Virtualization Guide, Release 4.2(x), Chapter: Configuring Microsegmentation

asked 10/10/2024
Henny Smit
43 questions

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?

All-Flash

All-Flash

Hybrid

Hybrid

All-SAN

All-SAN

All-NVMe

All-NVMe

Suggested answer: B
Explanation:

A hybrid Cisco HyperFlex storage configuration is the best option for a virtual environment that is not performance-sensitive, but requires high storage capacity and a low cost. A hybrid configuration consists of a mix of solid-state drives (SSDs) and hard disk drives (HDDs) in each node. The SSDs are used for caching and metadata, while the HDDs are used for data storage. This allows for a balance between performance and capacity, as well as a lower cost per gigabyte than an all-flash configuration. A hybrid configuration also provides data deduplication and compression features to optimize storage efficiency and reduce the storage footprint. A hybrid configuration is suitable for general-purpose workloads, such as virtual desktop infrastructure (VDI), databases, and file servers.Reference:=

Implementing and Operating Cisco Data Center Core Technologies (DCCOR) v1.2, Module 4: Cisco HyperFlex, Lesson 4.1: Cisco HyperFlex Overview

Cisco HyperFlex Systems Design Guide, Chapter: Cisco HyperFlex Storage Configurations

asked 10/10/2024
Tammy Tran
34 questions
Total 491 questions
Go to page: of 50
Search

Related questions