Analyzing IP Networks #2
For each Analyzing IP Networks post, you have several simple analysis tasks related to classful networks (that is, class A, B, and C networks.) Work on making this analysis automatic and second nature!
Videos: How to and More Practice
The video on the left teaches you how to analyze classful networks to determine the network class of the address, plus four key facts about the related class A, B, or C network. The other two videos give you more practice problems beyond this practice problem post.
The Problems
Each problem starts with a Dotted Decimal Notation (DDN) number. Your job:
- Determine the class (A, B, C, D, E, or none)
- If A, B, or C:
-
- Find the Network ID
- Find the Network Broadcast Address
- Find the numerically lowest and highest IP addresses that can be used by hosts in the network
Table 1 lists the five problems.
Table 1: Five Problems for Today’s Post
DDN Value | Class | |
1 | 9.9.9.9 | |
2 | 99.99.99.99 | |
3 | 199.199.199.199 | |
4 | 119.119.119.119 | |
5 | 229.229.229.229 |
Answers Below: Spoiler Alert
Class, Network ID, and Network Broadcast Address
The Network ID can be derived from the class A, B, or C DDN value by copying the network octets, and writing a 0 for the rest of the octets. Similarly, the network broadcast address can be found by using the same logic, but writing a 255 instead of 0 for the host octets. Table 2 shows the class for each of the five problems, along with the derived network ID and network broadcast address for each class A, B, or C address.
Table 2: Network IDs and Network Broadcast Addresses
DDN Value | Class | Network ID | Network Broadcast Address | |
1 | 9.9.9.9 | A | 9.0.0.0 | 9.255.255.255 |
2 | 99.99.99.99 | A | 99.0.0.0 | 99.255.255.255 |
3 | 199.199.199.199 | C | 199.199.199.0 | 199.199.199.255 |
4 | 119.119.119.119 | A | 119.0.0.0 | 119.255.255.255 |
5 | 229.229.229.229 | D | N/A | N/A |
Usable Host IP Addresses
To find the range of IP addresses that can be used by hosts in the (unsubnetted) classful network, just add 1 to the network ID and subtract 1 from the network broadcast address. Table 3 shows the results for these five problems.
Table 3: Ranges of Usable Addresses
Network ID | Lowest Usable Host Address | Highest Usable Host Address | Network Broadcast Address | |
1 | 9.0.0.0 | 9.0.0.1 | 9.255.255.254 | 9.255.255.255 |
2 | 99.0.0.0 | 99.0.0.1 | 99.255.255.254 | 99.255.255.255 |
3 | 199.199.199.0 | 199.199.199.1 | 199.199.199.254 | 199.199.199.255 |
4 | 119.0.0.0 | 119.0.0.1 | 119.255.255.254 | 119.255.255.255 |
5 | N/A | N/A | N/A | N/A |
This problem requires that you determine the IPv4 address class of a DDN number. To do that, you can compare the first octet value to the values in the following table.
First Octet Range | Class |
---|---|
1-126 | A |
128-191 | B |
192-223 | C |
224-239 | D |
240-255 | E |