It is more faster and easier to pass the Cisco ccna 200 105 exam by using Certified Cisco Interconnecting Cisco Networking Devices Part 2 (ICND2 v3.0) questuins and answers. Immediate access to the Updated 200 105 icnd2 Exam and find the same core area icnd2 200 105 questions with professionally verified answers, then PASS your exam with a high score now.


2026 New 200-105 Exam Dumps with PDF and VCE Free: https://www.2passeasy.com/dumps/200-105/

Q1. - (Topic 1) 

Refer to the exhibit. 

Each of these four switches has been configured with a hostname, as well as being configured to run RSTP. No other configuration changes have been made. Which three of these show the correct RSTP port roles for the indicated switches and interfaces? (Choose three.) 

A. SwitchA, Fa0/2, designated 

B. SwitchA, Fa0/1, root 

C. SwitchB, Gi0/2, root 

D. SwitchB, Gi0/1, designated 

E. SwitchC, Fa0/2, root 

F. SwitchD, Gi0/2, root 

Answer: A,B,F 

Explanation: 

The question says "no other configuration changes have been made" so we can 

understand these switches have the same bridge priority. SwitchC has lowest MAC 

address so, it will become root bridge and 2 of its ports (Fa0/1 & Fa0/2) will be designated 

ports (DP). Because SwitchC is the root bridge the 2 ports nearest SwitchC on SwitchA 

(Fa0/1) and SwitchD (Gi0/2) will be root ports (RP) -> B and F are correct. 

SwitchB must have a root port so which port will it choose? To answer this question we 

need to know about STP cost and port cost. 

In general, "cost" is calculated based on bandwidth of the link. The higher the bandwidth on 

a link, the lower the value of its cost. Below are the cost values you should memorize: 

Link speed Cost SwitchB will choose the interface with lower cost to the root bridge as the root port so we must calculate the cost on interface Gi0/1 & Gi0/2 of SwitchB to the root bridge. This can be calculated from the "cost to the root bridge" of each switch because a switch always advertises its cost to the root bridge in its BPDU. The receiving switch will add its local port cost value to the cost in the BPDU. SwitchC advertises its cost to the root bridge with a value of 0. Switch D adds 4 (the cost value of 1Gbps link) and advertises this value (4) to SwitchB. SwitchB adds another 4 and learns that it can reach SwitchC via Gi0/1 port with a total cost of 8. The same process happens for SwitchA and SwitchB learns that it can reach SwitchC via Gi0/2 with a total cost of 23 -> Switch B chooses Gi0/1 as its root port. Now our last task is to identify the port roles of the ports between SwitchA & SwitchB. It is rather easy as the MAC address of SwitchA is lower than that of SwitchB so Fa0/2 of SwitchA will be designated port while Gi0/2 of SwitchB will be alternative port. 

Q2. - (Topic 2) 

What is the default administrative distance of OSPF? 

A. 90 

B. 100 

C. 110 

D. 120 

Answer:

Explanation: 

Default Distance Value Table This table lists the administrative distance default values of the protocols that Cisco supports: 

Q3. - (Topic 2) 

What are two enhancements that OSPFv3 supports over OSPFv2? (Choose two.) 

A. It requires the use of ARP. 

B. It can support multiple IPv6 subnets on a single link. 

C. It supports up to 2 instances of OSPFv3 over a common link. 

D. It routes over links rather than over networks. 

Answer: B,D Explanation: 

Here is a list of the differences between OSPFv2 and OSPFv3: 

They use different address families (OSPFv2 is for IPv4-only, OSPFv3 can be used for IPv6-only or both protocols OSPFv3 introduces new LSA types OSPFv3 has different packet format OSPFv3 uses different flooding scope bits (U/S2/S1) OSPFv3 adjacencies are formed over link-local IPv6 communications OSPFv3 runs per-link rather than per-subnet OSPFv3 supports multiple instances on a single link, Interfaces can have multiple IPv6 addresses OSPFv3 uses multicast addresses FF02::5 (all OSPF routers), FF02::6 (all OSPF DRs) OSPFv3 Neighbor Authentication done with IPsec (AH) OSPFv2 Router ID (RID) must be manually configured, still a 32-bit number 

Reference: http://www.networkworld.com/article/2225270/cisco-subnet/ospfv3-for-ipv4-and-ipv6.html 

Q4. - (Topic 2) 

Which statement describes an EIGRP feasible successor route? 

A. A primary route, added to the routing table 

B. A backup route, added to the routing table 

C. A primary route, added to the topology table 

D. A backup route, added to the topology table 

Answer:

Explanation: 

Two terms that appear often in the EIGRP world are "successor" and "feasible successor". A successor is the route with the best metric to reach a destination. That route is stored in the routing table. A feasible successor is a backup path to reach that same destination that can be used immediately if the successor route fails. These backup routes are stored in the topology table. 

Reference: http://study-ccna.com/eigrp-overview 

Q5. - (Topic 3) 

It has become necessary to configure an existing serial interface to accept a second Frame Relay virtual circuit. Which of the following are required to solve this? (Choose three) 

A. configure static frame relay map entries for each subinterface network. 

B. remove the ip address from the physical interface 

C. create the virtual interfaces with the interface command 

D. configure each subinterface with its own IP address 

E. disable split horizon to prevent routing loops between the subinterface networks 

F. encapsulate the physical interface with multipoint PPP 

Answer: B,C,D 

Explanation: 

How To Configure Frame Relay Subinterfaces http://www.orbit-computer-solutions.com/How-To-Configure-Frame-Relay-Subinterfaces.php 

Step to configure Frame Relay subinterfaces on a physical interface: 

1. Remove any network layer address (IP) assigned to the physical interface. If the physical interface has an address, frames are not received by the local subinterfaces. 

2. Configure Frame Relay encapsulation on the physical interface using the encapsulation frame-relay command. 

3. For each of the defined PVCs, create a logical subinterface. Specify the port number, followed by a period (.) and the subinterface number. To make troubleshooting easier, it is suggested that the subinterface number matches the DLCI number. 

4. Configure an IP address for the interface and set the bandwidth. 

5. Configure the local DLCI on the subinterface using the frame-relay interface-dlci command. Configuration Example: R1>enable R1#configure terminal R1(config)#interface serial 0/0/0 R1(config-if)#no ip address R1(config-if)#encapsulation frame-relay R1(config-if)#no shutdown R1(config-if)#exit R1(config-subif)#interface serial 0/0/0.102 point-to-point R1(config-subif)#ip address 192.168.1.245 255.255.255.252 R1(config-subif)#frame-relay interface-dlci 102 R1(config-subif)#end R1#copy running-config startup-config 

Q6. - (Topic 2) 

Refer to the exhibit. 

The network associate is configuring OSPF on the Core router. All the connections to the branches should be participating in OSPF. The link to the ISP should NOT participate in OSPF and should only be advertised as the default route. What set of commands will properly configure the Core router? 

A. Core(config-router)# default-information originate Core(config-router)# network 10.0.0.0 0.255.255.255 area 0 Core(config-router)# exit Core(config)# ip route 0.0.0.0 0.0.0.0 10.10.2.14 

B. Core(config-router)# default-information originate Core(config-router)# network 10.10.2.13 0.0.0.242 area 0 Core(config-router)# exit Core(config)# ip route 0.0.0.0 0.0.0.0 10.10.2.14 

C. Core(config-router)# default-information originate Core(config-router)# network 10.10.2.16 0.0.0.15 area 0 Core(config-router)# exit Core(config)# ip route 0.0.0.0 0.0.0.0 10.10.2.14 

D. Core(config-router)# default-information originate Core(config-router)# network 10.10.2.32 0.0.0.31 area 0 Core(config-router)# exit Core(config)# ip route 0.0.0.0 0.0.0.0 10.10.2.14 

Answer:

Explanation: 

There are two ways to inject a default route into a normal area.1. If the ASBR already has the default route in its routing table, you can advertise theexisting 0.0.0.0/0 into the OSPF domain with the default-information originate router configuration command.2. If the ASBR doesn’t have a default route, you can add the keyword always to the default-information originate command (default-information originate always).This command will advertise a default route into the OSPF domain, regardless of whether it has a route to 0.0.0.0. Another benefit of adding always keyword is that it can add stability to the internetwork. For example, if the ASBR is learning a default route from another routing domain such as RIP and this route is flapping, then without the always keyword, each time the route flaps, the ASBR will send a new Type 5 LSA into the OSPF domain causing some instability inside the OSPF domain. With the always keyword, the ASBR will advertise the default inside the OSPF domain always, In the example shown here, only choice C is correct as the wildcard mask correctly specifies the 10.10.2.16 0.0.0.15 networks, which include all IP addresses in the 10.10.2.16-10.10.2.31 range. In this question we were told that the ISP link should NOT be configured for OSPF, making choice A incorrect. http://www.cisco.com/en/US/tech/tk365/technologies_configuration_example09186a00801 ec9f0.shtml 

Q7. - (Topic 3) 

Refer to the exhibit. 

A network associate has configured OSPF with the command: City(config-router)# network 192.168.12.64 0.0.0.63 area 0 After completing the configuration, the associate discovers that not all the interfaces are participating in OSPF. Which three of the interfaces shown in the exhibit will participate in OSPF according to this configuration statement? (Choose three.) 

A. FastEthernet0 /0 

B. FastEthernet0 /1 

C. Serial0/0 

D. Serial0/1.102 

E. Serial0/1.103 

F. Serial0/1.104 

Answer: B,C,D 

Explanation: 

The “network 192.168.12.64 0.0.0.63 equals to network 192.168.12.64/26. This network has:Increment: 64 (/26= 1111 1111.1111 1111.1111 1111.1100 0000)Network address: 

192.168.12.64 Broadcast address: 192.168.12.127Therefore all interface in the range of this network will join OSPF - B C D are correct. 

Q8. - (Topic 3) 

Which two options are valid WAN connectivity methods? (Choose two.) 

A. PPP 

B. WAP 

C. DSL 

D. L2TPv3 

E. Ethernet 

Answer: A,C 

Explanation: 

On each WAN connection, data is encapsulated into frames before itcrosses the WAN link. The following are typical WAN protocols:1. High-level Data Link Control (HDLC): The Cisco default encapsulation type onpoint-to-point connections, dedicated links, and circuit-switches connections.2. PPP: Provides router-to-router and host-to-network connections over synchronous andasynchronous circuits. PPP was designed to work with several network layer protocols,including IP.3. Frame-relay: A successor to X.25. This protocol is an industry-standard, switchesdata-link layer protocol that handles multiple virtual circuits 

http://en.wikipedia.org/wiki/Wide_area_network 

Q9. - (Topic 3) 

What can be done to Frame Relay to resolve split-horizon issues?(Choose two.) 

A. Disable Inverse ARP. 

B. Create a full-mesh topology. 

C. Develop multipoint subinterfaces. 

D. Configure point-to-point subinterfaces. 

E. Remove the broadcast keyword from the frame-relay map command. 

Answer: B,D 

Explanation: 

IP split horizon checking is disabled by default for Frame Relay encapsulation to allow routing updates to go in and out of the same interface. An exception is the Enhanced Interior Gateway Routing Protocol (EIGRP) for which split horizon must be explicitly disabled. Certain protocols such as AppleTalk, transparent bridging, and Internetwork Packet Exchange (IPX) cannot be supported on partially meshed networks because they require split horizon to be enabled (a packet received on an interface cannot be transmitted over the same interface, even if the packet is received and transmitted on different virtual circuits). Configuring Frame Relay subinterfaces ensures that a single physical interface is treated as multiple virtual interfaces. This capability allows you to overcome split horizon rules so packets received on one virtual interface can be forwarded to another virtual interface, even if they are configured on the same physical interface. 

Q10. - (Topic 3) 

The command frame-relay map ip 10.121.16.8 102 broadcast was entered on the router. Which of the following statements is true concerning this command? 

A. This command should be executed from the global configuration mode. 

B. The IP address 10.121.16.8 is the local router port used to forward data. 

C. 102 is the remote DLCI that will receive the information. 

D. This command is required for all Frame Relay configurations. 

E. The broadcast option allows packets, such as RIP updates, to be forwarded across the PVC. 

Answer:

Explanation: 

The command frame-relay map ip 10.121.16.8 102 broadcast means to map the remote IP 

10.121.16.8 to the local DLCI 102. When the “broadcast” keyword is included, it turns Frame Relay network as a broadcast network, which can forward broadcasts.