Question

In: Computer Science

On a network with an IP address of 158.234.28.72 and a subnet mask of 255.248.0.0 what...

On a network with an IP address of 158.234.28.72 and a subnet mask of 255.248.0.0 what is the network ID and the broadcast address? Show your calculations.

Solutions

Expert Solution

158.234.28.72:
------------------
Let's convert all octets to binary separately
Converting 158 to binary
Divide 158 successively by 2 until the quotient is 0
158/2 = 79, remainder is 0
79/2 = 39, remainder is 1
39/2 = 19, remainder is 1
19/2 = 9, remainder is 1
9/2 = 4, remainder is 1
4/2 = 2, remainder is 0
2/2 = 1, remainder is 0
1/2 = 0, remainder is 1
Read remainders from the bottom to top as 10011110
158 in binary is 10011110

Converting 234 to binary
Divide 234 successively by 2 until the quotient is 0
234/2 = 117, remainder is 0
117/2 = 58, remainder is 1
58/2 = 29, remainder is 0
29/2 = 14, remainder is 1
14/2 = 7, remainder is 0
7/2 = 3, remainder is 1
3/2 = 1, remainder is 1
1/2 = 0, remainder is 1
Read remainders from the bottom to top as 11101010
234 in binary is 11101010

Converting 28 to binary
Divide 28 successively by 2 until the quotient is 0
28/2 = 14, remainder is 0
14/2 = 7, remainder is 0
7/2 = 3, remainder is 1
3/2 = 1, remainder is 1
1/2 = 0, remainder is 1
Read remainders from the bottom to top as 11100
28 in binary is 00011100

Converting 72 to binary
Divide 72 successively by 2 until the quotient is 0
72/2 = 36, remainder is 0
36/2 = 18, remainder is 0
18/2 = 9, remainder is 0
9/2 = 4, remainder is 1
4/2 = 2, remainder is 0
2/2 = 1, remainder is 0
1/2 = 0, remainder is 1
Read remainders from the bottom to top as 1001000
72 in binary is 01001000

158.234.28.72 in binary notation is 10011110.11101010.00011100.01001000

255.248.0.0:
--------------------
Let's convert all octets to binary separately
Converting 255 to binary
Divide 255 successively by 2 until the quotient is 0
255/2 = 127, remainder is 1
127/2 = 63, remainder is 1
63/2 = 31, remainder is 1
31/2 = 15, remainder is 1
15/2 = 7, remainder is 1
7/2 = 3, remainder is 1
3/2 = 1, remainder is 1
1/2 = 0, remainder is 1
Read remainders from the bottom to top as 11111111
255 in binary is 11111111

Converting 248 to binary
Divide 248 successively by 2 until the quotient is 0
248/2 = 124, remainder is 0
124/2 = 62, remainder is 0
62/2 = 31, remainder is 0
31/2 = 15, remainder is 1
15/2 = 7, remainder is 1
7/2 = 3, remainder is 1
3/2 = 1, remainder is 1
1/2 = 0, remainder is 1
Read remainders from the bottom to top as 11111000
248 in binary is 11111000

0 in binary is 00000000
0 in binary is 00000000

so, 255.248.0.0 in binary notation is 11111111.11111000.00000000.00000000

first 13 bits in subnet mask 255.248.0.0 is 1.
so, for network ID, keep first 13 bits of 158.234.28.72 and set all remaining bits to 0.
so, network ID is 10011110.11101000.00000000.00000000
10011110.11101000.00000000.00000000:
----------------------------------------
Let's convert all octets to decimal separately
Converting 10011110 to decimal
=> 10011110
=> 1x2^7+0x2^6+0x2^5+1x2^4+1x2^3+1x2^2+1x2^1+0x2^0
=> 1x128+0x64+0x32+1x16+1x8+1x4+1x2+0x1
=> 128+0+0+16+8+4+2+0
=> 158
10011110 in decimal is 158

Converting 11101000 to decimal
=> 11101000
=> 1x2^7+1x2^6+1x2^5+0x2^4+1x2^3+0x2^2+0x2^1+0x2^0
=> 1x128+1x64+1x32+0x16+1x8+0x4+0x2+0x1
=> 128+64+32+0+8+0+0+0
=> 232
11101000 in decimal is 232

00000000 in decimal is 0
00000000 in decimal is 0

10011110.11101000.00000000.00000000 in binary notation is 158.232.0.0

so, for broadcast ID, keep first 13 bits of 158.234.28.72 and set all remaining bits to 1.
so, broadcast ID is 10011110.11101111.11111111.11111111
10011110.11101111.11111111.11111111:
---------------------------------------
Let's convert all octets to decimal separately
Converting 10011110 to decimal
=> 10011110
=> 1x2^7+0x2^6+0x2^5+1x2^4+1x2^3+1x2^2+1x2^1+0x2^0
=> 1x128+0x64+0x32+1x16+1x8+1x4+1x2+0x1
=> 128+0+0+16+8+4+2+0
=> 158
10011110 in decimal is 158

Converting 11101111 to decimal
=> 11101111
=> 1x2^7+1x2^6+1x2^5+0x2^4+1x2^3+1x2^2+1x2^1+1x2^0
=> 1x128+1x64+1x32+0x16+1x8+1x4+1x2+1x1
=> 128+64+32+0+8+4+2+1
=> 239
11101111 in decimal is 239

Converting 11111111 to decimal
=> 11111111
=> 1x2^7+1x2^6+1x2^5+1x2^4+1x2^3+1x2^2+1x2^1+1x2^0
=> 1x128+1x64+1x32+1x16+1x8+1x4+1x2+1x1
=> 128+64+32+16+8+4+2+1
=> 255
11111111 in decimal is 255

Converting 11111111 to decimal
=> 11111111
=> 1x2^7+1x2^6+1x2^5+1x2^4+1x2^3+1x2^2+1x2^1+1x2^0
=> 1x128+1x64+1x32+1x16+1x8+1x4+1x2+1x1
=> 128+64+32+16+8+4+2+1
=> 255
11111111 in decimal is 255

10011110.11101111.11111111.11111111 in binary notation is 158.239.255.255


network ID is:  158.232.0.0
broadcast ID is:    158.239.255.255

Related Solutions

What is the network address if given this IP address and the following subnet mask?  Please note...
What is the network address if given this IP address and the following subnet mask?  Please note that the network may be different if the subnet mask is different. IP address 178.47.188.176 How many network bits if the following subnet masks? 255.254.0.0 255.255.252.0 255.255.255.248    4. 255.128.0.0     
What is the range of IP addresses on a network if: A) IP: 192.168.1.1 Subnet mask...
What is the range of IP addresses on a network if: A) IP: 192.168.1.1 Subnet mask is: 255.255.255.0. B) 179.23.0.0/ 16 C) 10.0.0.0 Class A network.
Consider a router with the: IP address 192.168.1.254/26 Subnet mask: 255.255.255.192 Network Address: 192.168.1.192 Write the...
Consider a router with the: IP address 192.168.1.254/26 Subnet mask: 255.255.255.192 Network Address: 192.168.1.192 Write the relevant DHCP subnet configuration text for this network where the first 50 addresses will be dynamically allocated to hosts.
You notice a printer on your network has the IP address 198.75.12.34 and subnet mask 255.255.255.248....
You notice a printer on your network has the IP address 198.75.12.34 and subnet mask 255.255.255.248. What is the network address to which this printer belongs? A router interface on one of your subnets has the IP address 54.187.69.45 and prefix length /25. What would be the broadcast address used for this subnet?
IP Address: 37.124.67.99 Subnet Mask: 255.240.0.0 find Network address, Broadcast address, first valid host address, last...
IP Address: 37.124.67.99 Subnet Mask: 255.240.0.0 find Network address, Broadcast address, first valid host address, last valid host address and number of valid hosts in the network. show very clear steps for all the calculations.
11. Consider a router with the IP address 192.168.1.254/26: a) Indicate the subnet mask for the...
11. Consider a router with the IP address 192.168.1.254/26: a) Indicate the subnet mask for the above address. b) Demonstrate calculation of the network address (including binary and decimal values). c) Write the relevant DHCP subnet configuration text for this network where the first 50 addresses will be dynamically allocated to hosts.
Consider a router with the IP address 192.168.1.254/26: a) Indicate the subnet mask for the above...
Consider a router with the IP address 192.168.1.254/26: a) Indicate the subnet mask for the above address. b) Demonstrate calculation of the network address (including binary and decimal values). c) Write the relevant DHCP subnet configuration text for this network where the first 50 addresses will be dynamically allocated to hosts.
Given an IP address 138.112.25.60, with the mask 255.255.255.240: Calculate the network address and broadcast address...
Given an IP address 138.112.25.60, with the mask 255.255.255.240: Calculate the network address and broadcast address of the network it belongs to. For 138.112.25.47 and 38.112.25.49, which one is in the same network as 138.112.25.60 does, and which one is not. Show the necessary calculation steps and explanation.
Hello! Um, I don't understand the how to use the IP address and the subnet mask...
Hello! Um, I don't understand the how to use the IP address and the subnet mask to find Via/Next hop, Metric, or the interface aspects of the question.
You are given class C IP address 192.148.10.51 accompanied by a custom subnet mask of 255.255.255.240...
You are given class C IP address 192.148.10.51 accompanied by a custom subnet mask of 255.255.255.240 Find the following by showing working with explanation: i) How many subnets can be created? ii) How many hosts in each subnet can be created? iii) Write the range of useable IP Addresses in the first subnet. iv) Write the range of useable IP Addresses in the last subnet.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT