So... I have studied for CCNA and such and been working with IP networking at the least the past 8 years or so. I have always seen and been told that the network address for a subnet is not a valid host address. Now first I will start by saying I know this is true. My question is more... is there a technical reason it can not be used or was it just arbitrarily agreed upon when the specification was designed? I understand why a broadcast address can not be used (because it is ACTUALLY used). The thing is when I see a network address used it is normally only in routing which is specifically using NETWORK addresses. This being the case, (network addresses being used only when you are expecting a network address) is there some technical reason that they could not have the network address be an actual valid host address?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

As far as I understand, "network address" as a special address is an artifact from the classful IP networks from the past. Today, we use Classless Inter-domain Routing (CIDR) on the Internet, which does not have the concept of a network address (if you look at the RFC 4632 linked above, you'll see that it lists 256 possible IP addresses per legacy "C" block, e.g. no reserved addresses for either network or broadcast address (although broadcasts are defined as essential in other RFCs).

This being said, you still should not assign a network address to any specific host in a network: Network address is essential for routing. This concept is used extensively in RFCs (RFC 1812). Just look at the routing tables (route command), you'll see how your local network address is used to separate your local network traffic from what must go through the router. What if that local network address was assigned to some host?

Even worse: it is better not to assign IP addresses ending in zero even if this address is not a network address. E.g. if your network is 10.10.0.0/255.255.0.0, IP address 10.10.5.0 is not your network address, but you'd better not assign such IP even though it is completely valid even on classful IP networks. Some legacy software/IP stacks may have problems with it.

link|improve this answer
Broadcast addresses remain special - the last (all-ones) address in a subnet is always "broadcast". – grawity Jan 17 at 16:56
@grawity: Not always. Only In a network larger than /31. E.g. P2P can have two addresses and no broadcast address. – haimg Jan 17 at 17:08
Hmmm... i like the first part of the answer... that it is an artifact from classful IP networks. My issue again with the second part is routing tables are used specifically to route to a network. As I understand it, the routing table is only looked at to route to a network to which the receiver is not on (dest IP not part of your subnet/net). This being the case... when looking at a routing table it is clear the addresses in it are network addresses and not host addresses therefore seperating this from a host packet dest IP. In actual traffic, a dest IP of a net address is never used. – Goblinlord Jan 17 at 18:27
So... is there any reason to specifically reserve it if these 2 instances are already seperate (network address in routing table and dest IP when determining whether you need to look at a routing table). – Goblinlord Jan 17 at 18:32
1  
@Goblinlord: No official reason that I could find (recent RFCs, etc.). However, so much software is built with the assumption that the network address is "special", that in practice you'd better not use it as a host IP address. – haimg Jan 17 at 18:42
show 1 more comment
feedback

The network address allows you to build route tables with fixed-size (4-bytes IPv4) destination column and fixed-size binary operations so that host routing and network routing is actually the same thing.

Imagine a routing table like this: (this PC has a parallel connection with another PC and a network card)

Dest           Mask    Dev
192.168.0.123  /32     plip0   # This is a single host
192.168.0.0    /24     eth0    # This is a network

The AND between the IP address and the netmask gives you exactly what you need, a 4 bytes number which can be compared against each line without further calculations.

So the host number zero is special in the sense that after the AND operation its address naturally represents the whole network.

If you decided to use the network number as a host number it would result in a table like this:

Dest           Mask    Dev
192.168.0.0    /32     eth0    # This is the host (it's a redundant line)
192.168.0.0    /24     eth0    # This is the network

This seems legit, so I suppose the concept of network address is used for routing reasons and thus it was decided arbitrarily to mark it as a special address and prohibit its use as a host address.

Well... actually it's not that simple. I decided to give it a try (!!!):

# route add -net 192.168.0.0/32 eth0
# ping 192.168.0.0
Do you want to ping broadcast? Then -b
# telnet 192.168.0.0
Trying 192.168.0.0...
telnet: connect to address 192.168.0.0: Network is unreachable

At present the network programs don't allow me to use a network number as a normal address.

link|improve this answer
Considering your first routing table example I think that is a really bad way to do things... if you have other hosts on your .0.0 subnet how do they communicate properly with each other as well as the .0.123 host without staticly setting routes on every single host? That really doesn't seem like the proper way to do things. – Goblinlord Jan 17 at 18:40
It's just a fictional example, I would never setup a table like that :-) The .123 host is connected with a point to point connection while the rest is the usual ethernet network. If you want other machines to access the .123 host you need to do additional work, but it's not impossible. – David Costa Jan 18 at 11:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.