- Route
- A route may be defined as information that is used to make a decision about how to forward a packet so that it will reach its intended destination network.
What is a route?
To understand what a route is, we have to explain what routing is, why we need it and how routers do routing.
Routing is the process of moving a packet of data from one network to another network based on the destination IP address. The Internet uses routing to move data from your computer, across several networks, to reach a final destination, like a website. Specialized computer devices that perform this routing function are referred to as routers. Routers use the information contained in a route to make decisions about which network interface to forward a packet through in order to reach the destination address in the packet. Routers maintain a list of routes which is often referred to as a routing table.
Routers look up routes in the routing table to figure out how to move data from one network to another network. Routes are simply the signposts that tell a router which network interface to forward a packet through in order to reach the packet's intended destination.
Types of Routes
There are two basic kinds of routes: static or dynamic.
Static Routes
Routes can be entered into a router by a person who administrates the network (the network administrator). Since these routes are entered by the administrator, and these routes don't change until the administrator changes them, they are referred to as static routes.
Cisco devices (and several other routing devices) use the following command to configure a static route:
ip route <destination network address> <network mask> <gateway/router address> <weight> Example: ip route 192.168.1.0 255.255.255.0 192.168.1.1
NULL ROUTES
A static route which points to the null 0 interface on a Cisco router is called a null route. Null routes are used to cause packets that have been sent to an unreachable network to be dropped from the network thereby preventing those packets from consuming bandwidth.
Dynamic Routes
If the routes are learned on-the-fly from other routers, it is called a dynamically-learned route, or a dynamic route for short. Dynamic routes are learned from routing protocols.