getcertified4sure.com

Examples of cisco 200 105




Act now and download your Cisco 105 200 test today! Do not waste time for the worthless Cisco ccna routing and switching icnd2 200 105 official cert guide tutorials. Download Renew Cisco Interconnecting Cisco Networking Devices Part 2 (ICND2 v3.0) exam with real questions and answers and begin to learn Cisco ccna 200 105 with a classic professional.

Q41. - (Topic 1) 

Refer to the exhibit. 

What commands must be configured on the 2950 switch and the router to allow communication between host 1 and host 2? (Choose two.) 

A. Router(config)# interface fastethernet 0/0 Router(config-if)# ip address 192.168.1.1 255.255.255.0 Router(config-if)# no shut down 

B. Router(config)# interface fastethernet 0/0 Router(config-if)# no shut down Router(config)# interface fastethernet 0/0.1 Router(config-subif)# encapsulation dot1q 10 Router(config-subif)# ip address 192.168.10.1 255.255.255.0 

Router(config)# interface fastethernet 0/0.2 Router(config-subif)# encapsulation dot1q 20 Router(config-subif)# ip address 192.168.20.1 255.255.255.0 

C. Router(config)# router eigrp 100 Router(config-router)# network 192.168.10.0 Router(config-router)# network 192.168.20.0 

D. Switch1(config)# vlan database Switch1(config-vlan)# vtp domain XYZ Switch1(config-vlan)# vtp server 

E. Switch1(config)# interface fastethernet 0/1 Switch1(config-if)# switchport mode trunk 

F. Switch1(config)# interface vlan 1 Switch1(config-if)# ip default-gateway 192.168.1.1 

Answer: B,E 

Explanation: 

The two answers B and E list all the commands needed to configure interVLAN routing. Please notice that Cisco switch 2950, 2960 only support dot1Q trunking so we don’t need to specify which trunking encapsulation to use in this case. For Cisco switches 3550 or above we have to use these commands instead: 

Switch3550(config-if)#switchport trunk encapsulation dot1q Switch3550(config-if)#switchport mode trunk 

References: http://www.cisco.com/en/US/tech/tk389/tk815/technologies_configuration_example09186a 00800949fd.shtml https://learningnetwork.cisco.com/servlet/JiveServlet/download/5669-2461/Router%20on%20a%20Stick.pdf. 


Q42. - (Topic 2) 

What are two benefits of using a single OSPF area network design? (Choose two.) 

A. It is less CPU intensive for routers in the single area. 

B. It reduces the types of LSAs that are generated. 

C. It removes the need for virtual links. 

D. It increases LSA response times. 

E. It reduces the number of required OSPF neighbor adjacencies. 

Answer: B,C 

Explanation: 

OSPF uses a LSDB (link state database) and fills this with LSAs (link state advertisement). The link types are as follows: 

LSA Type 1:. Router LSA  

LSA Type 2:.. . . . . . . .  Network LSA  

LSA Type 3:. Summary LSA  

LSA Type 4:. Summary ASBR LSA  

LSA Type 5:. Autonomous system external LSA  

LSA Type 6:. Multicast OSPF LSA  

LSA Type 7:. Not-so-stubby area LSA  

LSA Type 8:. External attribute LSA for BGP  

If all routers are in the same area, then many of these LSA types (Summary ASBR LSA, external LSA, etc) will not be used and will not be generated by any router. 

All areas in an Open Shortest Path First (OSPF) autonomous system must be physically connected to the backbone area (Area 0). In some cases, where this is not possible, you can use a virtual link to connect to the backbone through a non-backbone area. You can also use virtual links to connect two parts of a partitioned backbone through a non-backbone area. The area through which you configure the virtual link, known as a transit area, must have full routing information. The transit area cannot be a stub area. Virtual links are not ideal and should really only be used for temporary network solutions or migrations. However, if all locations are in a single OSPF area this is not needed. 


Q43. - (Topic 2) 

What is the default maximum number of equal-cost paths that can be placed into the routing table of a Cisco OSPF router? 

A. 2 

B. 4 

C. 16 

D. unlimited 

Answer:

Explanation: 

4 is the default number of routes that OSPF will include in routing table if more than 4 equal cost routes exist for the same subnet. However, OSPF can include up to 16 equal cost routes in the routing table and perform load balancing amongst them. In order to configure this feature, you need to use the OSPF subcommand maximum-paths, i.e. maximum-paths 16. 


Q44. - (Topic 3) 

A network administrator needs to configure a serial link between the main office and a remote location. The router at the remote office is a non-Cisco router. How should the network administrator configure the serial interface of the main office router to make the connection? 

A. Main(config)# interface serial 0/0 Main(config-if)# ip address 172.16.1.1 255.255.255.252 Main(config-if)# no shut 

B. Main(config)# interface serial 0/0 Main(config-if)# ip address 172.16.1.1 255.255.255.252 Main(config-if)# encapsulation ppp Main(config-if)# no shut 

C. Main(config)# interface serial 0/0 Main(config-if)# ip address 172.16.1.1 255.255.255.252 Main(config-if)# encapsulation frame-relay Main(config-if)# authentication chap Main(config-if)# no shut 

D. Main(config)# interface serial 0/0 Main(config-if)#ip address 172.16.1.1 255.255.255.252 Main(config-if)#encapsulation ietf Main(config-if)# no shut 

Answer:

Explanation: 

Cisco High-Level Data Link Controller (HDLC) is the Cisco proprietary protocol for sending data over synchronous serial links using HDLC. So HDLC runs only in Cisco router. PPP is not proprietary protocol it's a open source every cisco router and non-cisco router understand the PPP protocol.So we need to configure the PPP protocol if connection is between cisco and non-cisco router. 


Q45. - (Topic 2) 

What OSPF command, when configured, will include all interfaces into area 0? 

A. network 0.0.0.0 255.255.255.255 area 0 

B. network 0.0.0.0 0.0.0.0 area 0 

C. network 255.255.255.255 0.0.0.0 area 0 

D. network all-interfaces area 0 

Answer:

Explanation: 

Example 3-1 displays OSPF with a process ID of 1 and places all interfaces configured with 

an IP address in area 0. The network command.network 0.0.0.0 255.255.255.255 area 0.dictates that you do not care (255.255.255.255) what the IP address is, but if an IP 

address is enabled on any interface, place it in area 0. 

Example 3-1.Configuring OSPF in a Single Area 

router ospf 1 network 0.0.0.0 255.255.255.255 area 0 Reference: http://www.ciscopress.com/articles/article.asp?p=26919&seqNum=3 


Q46. - (Topic 2) 

Refer to the exhibit. 

The company uses EIGRP as the routing protocol. What path will packets take from a host on 192.168.10.192/26 network to a host on the LAN attached to router R1? 

R3# show ip route Gateway of last resort is not set 192 168.20.0/24 is variably subnetted, 6 subnets, 2 masks D 192.168.20.64/26 [90/2195456] via 192.168.20.9, 00:03:31, Serial0/0 D 192.168.20.0/30 [90/2681856] via 192.168.20.9, 00:03:31, Serial0/0 C 192.168.20.4/30 is directly connected, Serial0/1 C 192.168.20.8/30 is directly connected, Serial0/0 

C 192.168.20.192/26 is directly connected, FastEthernet0/0 

D 192.168.20.128/26 [90/2195456] via 192.168.20.5,00:03:31, Serial0/1 

A. The path of the packets will be R3 to R2 to R1 

B. The path of the packets will be R3 to R1 to R2 

C. The path of the packets will be both R3 to R2 to R1 and R3 to R1 

D. The path of the packets will be R3 to R1 

Answer:

Explanation: 

http://www.orbitco-ccna-pastquestions.com/CCNA---EIGRP-Common-Question.php 

Looking at the output display above, the LAN attached to router R1 belongs to 192.168.20.64/26 subnet and learned this network via 192.168.20.9 which will be an IP address in 192.168.20.8/30 sub-network. This means that packets destined for 

192.168.20.64 will be routed from R3 to R1. 


Q47. - (Topic 3) 

Which Layer 2 protocol encapsulation type supports synchronous and asynchronous circuits and has built-in security mechanisms? 

A. HDLC 

B. PPP 

C. X.25 

D. Frame Relay 

Answer:

Explanation: 

High-Level Data Link Control (HDLC) - HDLC is the default encapsulation type on point-to-point, dedicated links, and circuit-switched connections. It is used typically when communicating between two Cisco devices. It is a bit-oriented synchronous data link layer protocol. Point-to-Point Protocol (PPP) - Provides router-to-router and host-to network connections over synchronous and asynchronous circuits. PPP was designed to work with several network layer protocols, such as IP, and IPX. PPP also has built in security mechanisms such as PAP and CHAP X.25/Link Access Procedure, Balanced (LAPB) - ITU-T standard that defines how connections between DTE and DCE are maintained for remote terminal access and computer communications in public data networks. X.25 specifies LAPB, a data line layer protocol. X.25 is a predecessor to Frame Relay. Frame Relay - Industry standard, switched data link layer protocol that handles multiple virtual circuits. It is a next-generation to X.25 that is streamlined to eliminate some of the time-consuming processes (such as error correction and flow control) that were employed in X.25. 


Q48. - (Topic 2) 

Which two are advantages of static routing when compared to dynamic routing? (Choose two.) 

A. Configuration complexity decreases as network size increases. 

B. Security increases because only the network administrator may change the routing table. 

C. Route summarization is computed automatically by the router. 

D. Routing tables adapt automatically to topology changes. 

E. An efficient algorithm is used to build routing tables, using automatic updates. 

F. Routing updates are automatically sent to neighbors. 

G. Routing traffic load is reduced when used in stub network links. 

Answer: B,G 

Explanation: 

When reading (or being lectured about) all the glorious details of dynamic routing protocols, it's hard not to come away with the impression that dynamic routing is always better than static routing. It's important to keep in mind that the primary duty of a dynamic routing protocol is to automatically detect and adapt to topological changes in the internetwork. The price of this "automation" is paid in bandwidth, security, and maybe queue space, in memory, and in processing time. A frequent objection to static routing is that it is hard to administer. This criticism may be true of medium to large topologies with many alternative routes, but it is certainly not true of small internetworks with few or no alternative routes. References: http://www.ciscopress.com/articles/article.asp?p=24090&seqNum=6 http://www.ciscopress.com/articles/article.asp?p=24090 


Q49. - (Topic 2) 

Refer to the exhibit. 

If the router Cisco returns the given output and has not had its router ID set manually, what value will OSPF use as its router ID? 

A. 192.168.1.1 

B. 172.16.1.1 

C. 1.1.1.1 

D. 2.2.2.2 

Answer:

Explanation: 

If a router-id is not configured manually in the OSPF routing process the router will automatically configure a router-id determined from the highest IP address of a logical interface (loopback interface) or the highest IP address of an active interface. If more than one loopback interfaces are configured, the router will compare the IP addresses of each of the interfaces and choose the highest IP address from the loopbacks. 


Q50. - (Topic 2) 

Refer to the exhibit. 

Host A pings interface S0/0 on router 3, what is the TTL value for that ping? 

A. 253 

B. 252 

C. 255 

D. 254 

Answer:

Explanation: 

From the CCNA ICND2 Exam book: “Routers decrement the TTL by 1 every time they forward a packet; if a router decrements the TTL to 0, it throws away the packet. This prevents packets from rotating forever.” I want to make it clear that before the router forwards a packet, the TTL is still remain the same. For example in the topology above, pings to S0/1 and S0/0 of Router 2 have the same TTL. 

The picture below shows TTL values for each interface of each router and for Host B. 

Notice that Host A initializes ICMP packet with a TTL of 255: