Open In App

Finding DBA from given IP address

Last Updated : 28 Mar, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

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.

  • Step-1: It can be recognized that this IP belongs to Class C.
  • Step-2: Mask of Class C = 255.255.255.0
  • Step-3: In this step Net Id is calculated by doing bitwise AND of IP (201.55.63.123) and mask (255.255.255.0).
    201 & 255 = 201
    55 & 255 = 55
    63 & 255 = 63
    123 & 0 = 0
    
    Hence, Net Id = 201.55.63.0 
  • Step-4: Since Net Id = 201.55.63.0
    First host = 201.55.63.1
    Second host = 201.55.63.2
    .
    .
    .
    Last host = 201.55.63.254 

    And, DBA of network = 201.55.63.255


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads