Binary Rules

FIRST CONVERT ADD INTO BINARY

1. To workout the Network/Subnet Address

  • Fill the host portion of Address with Binary 0's (then convert it to Decimal)

    2. To workout the First Host Address in a Subnet

  • Fill the host portion of the Address with Binary 0's except for the last bit which is set to Binary 1 (then convert it to Decimal)

    3. To workout the Last Host Address in a Subnet

  • Fill the host portion of the Address with Binary 1's except for the last bit which is set to 0. (then convert it to Decimal)

    4. To workout the Broadcast Address

  • Fill the host portion of the Addresses with Binary 0's except for the last bit which is set to 1.(then convert it to Decimal)

Why only work on the Host Portion?

  • Because mask indicates Number of bits on the Network Side (already reserved)

  • /24 = 255.255.255.0

  • Hence we only work on the Host side

Practical Example:

Reference:

Last updated