Open In App

Finding DBA from given IP address

Direct Broadcast Address (DBA):
Two addresses are subtracted from the number of hosts in each network because one is used for Net Id and other one is used for DBA of the network.

In this article we are going to discuss how to find out DBA of a network if a IP address is given. Following is the procedure of finding it.



Procedure:

  1. First we need to recognize the class of the IP address.
  2. Then according to the class of IP address, every class has a mask.
  3. There after we need to find the Net Id which is obtained by doing the bitwise AND of IP and mask.
  4. Then from obtained Net Id we can obtained the DBA of that network.

Above method can be illustrated by the following example:



Given, IP = 201.55.63.123
And, we have to find the DBA of the network.

Article Tags :