aiotestking uk

100-105 Exam Questions - Online Test


100-105 Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

Q1. - (Topic 5) 

Refer to the exhibit. 

The junior network support staff provided the diagram as a recommended configuration for the first phase of a four-phase network expansion project. The entire network expansion will have over 1000 users on 14 network segments and has been allocated this IP address space. 

192.168.1.1 through 192.168.5.255 

192.168.100.1 through 192.168.100.255 

What are three problems with this design? (Choose three.) 

A. The AREA 1 IP address space is inadequate for the number of users. 

B. The AREA 3 IP address space is inadequate for the number of users. 

C. AREA 2 could use a mask of /25 to conserve IP address space. 

D. The network address space that is provided requires a single network-wide mask. 

E. The router-to-router connection is wasting address space. 

F. The broadcast domain in AREA 1 is too large for IP to function. 

Answer: A,C,E 

Explanation: 

The given IP addresses of areas 1 and 3 along with network masks of /24 cannot accommodate 500 users so are inadequate, while the area 2 is having over capacity so its network mask can be reduced to /25 to accommodate the only 60 users it has. 

Q2. CORRECT TEXT - (Topic 6) 

This topology contains 3 routers and 1 switch. Complete the topology. 

Drag the appropriate device icons to the labeled Device Drag the appropriate connections to the locations labeled Connections. Drag the appropriate IP addresses to the locations labeled IP address 

(Hint: use the given host addresses and Main router information) To remove a device or connection, drag it away from the topology. 

Use information gathered from the Main router to complete the configuration of any additional routers. 

No passwords are required to access the Main router. The config terminal command has been disabled for the HQ router. The router does not require any configuration. 

Configure each additional router with the following: 

Configure the interfaces with the correct IP address and enable the interfaces. 

Set the password to allow console access to consolepw 

Set the password to allow telnet access to telnetpw 

Set the password to allow privilege mode access to privpw 

Not E: Because routes are not being added to the configurations, you will not be able to ping through the internetwork. 

All devices have cable autosensing capabilities disabled. 

All hosts are PC’s 

Answer: Specify appropriate devices and drag them on the "Device" boxes For the device at the bottom-right box, we notice that it has 2 interfaces Fa0/2 and Fa0/4; moreover the link connects the PC on the right with the device on the bottom-right is a straight-through link -> it is a switch The question stated that this topology contains 3 routers and 1 switch -> two other devices are routers Place them on appropriate locations as following: (Host D and host E will be automatically added after placing two routers. Click on them to access neighboring routers) Specify appropriate connections between these devices: 

+

 The router on the left is connected with the Main router through FastEthernet interfaces: use a crossover cable 

+

 The router on the right is connected with the Main router through Serial interfaces: use a 

serial cable 

+

 The router on the right and the Switch: use a straight-through cable 

+

 The router on the left and the computer: use a crossover cable (To remember which type of cable you should use, follow these tips: 

-

To connect two serial interfaces of 2 routers we use serial cable 

-

To specify when we use crossover cable or straight-through cable, we should remember: Group 1: Router, Host, Server Group 2: Hub, Switch One device in group 1 + One device in group 2: use straight-through cable Two devices in the same group: use crossover cable For example, we use straight-through cable to connect switch to router, switch to host, hub to host, hub to server... and we use crossover cable to connect switch to switch, switch to hub, router to router, host to host.) Assign appropriate IP addresses for interfaces: From Main router, use show running-config command. 

 (Notice that you may see different IP addresses in the real CCNA exam, the ones shown above are just used for demonstration) 

From the output we learned that the ip address of Fa0/0 interface of the Main router is 

192.168.152.177/28. This address belongs to a subnetwork which has: 

Increment: 16 (/28 = 255.255.255.240 or 1111 1111.1111 1111.1111 1111.1111 0000) 

Network address: 192.168.152.176 (because 176 = 16 * 11 and 176 < 177) 

Broadcast address: 192.168.152.191 (because 191 = 176 + 16 - 1) 

And we can pick up an ip address from the list that belongs to this subnetwork: 

192.168.152.190 and assign it to the Fa0/0 interface the router on the left Use the same method for interface Serial0/0 with an ip address of 192.168.152.161 Increment: 16 Network address: 192.168.152.160 (because 160 = 16 * 10 and 160 < 161) Broadcast address: 192.168.152.175 (because 176 = 160 + 16 - 1) -> and we choose 192.168.152.174 for Serial0/0 interface of the router on the right Interface Fa0/1 of the router on the left IP (of the computer on the left) : 192.168.152.129/28 Increment: 16 Network address: 192.168.152.128 (because 128 = 16 * 8 and 128 < 129) Broadcast address: 192.168.152.143 (because 143 = 128 + 16 - 1) -> we choose 192.168.152.142 from the list Interface Fa0/0 of the router on the right IP (of the computer on the left) : 192.168.152.225/28 Increment: 16 Network address: 192.168.152.224 (because 224 = 16 * 14 and 224 < 225) Broadcast address: 192.168.152.239 (because 239 = 224 + 16 - 1) -> we choose 192.168.152.238 from the list Let's have a look at the picture below to summarize Configure two routers on the left and right with these commands: Router1 = router on the left Assign appropriate IP addresses to Fa0/0 & Fa0/1 interfaces: Router1>enable Router1#configure terminal Router1(config)#interface fa0/0 Router1(config-if)#ip address 192.168.152.190 255.255.255.240 Router1(config-if)#no shutdown Router1(config-if)#interface fa0/1 Router1(config-if)#ip address 192.168.152.142 255.255.255.240 Router1(config-if)#no shutdown Set passwords (configure on two routers) 

+

 Console password: Router1(config-if)#exit Router1(config)#line console 0 

Router1(config-line)#password consolepw Router1(config-line)#login Router1(config-line)#exit 

+

 Telnet password: Router1(config)#line vty 0 4 Router1(config-line)#password telnetpw Router1(config-line)#login Router1(config-line)#exit 

+

 Privilege mode password: Router1(config)#enable password privpw Save the configuration: Router1(config)#exit Router1#copy running-config startup-config Configure IP addresses of Router2 (router on the right) Router2>enable Router2#configure terminal Router2(config)#interface fa0/0 Router2(config-if)#ip address 192.168.152.238 255.255.255.240 Router2(config-if)#no shutdown Router2(config-if)#interface serial0/0 Router2(config-if)#ip address 192.168.152.174 255.255.255.240 Router2(config-if)#no shutdown Then set the console, telnet and privilege mode passwords for Router2 as we did for Router1, remember to save the configuration when you finished. 

Q3. - (Topic 1) 

To what type of port would a cable with a DB-60 connector attach? 

A. Serial port 

B. Console port 

C. Ethernet port 

D. Fibre optic port 

Answer:

Explanation: 

Serial Connection 

cl_3_dte_male 

cl_2_dce 

The picture on the left shows a V.35 DTE cable with a male DB60 connector and a male standard 34-pin Winchester-type connector. The right picture shows a V.35 DCE serial cable with a male DB60 connector and a female 34-pin Winchester-type connector. As you probably guessed already, the male connector of the DTE cable is attached to the DCE cable's female connector, this is depicted in the picture below. This is known as a back-to-back connection, and 'simulates' a WAN link. In a real world setup, the DTE cable's male connector typically connects to a port on a CSU/DSU provided by a service provider (i.e. telco), which in turn connects to a CSU/DSU at another location, thru a T1 link for example. 

The DB60 connector connects to a Serial interface on a router. 

cl_4_malefemale Reference: http://www.techexams.net/techlabs/ccna/lab_hardware.shtml 

Q4. - (Topic 1) 

Refer to the exhibit. 

SwitchA receives the frame with the addressing shown in the exhibit. According to the command output also shown in the exhibit, how will SwitchA handle this frame? 

A. It will drop the frame. 

B. It will forward the frame out port Fa0/6 only. 

C. It will forward the frame out port Fa0/3 only. 

D. It will flood the frame out all ports. 

E. It will flood the frame out all ports except Fa0/3. 

Answer:

Explanation: 

When frame receives the frame, it checks the source address on MAC table if MAC address found in MAC table it tries to forward if not in MAC table adds the Address on MAC table. After checking the source address, it checks the destination address on MAC table, if MAC address found on MAC table it forwards to proper ports otherwise floods on all ports except the source port. 

Q5. - (Topic 1) 

Refer to the exhibit. 

Which option describes how SwitchA will handle the frame just received? 

A. It will drop the frame. 

B. It will forward the frame out of port Fa0/3 only. 

C. It will flood the frame out all ports. 

D. It will flood the frame out of all the ports except Fa0/3. 

Answer:

Q6. - (Topic 5) 

Refer to the exhibit. 

Host A can communicate with Host B but not with Hosts C or D. How can the network administrator solve this problem? 

A. Configure Hosts C and D with IP addresses in the 192.168.2.0 network. 

B. Install a router and configure a route to route between VLANs 2 and 3. 

C. Install a second switch and put Hosts C and D on that switch while Hosts A and B remain on the original switch. 

D. Enable the VLAN trunking protocol on the switch. 

Answer:

Explanation: 

Two VLANs require a router in between otherwise they cannot communicate. Different VLANs and different IP subnets need a router to route between them. 

Q7. - (Topic 1) 

Which OSI layer header contains the address of a destination host that is on another network? 

A. application 

B. session 

C. transport 

D. network 

E. data link 

F. physical 

Answer:

Explanation: 

Only network address contains this information. To transmit the packets the sender uses network address and datalink address. But the layer 2 address represents just the address of the next hop device on the way to the sender. It is changed on each hop. Network address remains the same. 

Q8. - (Topic 2) 

Refer to the exhibit. 

How many collision domains are shown? 

A. one 

B. two 

C. three 

D. four 

E. six 

F. twelve 

Answer:

Explanation: 

Hubs create single collision and broadcast domains, so in this case there will be a single collision domain for each of the two hubs. 

Q9. - (Topic 5) 

A company has placed a networked PC in a lobby so guests can have access to the corporate directory. 

A security concern is that someone will disconnect the directory PC and re-connect their laptop computer and have access to the corporate network. For the port servicing the lobby, which three configuration steps should be performed on the switch to prevent this? (Choose three.) 

A. Enable port security. 

B. Create the port as a trunk port. 

C. Create the port as an access port. 

D. Create the port as a protected port. 

E. Set the port security aging time to 0. 

F. Statically assign the MAC address to the address table. 

G. Configure the switch to discover new MAC addresses after a set time of inactivity. 

Answer: A,C,F 

Explanation: 

If port security is enabled and the port is only designated as access port, and finally static MAC address is assigned, it ensures that even if a physical connection is done by taking out the directory PC and inserting personal laptop or device, the connection cannot be made to the corporate network, hence ensuring safety. 

Q10. - (Topic 3) 

Refer to the exhibit. 

Which command would you use to configure a static route on Router1 to network 192.168.202.0/24 with a nondefault administrative distance? 

A. router1(config)#ip route 1 192.168.201.1 255.255.255.0 192.168.201.2 

B. router1(config)#ip route 192.168.202.0 255.255.255.0 192.168.201.2 1 

C. router1(config)#ip route 5 192.168.202.0 255.255.255.0 192.168.201.2 

D. router1(config)#ip route 192.168.202.0 255.255.255.0 192.168.201.2 5 

Answer:

Explanation: 

The default AD for a static route is 1. To change this, configure a different value to be used as the AD at the very end of the “ip route” statement.