ExamGecko
Home Home / Cisco / 350-601

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

Question list
Search
Search

List of questions

Search

Related questions











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.)

A.

MLAG

A.

MLAG

Answers
B.

HSRP

B.

HSRP

Answers
C.

PAgP

C.

PAgP

Answers
D.

VDC

D.

VDC

Answers
E.

vPC

E.

vPC

Answers
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.

Refer to the exhibit.

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

A.

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

A.

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

Answers
B.

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

B.

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

Answers
C.

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

C.

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

Answers
D.

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

D.

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

Answers
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

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.)

A.

memory

A.

memory

Answers
B.

graphic card

B.

graphic card

Answers
C.

processor

C.

processor

Answers
D.

network controller

D.

network controller

Answers
E.

storage controller

E.

storage controller

Answers
Suggested answer: A, C

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

A.

The current set of packages is committed.

A.

The current set of packages is committed.

Answers
B.

The package is removed from the switch.

B.

The package is removed from the switch.

Answers
C.

The package features for the line card are disabled.

C.

The package features for the line card are disabled.

Answers
D.

The current upgrade stops.

D.

The current upgrade stops.

Answers
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

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?

A.

streaming telemetry

A.

streaming telemetry

Answers
B.

logging

B.

logging

Answers
C.

SNMPv3

C.

SNMPv3

Answers
D.

CLI-based scripting

D.

CLI-based scripting

Answers
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.

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.)

A.

device FQDN

A.

device FQDN

Answers
B.

device public IP address

B.

device public IP address

Answers
C.

device claim code

C.

device claim code

Answers
D.

device ID

D.

device ID

Answers
E.

device serial number

E.

device serial number

Answers
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.

Refer to the exhibit.

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

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:

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.

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?

A.

Modify the privilege level assigned to the user

A.

Modify the privilege level assigned to the user

Answers
B.

Define a custom user role and assign it to users

B.

Define a custom user role and assign it to users

Answers
C.

Assign the user 'Employee1' the network-operator role

C.

Assign the user 'Employee1' the network-operator role

Answers
D.

Assign users to a specific Cisco UCS locale

D.

Assign users to a specific Cisco UCS locale

Answers
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

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?

A.

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

A.

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

Answers
B.

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

B.

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

Answers
C.

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

C.

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

Answers
D.

Microsegmentation is supported only using AVE or AVS.

D.

Microsegmentation is supported only using AVE or AVS.

Answers
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

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?

A.

All-Flash

A.

All-Flash

Answers
B.

Hybrid

B.

Hybrid

Answers
C.

All-SAN

C.

All-SAN

Answers
D.

All-NVMe

D.

All-NVMe

Answers
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

Total 491 questions
Go to page: of 50