





Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
A series of questions and answers for the cisco 300-101 implementing cisco ip routing exam, including topics such as router configuration, netflow data exporting, unicast reverse path forwarding (urpf), and ip slas. The answers are provided along with explanations and relevant cisco documentation links.
What you will learn
Typology: Exams
1 / 9
This page cannot be seen from the preview
Don't miss anything!
What command can you enter to configure an enable password that uses an encrypted password from another configuration?
A. enable secret $abc%!e.Cd34$!ao B. enable secret 7 Sabc%!e.Cd34$!ao C. enable secret 0 Sabc%U*.Cd34$!ao D. enable secret 5 $abc%!e.Cd34$!ao E. enable secret 15 $abc%ie.Cd34$!ao F. enable secret 6 $abc%!e.Cd34$!ao
Answer: D
A network engineer receives reports about poor voice quality issues at a remote site. The network engineer does a packet capture and sees out-of-order packets being delivered. Which option can cause the VOIP quality to suffer?
A. traffic over backup redundant links B. misconfigured voice vlan C. speed duplex link issues D. load balancing over redundant links
Answer: D Explanation: In traditional packet forwarding systems, using different paths have varying latencies that cause out of order packets, eventually resulting in far lower performance for the network application. Also , if some packets are process switched quickly by the routing engine of the router while others are interrupt switched (which takes more time) then it could result in out of order packets. The other options would cause packet drops or latency, but not out of order packets.
What is the administrative distance for EBGP?
Answer: D
Which mode of uRPF causes a router interface to accept a packet, if the network to which the packet's source IP address belongs is found in the router's FIB?
A. Strict mode B. Loose mode C. Auto mode D. Desirable mode
Answer: B Explanation: A number of common types of DoS attacks take advantage of forged or rapidly changing source IP addresses, allowing attackers to thwart efforts by ISPs to locate or filter these attacks. Unicast RPF was originally created to help mitigate such attacks by providing an automated, scalable mechanism to implement the Internet Engineering Task Force (IETF) Best Common Practices 38/Request for Comments 2827 (BCP 38/RFC 2827) anti-spoofing filtering on the customer-to- ISP network edge. By taking advantage of the information stored in the Forwarding Information Base (FIB) that is created by the , Unicast RPF can determine whether IP packets are spoofed or malformed by CEF switching process matching the IP source address and ingress interface against the FIB entry that reaches back to this source (a so-called reverse lookup). Packets that are received from one of the best reverse path routes back out of the same interface are forwarded as normal. If there is no reverse path route on the same interface from which the packet was received, it might mean that the source address was modified, and the packet is dropped (by default).
Which of the following are characteristics of TACACS+? (Choose two.)
A. Uses UDP B. Encrypts an entire packet C. Offers robust accounting D. Cisco-proprietary
Answer: BD Explanation: CHARACTERISTICS O TACACS+ 1-TACACS+ encrypts the entire body of the packet 2- TACACS+ uses TCP 3-TACACS+ uses the AAA architecture, which separates AAA 4-TACACS+ offers multiprotocol support. 5-TACACS+ is Cisco proprietary protocol 6-TACACS+ is a heavy-weight protocol consuming more resources 7-TACACS+ uses TCP port 49 8-Mainly used for Device Administration 9-TACACS+ supports 15 privilege levels http://www.cisco.com/c/en/us/support/docs/security-vpn/remote-authentication-dial-user-service- radius/13838-10.html
Which two options are causes of out-of-order packets? (Choose two.)
A. a routing loop B. a router in the packet flow path that is intermittently dropping packets C. high latency D. packets in a flow traversing multiple paths through the network. E. some packets in a flow being process-switched and others being interrupt-switched on a transit Router
Answer: DE Explanation: In traditional packet forwarding systems, using different paths have varying latencies that cause out of order packets, eventually resulting in far lower performance for the network application. Also, if some packets are process switched quickly by the routing engine of the router while others are interrupt switched (which takes more time) then it could result in out of order packets. The other options would cause packet drops or latency, but not out of order packets.
Scenario: You have been asked to evaluate an OSPF network setup in a test lab and to answer questions a customer has about its operation. The customer has disabled your access to the show running- config command.
Which of the following statements is true about the serial links that terminate in R
A. The R1-R3 link needs the neighbor command for the adjacency to stay up B. The R2-R3 link OSPF timer values are 30, 120, 120 C. The R1-R3 link OSPF timer values should be 10,40, D. R3 is responsible for flooding LSUs to all the routers on the network.
network must be available in case of a link failure. No static or default routing is allowed in either network.
A previous network engineer has started the merger implementation and has successfully assigned and verified all IP addressing and basic IGP routing. You have been tasked with completing the implementation and ensuring that the network requirements are met. You may not remove or change any of the configuration commands currently on any of the routers. You may add new commands or change default values.
Answer:
R2# show interface s0/0/
Write down these 5 parameters, notice that we have to divide the Delay by 10 because the metric unit is in tens of microsecond. For example, we get Bandwidth=1544 Kbit, Delay=20000 us, Reliability=255, Load=1, MTU= bytes then we would redistribute as follows:
R2# config terminal R2(config)# router ospf 1 R2(config-router)# redistribute eigrp 100 metric-type 1 subnets R2(config-router)# exit R2(config-router)# router eigrp 100 R2(config-router)# redistribute ospf 1 metric 1544 2000 255 1 1500
Note: In fact, these parameters are just used for reference and we can use other parameters with no problem. If the delay is 20000us then we need to divide it by 10, that is 20000 / 10 = 2000) For R3 we use the show interface fa0/0 to get 5 parameters too
R3# show interface fa0/
For example we get Bandwidth=10000 Kbit, Delay=1000 us, Reliability=255, Load=1, MTU=
bytes
R3# config terminal R3(config)# router ospf 1 R3(config-router)# redistribute eigrp 100 metric-type 1 subnets R3(config)# exit R3(config-router)# router eigrp 100 R3(config-router)# redistribute ospf 1 metric 10000 100 255 1 1500
Finally you should try to " show ip route " to see the 172.16.100.1 network (the network behind R4) in the routing table of R1 and make a ping from R1 to this network.
Note: If the link between R2 and R3 is FastEthernet link, we must put the command below under EIGRP process to make traffic from R1 to go through R3 (R1 -> R2 -> R3 -> R4), which is better than R1 -> R2 -> R4.
R2(config-router)# distance eigrp 90 105
This command sets the Administrative Distance of all EIGRP internal routes to 90 and all EIGRP external routes to 105, which is smaller than the Administrative Distance of OSPF (110) -> the link between R2 & R3 will be preferred to the serial link between R2 & R4.
Note: The actual OPSF and EIGRP process numbers may change in the actual exam so be sure to use the actual correct values, but the overall solution is the same.
Which IP SLA operation requires Cisco endpoints?
A. UDP Jitter for VoIP B. ICMP Path Echo C. ICMP Echo D. UDP Jitter
Answer: A Explanation: With the addition of real-time traffic (ie: VoIP), the focus shifts not just in the reliability of the network, but also on the delays involved in transmitting the data. Real-time traffic is delay sensitive. For Voice data, packet loss is manageable to some extent, but frequent losses impair communication between endpoints. The UDP jitter operation is the most popular operation because the user can obtain packet loss, jitter and latency from one operation. This also includes unidirectional measurements as well. The Jitter operation is designed to measure the delay, delay variance and packet loss in IP networks by generating active UDP traffic. It sends N packets, each of size S, from source router to a target router (which requires Cisco IOS IP SLAs responder enabled) each T milliseconds apart. All these parameters are user configurable. http://www.cisco.com/en/US/technologies/tk648/tk362/tk920/technologies_white_paper09186a 802d5efe.html