4.3: Static Routing
A static route is a route configured manually by the Windows server 2003 network administrator.
This is suitable for smaller networks with only a few routers as any changes to the network topology would incur additional administration to change the static route. However static routes are less resource intensive than dynamic routing protocols
The ROUTE ADD command can be used to create or add new static routes.
For example: ROUTE ADD 10.0.0.0 MASK 255.0.0.0 192.168.10.4 where:
10.0.0.0 - this is the destination network address
255.0.0.0 - this is the destination subnet mask
192.168.10.4 - this is the default gateway

This route will only be resident in the RAM and will be lost on reboot.