Routing table

Updated: 04/26/2017 by Computer Hope

For a network router to know where to send packets of data it receives, it uses a routing table. The routing table contains a list of specific routing destinations. When the router receives a packet of data, it references the routing table to know where to send that data. The routing table may also contain information on how far each destination is from the router. In essence, a routing table is a map for the router.

A routing table does not contain a list of all possible destinations. Rather, it contains a list of destinations that are next in line to the router. Each router contains this list. When a packet is received, it's directed to the next network link (hop), as listed in the table, until it reaches its final destination. The routing table contains a list of IP addresses, Gateway addresses, and other information. Below, is an example of a basic routing table.

Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.0.1 192.168.0.100 10
127.0.0.0 255.0.0.0 127.0.1.1 127.0.1.1 5
192.168.0.0 255.255.255.0 192.168.0.100 192.168.0.100 10
192.168.5.100 255.255.255.255 127.0.5.1 127.0.5.1 20
192.168.55.255 255.255.255.255 192.168.3.100 192.168.3.100 15

Hop, Network terms, Router