Question

In: Computer Science

find the broadcast address for 10.248.139.232 with mask 255.255.255.252

find the broadcast address for 10.248.139.232 with mask 255.255.255.252

Solutions

Expert Solution

Answer:
--------
10.248.139.235

Explanation:
-------------
IP Address: 10.248.139.232
----------------------------------------
Let's first convert this into binary format
10.248.139.232
Let's convert all octets to binary separately
Converting 10 to binary
Divide 10 successively by 2 until the quotient is 0
   > 10/2 = 5, remainder is 0
   > 5/2 = 2, remainder is 1
   > 2/2 = 1, remainder is 0
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 1010
So, 10 of decimal is 1010 in binary
10 in binary is 00001010

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
So, 248 of decimal is 11111000 in binary
248 in binary is 11111000

Converting 139 to binary
Divide 139 successively by 2 until the quotient is 0
   > 139/2 = 69, remainder is 1
   > 69/2 = 34, remainder is 1
   > 34/2 = 17, remainder is 0
   > 17/2 = 8, remainder is 1
   > 8/2 = 4, remainder is 0
   > 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 10001011
So, 139 of decimal is 10001011 in binary
139 in binary is 10001011

Converting 232 to binary
Divide 232 successively by 2 until the quotient is 0
   > 232/2 = 116, remainder is 0
   > 116/2 = 58, remainder is 0
   > 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 11101000
So, 232 of decimal is 11101000 in binary
232 in binary is 11101000

=====================================================================================
||    10.248.139.232 in binary notation is 00001010.11111000.10001011.11101000    ||
=====================================================================================

Subnet address: 255.255.255.252
----------------------------------------
Let's convert this into binary format
255.255.255.252
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
So, 255 of decimal is 11111111 in binary
255 in binary is 11111111

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
So, 255 of decimal is 11111111 in binary
255 in binary is 11111111

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
So, 255 of decimal is 11111111 in binary
255 in binary is 11111111

Converting 252 to binary
Divide 252 successively by 2 until the quotient is 0
   > 252/2 = 126, remainder is 0
   > 126/2 = 63, remainder is 0
   > 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 11111100
So, 252 of decimal is 11111100 in binary
252 in binary is 11111100

======================================================================================
||    255.255.255.252 in binary notation is 11111111.11111111.11111111.11111100    ||
======================================================================================

Remove all dots to form 11111111111111111111111111111100
Remove all 0's from the right side to form 111111111111111111111111111111
Number of 1's in this is 30
so, Subnet mask is /30

For Calculating broadcast ID, keep first 30 bits of 00001010.11111000.10001011.11101000 and set all remaining bits to 1.
so, broadcast ID in binary is 00001010.11111000.10001011.11101011
00001010.11111000.10001011.11101011:
----------------------------------------
00001010.11111000.10001011.11101011
Let's convert all octets to decimal separately
Converting 00001010 to decimal
Converting 00001010 to decimal
00001010
=> 0x2^7+0x2^6+0x2^5+0x2^4+1x2^3+0x2^2+1x2^1+0x2^0
=> 0x128+0x64+0x32+0x16+1x8+0x4+1x2+0x1
=> 0+0+0+0+8+0+2+0
=> 10
00001010 in decimal is 10

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

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

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

======================================================================================
||    00001010.11111000.10001011.11101011 in decimal notation is 10.248.139.235    ||
======================================================================================
===============================================
||    So, broadcast ID is 10.248.139.235    ||
===============================================



Related Solutions

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.
IP address: 158.234.28.72 Subnet Mask: 255.248.0.0 Find Network Address and Broadcast address. Provide all necessary steps.
IP address: 158.234.28.72 Subnet Mask: 255.248.0.0 Find Network Address and Broadcast address. Provide all necessary steps.
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.
Find the network address, the direct broadcast address, and the number of addresses in a block;...
Find the network address, the direct broadcast address, and the number of addresses in a block; if one of the addresses in this block is 175.120.240.17/19
Find the network ip and broadcast ip of the ip address: 192.168.225.212/27
Find the network ip and broadcast ip of the ip address: 192.168.225.212/27
If the host address is 7.7.10.1\19 what is the broadcast address?
If the host address is 7.7.10.1\19 what is the broadcast address?
Given an IP address and mask of 192.168.0.0 /24 (address / mask), design an IP addressing...
Given an IP address and mask of 192.168.0.0 /24 (address / mask), design an IP addressing scheme that satisfies the following requirements. Network address/mask and the number of hosts for Subnets A and B will be provided by your instructor. Subnet Number of Hosts Subnet A 55 Subnet B 25 The 0th subnet is used. No subnet calculators may be used. All work must be shown on the other side of this page. Subnet A Specification Student Input Points Number...
Given an IP address of 220.84.9.123 and a subnet mask of 255.255.255.240 Write down the address...
Given an IP address of 220.84.9.123 and a subnet mask of 255.255.255.240 Write down the address of the network, show your calculation. Write also the broadcast address 2. On a network with an IP address of 133.133.133.13 and a subnet mask of 255.255.248.0 what is the network ID?  Show your calculation.  Write also the broadcast address On a Class C network, you have a subnet mask of 255.255.255.192.   How many hosts per subnet do you have? On how many subnets was divided...
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     
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.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT