Saturday, 29 August 2015

IP Addressing Formats

   IP Addressing

IP addressing is a hardware-independent convention which in principle allows every computer attached to the Internet to be given a unique logical address (though we will see later on that there are some important exceptions to this).
IP addresses are currently 32-bit binary strings which are normally seen by humans (e.g., network administrators, in dotted decimal as in the example:
223.58.1.10
The decimal numbers here have no meaning in isolation; this is simply a convenient way of encoding the numbers so that administrators and others find it easier to recognize them. What happens is that the 32-bit address is broken up into four 8-bit sequences each of which is converted to decimal. So the above address is in binary:
11011111 00111010 00000001 00001010

     IP Address Formats

Originally IP addresses were divided into five classes as shown below. Classes A, B and C are the most important: the initial bits determine which class an address belongs to, and the classes differ in how much of the address is taken up with the network address and how much with the host address.
Offsets
081624
Class A
0  NetworkHost
Addresses 1.0.0.0 to 127.255.255.255
Class B
10  NetworkHost
Addresses 128.0.0.0 to 191.255.255.255
Class C
110  NetworkHost
Addresses 192.0.0.0 to 223.255.255.255
Class D
1110  Multicast address
Addresses 224.0.0.0 to 239.255.255.255
Class E
11110  Reserved for future use
Addresses 240.0.0.0 to 255.255.255.255

      Exclusions

Some address ranges are excluded from the above classes. All addresses of the form 127.xx.yy.xx are used for diagnostics. The following address ranges are designated as "private": meaning thay can only be used on networks which are not connected to the global Internet:
10.0.0.0 - 10.255.255.255
172.16.0.0.0 - 172.31.255.255
192.168.0.0 - 192.168.255.255

      Examples

Find the class, network and host addresses for:
  1. 4.23.145.90
  2. 227.34.78.7
  3. 246.7.3.8
  4. 129.6.8.4
  5. 198.76.9.23

    Subnetting, Supernetting and Network Address          Translation

The classfull addressing scheme has proved to be too inflexible to accommodate the demand for IP addresses; specifically, the convention that the part of the address which identifies a physical network must come on an 8-bit boundary meant that the address space could not be allocated efficiently and a significant proportion of addresses would be wasted. For instance, a Class A network can in theory have 16 million host IDs, which is way more than would be possible for a single physical network (subnet). Many enterprises have been allocated Class B addresses, giving them a theoretical maximum of 65,535 hosts, and may have no more than a few hundred hosts or less: under the classfull scheme the remaining host IDs for that network ID would be unused.
The lack of inflexibility in the addressing scheme is particulalrly undesirable because according to many authorities there is a real danger of the Internet running out of addresses, as a result of several factors which were not envisaged when the Internet protocols were originally designed, such as :
  • take-up by business and domestic users
  • increasing demand for "always-on" connections requiring a dedicated IP address, so that ISPs have less ability to share out a limited number of IP addresses by reallocating them as customers disconnect
  • convergence of computing, communications and entertainment industries could mean that every TV set, mobile phone, playstation and DVD player will want to have an IP address.

     Subnetting

The basic idea behind subnetting is that we take away some bits from the host portion of the address and use them to identify the subnet. This will only be visible to hosts and routers on the local network; from the point of view of the Internet at large only the network ID portion will have any particular meaning. The way this works is that the network administrator defines a subnet mask, a string of 32 binary digits indicating the boundary between the subnet and host sections of the "local" portion of an IP address. Some examples should help make this clear:
  1. Take the Class A address 9.67.38.1, where 9 is the network address and 67.38.1 identifies a particular host on that network. Suppose the network administrator wants to use bits 8 to 25 to identify the subnet, leaving 26 to 31 for host addresses. This is done by means of a mask which is all 1's from bits 0 to 25 with the remainder set to 0's:
    11111111 11111111 11111111 11000000
    The subnet can then be indentified by ANDing the complete IP address with the mask giving the result shown below:
    00001001 01000011 00100110 00000001 = class A address 9.67.38.1
    00001001 01000011 00100110 00000000 = subnet base address 9.67.38.0
  2. Suppose a class C network has the subnet mask
    11111111 11111111 11111111 11100000
    This means that the first three bits from the host ID are used to identify the subnet, and the remaining 5 bits indicate the host itself. Take a host with the IP address
    11010100 01110010 00010000 01110001 = 212.114.32.113
    Applying the subnet mask gives us
    11010100 01110010 00010000 01100000 = 212.114.32.96
    The host ID proper comes out as 00010001 = 17.
For compatibility, routers include masks for unsubnetted addresses:
  1. 255.0.0.0
  2. 255.255.0.0
  3. 255.255.255.0
  4. N/A
  5. N/A

      Supernetting and Classless Inter-Domain Routing (CIDR)

CIDR is in a sense the converse of subnetting, in that bits are taken from the network ID to identify a cluster of network addresses which are to be treated as a single entity. The main reasons for this are:
  • As a consequence of the address exhaustion problem, Class B addresses are only assigned to organisations that can show a clear need for them: organisations which do not meet the requirements are instead given a contiguous block of Class C addresses.
  • Having a series fo router table entries for networks which all map onto the same route is wasteful of space and degrades routing algorithms.
CIDR uses a supernet mask along with the lowest network address in the assigned block to identify the range of assigned network addresses.

Download ppt:Click here to download