Static Route
A static route is one that a network administrator creates manually.
The opposite of a static route is a dynamic route. Dynamic routes are created by routing protocols.
Static routes have advantages and disadvantages when compared to dynamic routes.
Advantages of Static Routes:
- Easy to configure
- No routing protocol overhead
Disadvantages of Static Routes:
- Network changes require manual reconfiguration
- Network outages cannot be automatically routed around

Creating a Static Route under Unix
Under Unix, static routes can be created using the `route` command.
The example shows the creation of a static route for a single host:
# route add 193.252.19.5 192.252.19.1
add net 193.252.19.5: gateway 192.252.19.1
The user can see the static route that was created with the `netstat -nr` command:
# netstat -nr
Routing tables
Internet:
Destination Gateway Flags Refs Use Netif Expire
...
193.252.19.5 193.252.19.1 UGS 0 0 fxp0
..
Creating a Static Route under Cisco IOS
To add a static route on a Cisco router, use the `ip route` command.
The syntax to utilize is: ip route <destination> <netmask> <next hop>.
The example shows the creation of a static route for a single host:
FAQ-Cisco# conf t
FAQ-Cisco (config)# ip route 193.252.19.5 255.255.255.255 193.252.19.1
- Null Route
A null route is a route that goes to nowhere. The reason for creating a null route is to prevent your system from sending any data to a remote system. Creating a null route Null routes are usually created using the `route` command. This works under both Windows and Unix, although the syntax differs. The [...]...
- Enabling IP Routing
WAN connects different LANs with each other to communicate and to share data and resources. As a result, routers must be used on each network or at backbone to route the IP packets and IP routing should be enabled on the routers. Routers must learn the destinations that are not directly connected by building and [...]...
- Routing Table
A routing table is an electronic document that stores the routes to the various nodes in a computer network. The nodes may be any kind of electronic device connected to the network. The Routing Table is usually stored in a router or networked computer in the form of a database or file. When data needs [...]...
- The Windows Routing Table
When routers need to forward packets, they interpret the packets’ addresses then use the information in the routing tables to pass the packet on. Data packets contain both source and destination addresses in their packet headers. This is the information that is used when routing decisions need to be made. The destination address is compared [...]...
- Network Routers
A network router is a network device with interfaces in multiple networks whose task is to copy packets from one network to another. Routers operate at Layer 3 of the OSI Model, the Network Layer. This is in contrast to switches, which operate at Layer 2 of the OSI Model, the Data-Link Layer. A network [...]...




