Lets suppose we have a computer with three NICs:
NIC_1: 172.16.1.1/24
NIC_2: 192.168.1.1/24
NIC_3: 103.55.34.32/24
We send a packet with the destination IP address being 255.255.255.255.
1) if the default gw is on the 103.55.34/24 network, will the packet be sent through NIC_3 or will the packet be sent through every NIC?
2) If we make an assumption that the whole internet is a one big network and this network network address is 0.0.0.0/0, the 255.255.255.255 address looks like a broadcast address for the whole network (for the internet), right?
3) What would be the meaning of a network address like this: 1.2.0.0/0? (is this correct and if not, why not)
1.2.0.0/0cannot be a network address because a network address has all the host bits set to zero. Since/0means all the bits are host bits, the only valid/0network address is0.0.0.0/0. – David Schwartz Jan 09 '12 at 01:24