Kareem wroteHey everyone.. I was checking my real IP and I saw it was 94.*.*.0 ( Ogero )
Actually it is weird to see an IP ending by 0 or 255.. I thought those were reserved
I was reading on some websites that such Ips cannot be used because they are reserved. However there are some sources where they mention that it can be done but will not work properly for some devices rejecting such format.
Maybe it will only conflict with /24
Anybody cares to explain ?
Hello Mr NsN ! :)
ofcourse such an address is possible! it has to do with masking and the architecture of IP networks!
you can always have a subnet but you do not always need to have a gateway! a subnet size is defined by its size which is presented by its mask, for example 255.255.255.0 gives you 254 ip addresses, a mask of 255.255.254.0 would give you 508 ip addresses, 255.255.253.0 gives you 762 ip addresses.
within the subnet you need only one broadcasting address. that is why for example in a 255.255.255.0 subnet you get only 254 an not 255 at your disposal. so when you have a mask of 255.255.253.0 you still need only one such special address. so if you think in a running order of what are the ip addresses that you can get,
lets say a 255.255.253.0 for 192.168.1.0 well your usabler addresses are anywhere between 192.168.1.1-192.168.3.255 with only one special address so in that case the 192.168.1.255 and the 192.168.2.0 and 192.168.2.255 and 192.168.3.0 are valid ip addresses. unfortuantelly this causes confusion but still should work!
what is this special broadcast address? well...
In computer networking, a broadcast address is a network address that allows information to be sent to all nodes on a network, rather than to a specific network host.
more here:
http://en.wikipedia.org/wiki/Broadcast_address
do i need to explain more Mr NsN ;)
PS: I hope i got it right this time, im not sure if im right, im so tired from work, i could be very wrong with what i just told you!