Doubt in this Computer Network Question

Q. In a block of addresses, we know the IP address of one host is 182.44.82.16/26. What is the last address (Limited Broadcast Address) in this block ?

I got the broadcast address as 182.44.82.63. Is it Limited Broadcast address ? I don’t think it is limited as it should be 255.255.255.255. Then what type of Broadcast Address it is ?

Limited broadcast address means if you send a packet to that address all the hosts present in that network with network address as (182.44.82.0/26) will get the packet. That’s why it’s called a limited broadcast address for the network.

255.255.255.255 is a universal broadcast, if you send a packet to this address all the hosts present in the network or LAN will get the packet. Remember LAN can have different networks as well, all the hosts in the LAN will get this packet. Hope this helps!

2 Likes

For any given IP Address, limited Broadcast Address is obtained by setting all its bits to 1. Is it not the case that Limited Broadcast address is always 255.255.255.255 ?

For every given address there is a network part and a host part. what you are referring to is when you set all the bits of the host part as 1’s is when you get the limited broad cast address. you should get the host part and network part correct. for the above IP
182.44.82.0/26
every IP address has 32 bits.
for this specific network first 26 bits are network address bits and last 6 bits are host address bits.
when you make all the last 6 bits as 1’s you will get 182.44.82.63 as limited broadcast address.

I think 182.44.82.63 is a Directed Broadcast Address. What do you say ?