exam questions

Exam 350-401 All Questions

View all questions & answers for the 350-401 exam

Exam 350-401 topic 1 question 752 discussion

Actual exam question from Cisco's 350-401
Question #: 752
Topic #: 1
[All 350-401 Questions]

SIMULATION
-


Guidelines
-

This is a lab item in which tasks will be performed on virtual devices.

• Refer to the Tasks tab to view the tasks for this lab item.
• Refer to the Topology tab to access the device console(s) and perform the tasks.
• Console access is available for all required devices by clicking the device icon or using the tab(s) above the console window.
• All necessary preconfigurations have been applied.
• Do not change the enable password or hostname for any device.
• Save your configurations to NVRAM before moving to the next item.
• Click Next at the bottom of the screen to submit this lab and move to the next question.
• When Next is clicked, the lab closes and cannot be reopened.


Topology
-




Tasks
-

Configure the devices according to the topology to achieve these goals:

1. Configure a SPAN session on SW01 using these parameters:
• Session Number: 20
• Source Interface: VLAN 99
• Traffic Direction: Transmitted Traffic
• Destination Interface: Ethernet 0/1
2. Configure the NetFlow Top Talkers feature for outbound traffic on interface E0/2 of R01 with these parameters:
• Number of Top Talkers: 50
• Sort Type: Packets
• Cache Timeout: 30 seconds
3. Configure an IP SLA operation on SW02 and start the ICMP probe with these parameters:
• Entry Number: 10
• Target IP: 1.1.1.1
• Source IP: 172.16.2.2
• Frequency: 5 seconds
• Threshold: 250 milliseconds
• Timeout: 3000 milliseconds
• Lifetime: Forever





Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Nickplayany
Highly Voted 2 years, 1 month ago
At the second part 2. Configure the NetFlow Top Talkers feature for outbound traffic on interface E0/2 of R01 with these parameters: • Number of Top Talkers: 50 • Sort Type: Packets • Cache Timeout: 30 seconds There is something missing - the last part of cache timeout. Correct output as below: R01 config t interface et0/2 ip flow egress ip flow-top-talkers top 50 sort-by packets cache-timeout 30000 <- that is missing wr mem
upvoted 18 times
...
FerroForce
Highly Voted 2 years ago
SW01 conf t monitor session 20 source vlan 99 tx destination interface ethernet 0/1 ! write memory R01 config t interface et0/2 ip flow egress ip flow-top-talkers top 50 sort-by packets cache-timeout 30000 ! wr mem SW02 ip sla 10 icmp-echo 1.1.1.1 source-ip 172.16.2.2 threshold 250 timeout 3000 frequency 5 ! ip sla schedule 10 life forever start-time now ! wr mem
upvoted 12 times
...
Shri_Fcb10
Most Recent 11 months, 2 weeks ago
SW01# configure terminal SW01(config)# monitor session 20 source vlan 99 tx SW01(config)# monitor session 20 destination interface ethernet 0/1 SW01(config)# end SW01# write memory R01# configure terminal R01(config)# ip flow-top-talkers R01(config-flow-top-talkers)# top 50 R01(config-flow-top-talkers)# sort-by packets R01(config-flow-top-talkers)# cache-timeout 30 R01(config-flow-top-talkers)# exit R01(config)# interface ethernet 0/2 R01(config-if)# ip flow ingress R01(config-if)# ip flow egress R01(config-if)# end R01# write memory SW02# configure terminal SW02(config)# ip sla 10 SW02(config-ip-sla)# icmp-echo 1.1.1.1 source-ip 172.16.2.2 SW02(config-ip-sla-echo)# frequency 5 SW02(config-ip-sla-echo)# threshold 250 SW02(config-ip-sla-echo)# timeout 3000 SW02(config-ip-sla-echo)# exit SW02(config)# ip sla schedule 10 life forever start-time now SW02(config)# end SW02# write memory
upvoted 5 times
Shri_Fcb10
7 months, 3 weeks ago
in the 2nd config, I added by mistake ip flow ingress please ignore that as the question is only looking for outbound traffic
upvoted 3 times
Shri_Fcb10
7 months, 3 weeks ago
and also the cache-timeout is based on millisecs so instead of 30 it should be 30000
upvoted 2 times
...
...
...
d4doppelganger
1 year, 1 month ago
For first part: E0/1 is part of port-channel 1 If we configure the same port as destination interface of a SPAN session that port will go into "monitoring" mode and would show as down in port-channel 1 The destination port in SPAN session should be some other port. It does not make sense.
upvoted 2 times
...
Tadese
1 year, 3 months ago
SW02 ip sla 10 icmp-echo 1.1.1.1 source-ip 172.16.2.2 threshold 250 timeout 3000 frequency 5 ! ip sla schedule 10 life forever start-time now ! wr mem
upvoted 3 times
...
123robinsong
1 year, 10 months ago
This commands are not supported on the interface , but only on the global config mode: ip flow egress ip flow-top-talkers top 50 sort-by packets cache-timeout 30000
upvoted 3 times
tempaccount00001
1 year, 10 months ago
almost correct! interface eth 0/1 ip flow egress exit ip flow-top-talkers top 50 sort-by packets timeout 30000
upvoted 2 times
rogi2023
1 year, 9 months ago
I agree with 123robinsong and I am not sure if exiting the intf eth0/1 with the cmd ip flow egress will bind it with the rest of cmds in global config..Maybe Yes. see the http://www.bscottrandall.com/9.7.3.html R1(config)# ip flow-top-talkers R1(config-flow-top-talkers)#? Netflow top talker configuration commands: cache-timeout Configure cache timeout default Set a command to its defaults exit Exit from top talkers configuration mode match Configure match criteria no Negate a command or set its defaults sort-by Configure top talker sort criteria top Configure number of top talkers =======there is a match cmd ========= So I would go with this: ip flow-top-talkers top 50 sort-by packets cache-timeout 30000 match output-interface Ethernet0/2 is this the same as tempaccount..sugests?
upvoted 1 times
...
Papins
1 year, 9 months ago
almost correct but the interface is eth0/2 int e0/2 ip flow egress exit ip flow-top-talkers top 50 sort-by packets timeout 30000
upvoted 2 times
...
...
...
DavideDL
2 years ago
For the first section (SPAN) , I think this is the correct configuration: monitor session 20 source vlan 99 tx (You can choose between a phisical interface or a vlan NOT an interface vlan) monitor session 20 destination interface ethernet 0/1 write memory or (It depends on the OS you are using): monitor session 20 source vlan 99 tx destination interface ethernet 0/1 write memory
upvoted 7 times
Klimy
1 year, 5 months ago
So we mirror the traffic of the VLAN to Ethernet0/1 which is part of a Port channel and on the other side connected to a switchport. Khhmm. Realistic :-)
upvoted 1 times
...
...
JackDRipper
2 years ago
When it says "Configure the devices according to the topology to achieve these goals", does it include setting up things like routing, etherchannel and whatnot? Or is the topology already built, complete and operational, and we only need to do specifically what is being asked under Tasks?
upvoted 1 times
gibblock
2 years ago
Topology is already configured. Apply only the configuration you are asked for.
upvoted 3 times
...
...
gibblock
2 years ago
Correct configuration should be ip sla 10 icmp-echo 1.1.1.1 source-ip 172.16.2.2 threshold 250 timeout 3000 frequency 5 ip sla schedule 10 life forever start-time now Keep in mind that "ip sla schedule 10 ..." is a separate command that activates the SLA. Furthermore do not forget to append "start-time" otherwise the scheduler does not start.
upvoted 6 times
gibblock
2 years ago
and of course copy running startup
upvoted 4 times
...
...
HungarianDish_111
2 years ago
I encountered a problem when performing the first task, SPAN in my lab in CML. Under "monitor session 20 source... or source interface...", I do not have the option for "interface vlan...". The solution suggests to use "interface vlan 99" as the source. However, only the commands "source vlan..." or "source interface GigabitEthernet... or Port-channel..." are given in the IOS that I am using. I read about this topic, and "interface vlan..." does not seem to be offered as the source in the SPAN configuration generally. SW01(config)#monitor session 20 source ? interface SPAN source interface remote SPAN source Remote vlan SPAN source VLAN SW01(config)#monitor session 20 source interface ? GigabitEthernet GigabitEthernet IEEE 802.3z Port-channel Ethernet Channel of interfaces Did someone successfully test the solution?
upvoted 2 times
HungarianDish_111
2 years ago
This is what I can set in my lab: SW01(config)#monitor session 20 source vlan 99 tx
upvoted 2 times
gibblock
2 years ago
I tried it on a 3750 and 3850 and the "interface vlan" option was missing. You can only choose between interface or vlan.Not 100% sure if it's a limitation by the emulators I am using (including my hardware as well) or it should be that way. I guess the latter one.
upvoted 2 times
...
...
...
jorgeoscar90
2 years, 1 month ago
ip sla 10 icmp-echo 1.1.1.1 source-ip 172.16.2.2 threshold 250 timeout 3000 frequency 5 ip sla schedule 10 life forever
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago