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

Cisco 350-401 Practice Test - Questions Answers, Page 9

Add to Whishlist

List of questions

Question 81

Report Export Collapse

Cisco 350-401 image Question 81 115380 10102024232942000000


Which command must be applied to R2 for an OSPF neighborship to form?

network 20.1.1.2.0.0.0.0 area 0

network 20.1.1.2.0.0.0.0 area 0

network 20.1.1.2 255.255.0.0. area 0

network 20.1.1.2 255.255.0.0. area 0

network 20.1.1.2.0.0.255.255 area 0

network 20.1.1.2.0.0.255.255 area 0

network 20.1.1.2 255.255.255 area 0

network 20.1.1.2 255.255.255 area 0

Suggested answer: A
Explanation:

The ?network 20.0.0.0 0.0.0.255 area 0? command on R2 did not cover the IP address of Fa1/1 interface of R2 so OSPF did not run on this interface. Therefore we have to use the command ?network 20.1.1.2 0.0.255.255 area 0? to turn on OSPF on this interface.

Note: The command ?network 20.1.1.2 0.0.255.255 area 0? can be used too so this answer is also correct but answer C is the best answer here.

The ?network 0.0.0.0 255.255.255.255 area 0? command on R1 will run OSPF on all active

asked 10/10/2024
Michal Kopl
42 questions

Question 82

Report Export Collapse

Which two operations are valid for RESTCONF? (Choose two.)

HEAD

HEAD

REMOVE

REMOVE

PULL

PULL

PATCH

PATCH

ADD

ADD

PUSH

PUSH

Suggested answer: A, D
Explanation:

RESTCONF operations include OPTIONS, HEAD, GET, POST, PATCH, DELETE.

asked 10/10/2024
Russell Ang
39 questions

Question 83

Report Export Collapse

Refer to the exhibit.

Cisco 350-401 image Question 83 115382 10102024232942000000

The IP SLA is configured in a router. An engineer must configure an EEM applet to shut down the interface and bring it back up when there is a problem with the IP SLA. Which configuration should the engineer use?

event manager applet EEM_IP_SLA event track 10 state down

event manager applet EEM_IP_SLA event track 10 state down

event manager applet EEM_IP_SLA event track 10 state unreachable

event manager applet EEM_IP_SLA event track 10 state unreachable

event manager applet EEM_IP_SLA event sla 10 state unreachable

event manager applet EEM_IP_SLA event sla 10 state unreachable

event manager applet EEM_IP_SLA event sla 10 state down

event manager applet EEM_IP_SLA event sla 10 state down

Suggested answer: A
Explanation:

The ?ip sla 10? will ping the IP 192.168.10.20 every 3 seconds to make sure the connection is still up. We can configure an EEM applet if there is any problem with this IP SLA via the command ?event track 10 state down?.

Reference: https://www.theroutingtable.com/ip-sla-and-cisco-eem/

asked 10/10/2024
Ricardo Chapa
43 questions

Question 84

Report Export Collapse

Which JSON syntax is valid?


Cisco 350-401 image Question 84 Answer 1 115383 10102024232942000000


Cisco 350-401 image Question 84 Answer 1 115383 10102024232942000000


Cisco 350-401 image Question 84 Answer 2 115383 10102024232942000000


Cisco 350-401 image Question 84 Answer 2 115383 10102024232942000000


Cisco 350-401 image Question 84 Answer 3 115383 10102024232942000000


Cisco 350-401 image Question 84 Answer 3 115383 10102024232942000000


Cisco 350-401 image Question 84 Answer 4 115383 10102024232942000000


Cisco 350-401 image Question 84 Answer 4 115383 10102024232942000000

Suggested answer: C
Explanation:

This JSON can be written as follows:

{' switch': {

'name': 'dist1',

'interfaces': ['gig1', 'gig2', 'gig3']

}}

asked 10/10/2024
Michael Thornton
48 questions

Question 85

Report Export Collapse


Refer to the exhibit.

Cisco 350-401 image Question 85 115384 10102024232942000000

An engineer must deny Telnet traffic from the loopback interface of router R3 to the loopback interface of router R2 during the weekend hours. All other traffic between the loopback interfaces of routers R3 and R2 must be allowed at all times. Which command accomplish this task?

R3(config)#time-range WEEKEND

R3(config-time-range)#periodic Saturday Sunday 00:00 to 23:59

R3(config)#access-list 150 deny tcp host 10.3.3.3 host 10.2.2.2 eq 23 time-range WEEKEND

R3(config)#access-list 150 permit ip any any time-range WEEKEND

R3(config)#interface G0/1

R3(config-if)#ip access-group 150 out

R3(config)#time-range WEEKEND

R3(config-time-range)#periodic Saturday Sunday 00:00 to 23:59

R3(config)#access-list 150 deny tcp host 10.3.3.3 host 10.2.2.2 eq 23 time-range WEEKEND

R3(config)#access-list 150 permit ip any any time-range WEEKEND

R3(config)#interface G0/1

R3(config-if)#ip access-group 150 out

R1(config)#time-range WEEKEND

R1(config-time-range)#periodic weekend 00:00 to 23:59

R1(config)#access-list 150 deny tcp host 10.3.3.3 host 10.2.2.2 eq 23 time-range WEEKEND

R1(config)#access-list 150 permit ip any any

R1(config)#interface G0/1

R1(config-if)#ip access-group 150 in

R1(config)#time-range WEEKEND

R1(config-time-range)#periodic weekend 00:00 to 23:59

R1(config)#access-list 150 deny tcp host 10.3.3.3 host 10.2.2.2 eq 23 time-range WEEKEND

R1(config)#access-list 150 permit ip any any

R1(config)#interface G0/1

R1(config-if)#ip access-group 150 in

R3(config)#time-range WEEKEND

R3(config-time-range)#periodic weekend 00:00 to 23:59

R3(config)#access-list 150 permit tcp host 10.3.3.3 host 10.2.2.2 eq 23 time-range WEEKEND

R3(config)#access-list 150 permit ip any any time-range WEEKEND

R3(config)#interface G0/1

R3(config-if)#ip access-group 150 out

R3(config)#time-range WEEKEND

R3(config-time-range)#periodic weekend 00:00 to 23:59

R3(config)#access-list 150 permit tcp host 10.3.3.3 host 10.2.2.2 eq 23 time-range WEEKEND

R3(config)#access-list 150 permit ip any any time-range WEEKEND

R3(config)#interface G0/1

R3(config-if)#ip access-group 150 out

R1(config)#time-range WEEKEND

R1(config-time-range)#periodic Friday Sunday 00:00 to 00:00

R1(config)#access-list 150 deny tcp host 10.3.3.3 host 10.2.2.2 eq 23 time-range WEEKEND

R1(config)#access-list 150 permit ip any any

R1(config)#interface G0/1

R1(config-if)#ip access-group 150 in

R1(config)#time-range WEEKEND

R1(config-time-range)#periodic Friday Sunday 00:00 to 00:00

R1(config)#access-list 150 deny tcp host 10.3.3.3 host 10.2.2.2 eq 23 time-range WEEKEND

R1(config)#access-list 150 permit ip any any

R1(config)#interface G0/1

R1(config-if)#ip access-group 150 in

Suggested answer: C
Explanation:

We cannot filter traffic that is originated from the local router (R3 in this case) so we can only configure the ACL on R1 or R2. "Weekend hours" means from Saturday morning through Sunday night so we have to configure: "periodic weekend 00:00 to 23:59".

Note: The time is specified in 24-hour time (hh:mm), where the hours range from 0 to 23 and the minutes range from 0 to 59.

asked 10/10/2024
Aldays Kausiona
48 questions

Question 86

Report Export Collapse

When configuration WPA2 Enterprise on a WLAN, which additional security component configuration is required?

NTP server

NTP server

PKI server

PKI server

RADIUS server

RADIUS server

TACACS server

TACACS server

Suggested answer: C
asked 10/10/2024
Orenthial Johnson
34 questions

Question 87

Report Export Collapse

Which devices does Cisco DNA Center configure when deploying an IP-based access control policy?

All devices integrating with ISE

All devices integrating with ISE

selected individual devices

selected individual devices

all devices in selected sites

all devices in selected sites

all wired devices

all wired devices

Suggested answer: C
Explanation:

When you click Deploy, Cisco DNA Center requests the Cisco Identity Services Engine (Cisco ISE) to send notifications about the policy changes to the network devices.

asked 10/10/2024
Robin Koele
39 questions

Question 88

Report Export Collapse

Refer to the exhibit.

Cisco 350-401 image Question 88 115387 10102024232942000000

An engineer implemented several configuration changes and receives the logging message on switch1. Which action should the engineer take to resolve this issue?

Change the VTP domain to match on both switches

Change the VTP domain to match on both switches

Change Switch2 to switch port mode dynamic auto

Change Switch2 to switch port mode dynamic auto

Change Switch1 to switch port mode dynamic auto

Change Switch1 to switch port mode dynamic auto

Change Switch1 to switch port mode dynamic desirable

Change Switch1 to switch port mode dynamic desirable

Suggested answer: A
asked 10/10/2024
Matthew Isaacs
47 questions

Question 89

Report Export Collapse

Which AP mode allows an engineer to scan configured channels for rogue access points?

sniffer

sniffer

monitor

monitor

bridge

bridge

local

local

Suggested answer: B
asked 10/10/2024
Michael Bodine
33 questions

Question 90

Report Export Collapse

Which statement about TLS is accurate when using RESTCONF to write configurations on network devices?

It requires certificates for authentication

It requires certificates for authentication

It is provided using NGINX acting as a proxy web server

It is provided using NGINX acting as a proxy web server

It is used for HTTP and HTTPS requests

It is used for HTTP and HTTPS requests

It is not supported on Cisco devices

It is not supported on Cisco devices

Suggested answer: B
asked 10/10/2024
Abiola Unegbu
40 questions
Total 983 questions
Go to page: of 99

Related questions