retagged by
254 views
1 votes
1 votes

Consider set of four $/24$ IP network addresses as follow as-
$$
\begin{aligned}
& 212.56 .146 .0 / 24 \\
& 212.56 .147 .0 / 24 \\
& 212.56 .148 .0 / 24 \\
& 212.56 .149 .0 / 24
\end{aligned}
$$
Suppose we want to do address aggregation and we are not allowed to include any extra address except the address in the above four networks.

Which of the following prefixes in CIDR notation can be collectively used to correctly aggregate all of the subnets in the routing table?

  1. $212.56 .146 .0 / 23$
  2. $222.56 .144 .0 / 22$
  3. $212.56 .148 .0 / 23$
  4. $222.56 .147 .0 / 23$
retagged by

1 Answer

1 votes
1 votes
- List each address in binary format and determine the common prefix for all of the addresses:
$$
\begin{aligned}
& 212.56 .146 .0 / 24:\;\;11010100.00111000 .10010010 .00000000 \\
& 212.56 .147 .0 / 24:\;\;11010100.00111000 .10010011 .00000000 \\
& 212.56 .148 .0 / 24:\;\;11010100.00111000 .10010100 .00000000 \\
& 212.56 .149 .0 / 24:\;\;11010100.00111000 .10010101 .00000000
\end{aligned}
$$
- Note that this set of four $/ 24 \mathrm{~s}$ cannot be summarized as a single $/ 23$.
$$
\begin{aligned}
& 212.56 .146 .0 / 23:\;\;11010100.00111000 .10010010 .00000000 \\
& 212.56 .148 .0 / 23:\;\;11010100.00111000 .10010100 .00000000
\end{aligned}
$$
- The CIDR aggregation is:
$$
\begin{aligned}
& 212.56 .146 .0 / 23 \\
& 212.56 .148 .0 / 23
\end{aligned}
$$
Note that if two $/ 23 \mathrm{~s}$ are to be aggregated into a $/ 22$, then both $/ 23 \mathrm{~s}$ must fall within a single $/ 22$ block. Since each of the two $/ 23 \mathrm{~s}$ is a member of a different $/ 22$ block, they cannot be aggregated into a single $/ 22$ (even though they are consecutive). They could be aggregated into $222.56.144/21,$ but this aggregation would include four network numbers that were not part of the original allocation. Hence, the smallest possible aggregate is two $/ 23 \mathrm{~s}$.
Answer:

Related questions

113
views
1 answers
1 votes
GO Classes asked Apr 30, 2023
113 views
The process of subnetting refers to what?Stealing bits from the network portion of the address to create more sub networksStealing bits from the subnet ... networksStealing bits from the inverse mask in order to create more sub networks
178
views
1 answers
1 votes
GO Classes asked Apr 30, 2023
178 views
Consider the given statements below about TCP -Host $\text{A}$ is sending a large file to host $\text{B}$ over a TCP connection. Assume host $\text{B}$ has no data ... is/are true?Only $a$ is true$a, b$ are trueAll are trueOnly $c$ is true
194
views
1 answers
1 votes
GO Classes asked Apr 30, 2023
194 views
Let $\mathrm{R}(a, b, c, d)$ ... (r)$\prod_{a, c}(r)$\prod_{a, b}(r)$\prod_{a, b, d}(r)$
151
views
1 answers
1 votes
GO Classes asked Apr 30, 2023
151 views
Given the $\mathrm{E} / \mathrm{R}$ diagram belowWhich of the following relations appear in the relational model representation of the diagram?Courses(CID, title)Students(SID, name)Students(SID, name, CID)Enroll(SID, CID, grade)