Question

Given the IP address and subnet mask 214.20.1.15/255.255.255.192 (/26) Whats the subnet ip range, network ID,...

Given the IP address and subnet mask 214.20.1.15/255.255.255.192 (/26)

Whats the subnet ip range, network ID, broadcast address, and number of available IPs in the subnet

Homework Answers

Answer #1

subnet ip range:            214.20.1.1 to 214.20.1.62
network ID:                 214.20.1.0
broadcast address:          214.20.1.63
number of available IPs:    62

Explanation:
-------------
IP Address: 214.20.1.15
----------------------------------------
Let's first convert this into binary format
214.20.1.15
Let's convert all octets to binary separately
Converting 214 to binary
Divide 214 successively by 2 until the quotient is 0
   > 214/2 = 107, remainder is 0
   > 107/2 = 53, remainder is 1
   > 53/2 = 26, remainder is 1
   > 26/2 = 13, remainder is 0
   > 13/2 = 6, remainder is 1
   > 6/2 = 3, remainder is 0
   > 3/2 = 1, remainder is 1
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 11010110
So, 214 of decimal is 11010110 in binary
214 in binary is 11010110

Converting 20 to binary
Divide 20 successively by 2 until the quotient is 0
   > 20/2 = 10, remainder 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 10100
So, 20 of decimal is 10100 in binary
20 in binary is 00010100

Converting 1 to binary
Divide 1 successively by 2 until the quotient is 0
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 1
So, 1 of decimal is 1 in binary
1 in binary is 00000001

Converting 15 to binary
Divide 15 successively by 2 until the quotient is 0
   > 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 1111
So, 15 of decimal is 1111 in binary
15 in binary is 00001111

==================================================================================
||    214.20.1.15 in binary notation is 11010110.00010100.00000001.00001111    ||
==================================================================================

Subnet address: 255.255.255.192
----------------------------------------
Let's convert this into binary format
255.255.255.192
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 192 to binary
Divide 192 successively by 2 until the quotient is 0
   > 192/2 = 96, remainder is 0
   > 96/2 = 48, remainder is 0
   > 48/2 = 24, remainder is 0
   > 24/2 = 12, remainder is 0
   > 12/2 = 6, remainder is 0
   > 6/2 = 3, remainder is 0
   > 3/2 = 1, remainder is 1
   > 1/2 = 0, remainder is 1
Read remainders from the bottom to top as 11000000
So, 192 of decimal is 11000000 in binary
192 in binary is 11000000

======================================================================================
||    255.255.255.192 in binary notation is 11111111.11111111.11111111.11000000    ||
======================================================================================

Remove all dots to form 11111111111111111111111111000000
Remove all 0's from the right side to form 11111111111111111111111111
Number of 1's in this is 26
so, Subnet mask is /26

For Calculating network ID, keep first 26 bits of 11010110.00010100.00000001.00001111 and set all remaining bits to 0.
so, network ID in binary is 11010110.00010100.00000001.00000000
11010110.00010100.00000001.00000000:
----------------------------------------
11010110.00010100.00000001.00000000
Let's convert all octets to decimal separately
Converting 11010110 to decimal
Converting 11010110 to decimal
11010110
=> 1x2^7+1x2^6+0x2^5+1x2^4+0x2^3+1x2^2+1x2^1+0x2^0
=> 1x128+1x64+0x32+1x16+0x8+1x4+1x2+0x1
=> 128+64+0+16+0+4+2+0
=> 214
11010110 in decimal is 214

Converting 00010100 to decimal
Converting 00010100 to decimal
00010100
=> 0x2^7+0x2^6+0x2^5+1x2^4+0x2^3+1x2^2+0x2^1+0x2^0
=> 0x128+0x64+0x32+1x16+0x8+1x4+0x2+0x1
=> 0+0+0+16+0+4+0+0
=> 20
00010100 in decimal is 20

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

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

==================================================================================
||    11010110.00010100.00000001.00000000 in decimal notation is 214.20.1.0    ||
==================================================================================
=========================================
||    So, Network ID is 214.20.1.0    ||
=========================================

For Calculating broadcast ID, keep first 26 bits of 11010110.00010100.00000001.00001111 and set all remaining bits to 1.
so, broadcast ID in binary is 11010110.00010100.00000001.00111111
11010110.00010100.00000001.00111111:
----------------------------------------
11010110.00010100.00000001.00111111
Let's convert all octets to decimal separately
Converting 11010110 to decimal
Converting 11010110 to decimal
11010110
=> 1x2^7+1x2^6+0x2^5+1x2^4+0x2^3+1x2^2+1x2^1+0x2^0
=> 1x128+1x64+0x32+1x16+0x8+1x4+1x2+0x1
=> 128+64+0+16+0+4+2+0
=> 214
11010110 in decimal is 214

Converting 00010100 to decimal
Converting 00010100 to decimal
00010100
=> 0x2^7+0x2^6+0x2^5+1x2^4+0x2^3+1x2^2+0x2^1+0x2^0
=> 0x128+0x64+0x32+1x16+0x8+1x4+0x2+0x1
=> 0+0+0+16+0+4+0+0
=> 20
00010100 in decimal is 20

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

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

===================================================================================
||    11010110.00010100.00000001.00111111 in decimal notation is 214.20.1.63    ||
===================================================================================
============================================
||    So, broadcast ID is 214.20.1.63    ||
============================================

For Calculating first valid address in subnet, add 1 to the network address.
Network Address is 214.20.1.0
============================================================
||    So, first valid address in subnet is 214.20.1.1    ||
============================================================

For Calculating last valid address in subnet, remove 1 from the broadcast address.
Broadcast Address is 214.20.1.63
============================================================
||    So, last valid address in subnet is 214.20.1.62    ||
============================================================

Number of valid hosts in the network
   > 2^(32 - number of 1's in subnet) - 2
   > 2^(32 - 26) - 2
   > 2^(6) - 2
   > 64 - 2
   > 62
==========================================================
||    So, number of valid hosts in the subnet is 62    ||
==========================================================
Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
In a class C subnet, we know the IP address of one of the hosts and...
In a class C subnet, we know the IP address of one of the hosts and the subnet mask as given below: IP Address: 198.48.82.176 Subnet mask: 255.255.255.224 1) What is the first valid host address in the subnet? (in dotted decimal) 2) What is the last valid address in the subnet? (in dotted decimal) 3) What is the subnet network address? (in dotted decimal) 4) What is the subnet broadcast address? (in dotted decimal) 5) What is the number...
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 255.255.255.0     network 178.47.188.0 255.255.255.240 network 178.47.188.176 255.255.0.0          network 178.47.0.0 255.255.240.0      network 178.47.176.0 How many total/useable hosts? 1a. /20    Total_______________          Useable_______________ 1b. /21    Total_______________          Useable_______________ 1c. /28    Total_______________          Useable_______________ 1d.  /27     Total_______________          Useable_______________ 1e. /30     Total_______________          Useable_______________
Calculate the network address, broadcast address, and subnet mask for 94.35.35.146/25. Network + Guide to networks...
Calculate the network address, broadcast address, and subnet mask for 94.35.35.146/25. Network + Guide to networks seventh addition chapter 10
Scenario 1 (Use the network 221.153.17.0 for the following questions.) We need to subnet this network...
Scenario 1 (Use the network 221.153.17.0 for the following questions.) We need to subnet this network to support a minimum of 4 (seven) networks. How many bits do we need to use from the last octet to support this? How many hosts would each network be able to support? What will the subnet mask be? Give the network, IP range, and broadcast address for the first 3 networks: Network 1:    _________________             Broadcast: _________________ Host IP Range:         _________________ to _________________...
What range of IP addresses is represented by the network and subnet mask 192.168.70.0 255.255.254.0? a....
What range of IP addresses is represented by the network and subnet mask 192.168.70.0 255.255.254.0? a. 192.168.70.0 to 192.168.71.255 b. 192.168.70.0 to 192.168.70.255 c. 192.168.70.0 to 192.168.73.255 d. 192.168.70.0 to 192.168.76.255 please reply asap
Your company has a policy to use the first IP address in a network as the...
Your company has a policy to use the first IP address in a network as the default gateway address. You have been instructed to configure a new server with an IP address of 192.168.184.227 and a subnet mask of 255.255.255.248. What is the network address for this network? What is the default gateway for this server? Reflection Why is the subnet mask important in determining the network address?
Given the IP address 172.16.45.0 and the mask 255.255.224.0, what is the corresponding network address? Show...
Given the IP address 172.16.45.0 and the mask 255.255.224.0, what is the corresponding network address? Show how you arrived at your answer.
You are configuring two PCs for your network. PC-A is given an IP address of 10.0.0.16,...
You are configuring two PCs for your network. PC-A is given an IP address of 10.0.0.16, and PC-B is given an IP address of 10.1.14.68. Both PCs receive a subnet mask of 255.254.0.0. What is the network address for PC-A? What is the network address for PC-B? Will these PCs be able to communicate directly with each other? What is the lowest address that can be given to PC-B that allows it to be on the same network as PC-A?
Use the following for questions 26-31 26. What is IPv4 the address?   Is it public or...
Use the following for questions 26-31 26. What is IPv4 the address?   Is it public or private?   What class of IP address is it? 27. What is the default subnet mask for this class of IP address?   Is the subnet mask        displayed the default subnet mask?   How many bits are representing the network? 28. What is the IP address of the machine that resolves domain names to IP addresses? 29. What is the IP address of the machine that...
Given a Class B network and a number of subnets required, complete the table to identify...
Given a Class B network and a number of subnets required, complete the table to identify the number of bits to borrow from the host field for the subnet field and the maximum number of host addresses available per subnet. Number of Subnets Required Number of Bits to Borrow for the Subnet Field Maximum Number of Hosts per Subnet Subnet Mask in Binary and Decimal Representations 5 3    23 = 8 Class B has 16 host bits by definition. If...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT