Table of Contents Routing Protocols
TCP/IP Tutorial and Technical Overview

3.1 Basic IP Routing

The fundamental function for routers is present in all IP implementations:

  • An incoming IP datagram that specifies a ``destination IP address'' other than the local host's IP address(es), is treated as a normal outgoing IP datagram.
  • This outgoing IP datagram is subject to the IP routing algorithm of the local host, which selects the next hop for the datagram (the next host to send it to). This new destination can be located on any of the physical networks to which the intermediate host is attached. If it is a physical network other than the one on which the host originally received the datagram, then the net result is that the intermediate host has forwarded the IP datagram from one physical network to another.


    Figure: Router Operation of IP - Can be performed by all IP implementations.

    The normal IP routing table contains information about the locally attached networks and the IP addresses of other routers located on these networks, plus the networks they attach to. It can be extended with information on IP networks that are farther away, and can also contain a default route, but it still remains a table with limited information; that is, it represents only a part of the whole internet. That is why this kind of router is called a router with partial routing information.

    Some considerations apply to these routers with partial information:

    Some error reporting should be implemented by routers with partial information via the Internet Control Message Protocol (ICMP) described in Internet Control Message Protocol (ICMP). They should be able to report the following errors back to the source host:

    A more intelligent router is required if:

    These more advanced forms of routers use additional protocols to communicate with each other. A number of protocols of this kind exist, and descriptions of the important ones will be given in the following sections. The reasons for this multiplicity of different protocols are basically fourfold:

    Before discussing the various routing protocols, we will review the routing architectures used in the early Internet, since this will help in understanding the role played by the differing routing protocols. This overview will also show the difference between Interior and Exterior routing. We will then discuss the various protocols used for the two types of routing.

    3.1.1 Routing Daemons

    The routing protocols are often implemented using one of two daemons: (8)

    routed
    Pronounced ``route D''. This is a basic routing daemon for interior routing supplied with the majority of TCP/IP implementations. It uses the RIP protocol (see Routing Information Protocol (RIP)).
    gated
    Pronounced ``gate D''. This is a more sophisticated daemon on UNIX-based systems for interior and exterior routing. It can employ a number of additional protocols such as OSPF (see Open Shortest Path First Protocol (OSPF) Version 2) and BGP (see Border Gateway Protocol (BGP)).

    See IP Routing Protocols in IBM TCP/IP Products for details of routing daemon implementations in IBM products.

    Table of Contents Historical Perspective