Skip to main content

Drag & Drop (IP Address)

A dental firm is redesigning the network that connects its three locations. The administrator gave the networking team 192.168.164.0 to use for addressing the entire network. After subnetting the address, the team is ready to assign the addresses. The administrator plans to configure ip subnet-zero and use RIP v2 as the routing protocol. As a member of the networking team, you must address the network and at the same time conserver unused addresses for future growth. With those goals in mind, drag the host addresses on the left to the correct router interface. Once of the routers is partially configured. Move your mouse over a router to view its configuration. Not all of the host addresses on the left are necessary.
DD1
How to Find?
Step 1: Find the Number of Hosts for each subnet mask.
Trust me! If you practice and practice, then the below formula will never go out of your head.
Network Bits Host Bits Formula Max. no. of Hosts
25 7 27-2 126 hosts
26 6 26-2 62 hosts
27 5 25-2 30 hosts
28 4 24-2 14 hosts
29 3 23-2 6 hosts
30 2 22-2 2 hosts


Step 2: Find the number of hosts and appropriate Network bits
Hosts Suitable place Network Bits Answer
11 hosts 14 hosts 28 192.168.164.166 /28
16 hosts 30 hosts 27 192.168.164.149 /27
6 hosts 6 hosts 29 192.168.164.178 /29


Step 3: Now the Serial Interface

We need only 2 IP address for Point-to-point Connection. Then suitable Network Bit were “30”.
But we have 2 IP addresses that have “/30”, 192.168.164.189 /30 and 192.168.164.188 /30.

Hint for Exam : The answer is the one that has ODD number in fourth octet. (Meaning .189)

Here goes the explanation:

Network Bits Subnet Mask
30 255.255.255.252


Binary for fourth part of the Subnet Mask (252) is 11111100 (6 1’s & 2 0’s)

If we convert 188 and 189 into binary format we will get

188 10111100

189
10111101


Check last 2 bits of 188 and 189

188 = 00 > Surely Network Address (Host bits were 0’s)
189 = 01 > Surely Assignable IP Address

DD2

Comments

  1. U SAID THE admin used ip subnet-zero which means is the
    188 10111100 is the answer if ip subent zero is not used ur answer would be correct if am not wrong

    ReplyDelete

Post a Comment

Popular posts from this blog

Cisco Packet Tracer Multi User Connection

Multiuser communication allows multiple point-to-point (peer) connections between multiple instances of Packet Tracer. By allowing communication between Packet Tracer instances, a new door has been opened to a fun, interactive, social, collaborative, and competitive learning environment. Instructors will now be able to create a variety of activities for students to learn in groups that will facilitate greater social interaction between students. Students will benefit from this environment by working together to solve problems and share ideas. Both students and teachers should take full advantage that Multiuser will offer in their learning environment. Technical Information Communicates between instances using PTMP. PTMP is TCP based. By default, uses TCP port 38000, is customizable, and each new instances on the same PC will use the next available port. On by default. UPnP will attempt to establish port forwarding to facilitate home networks. All network co...

Access Control List (ACL) Simlet

An administrator is trying to ping and telnet from Switch to Router with the results shown below: For this question we only need to use the show running-config command to answer all the questions below: Router>enable Router#show running-config   Question 1 Which will fix the issue and allow ONLY ping to work while keeping telnet disabled? A. Correctly assign an IP address to interface fa0/1 B. Change the ip access-group command on fa0/0 from “in” to “out” C. Remove access-group 106 in from interface fa0/0 and add access-group 115 in. D. Remove access-group 102 out from interface s0/0/0 and add access-group 114 in E. Remove access-group 106 in from interface fa0/0 and add access-group 104 in Answer : E Explanation: The question was not about FTP so skip line #1 and line #2. The line #3 denies telnet traffic and line #4 permits icmp-echo traffic. L...

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

Refer to the exhibit. Host A pings interface S0/0 on router 3. What is the TTL value for that ping? A. 252 B. 253 C. 254 D. 255 Answer : B Explanation: The TTL or Time-To-Live gives you an indication of the number of routers between the source and destination. The TTL is used to prevent an IP packet from looping inside an IP network and causing a network meltdown. The initial TTL packet value for an IP packet is 255 and then it is decremented by 1 each time it encounters a router. When this value reaches 0, the packet is discarded by a router. The TTL value is contained in each IP packet including ICMP packets. The TTL value given by the ping command is in fact the TTL value of an echo_response packet. By default, Windows will decrease the TTL by 128 and Ubuntu Linux by 192. The above the exact topology of this questions. I used 10.0.0.1 for Host A’s IP address and 12.0.0.2 for R3 S0/0’s IP address. All router has been config...