Content deleted Content added
m Disambiguating links to Template engine (link changed to Template processor) using DisamAssist. |
m fixed lint errors – stripped tags |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 1:
{{Short description|Use of fixed routes for routing in networks}}
'''Static routing''' describes a process by which [[routing]] is configured with fixed values that do not change at runtime unless manually edited. Static routes are used with and without dynamic [[
== Uses ==
Static routing may have the following uses:
* When using static address configuration (in the absence of DHCP or Router Advertisements) it can be used to provide a [[default route]], forming a special case of the longest prefix match as it has a prefix length of zero and therefore always matches, and always matches last.
* In small networks it is a viable method for providing alternative routes to direct traffic when multiple routers exist. This is a simple but limited form of [[
* Static routing has applications in environments with many routes with infrequent changes as it reduces the delay it would take to synchronize the routes from another device.
* On heavily resource constrained devices where routing protocols may not be viable due to lack of computation power, static routes may be used instead.
Line 50:
The administrative distance can be manually (re)configured so that the static route can be configured as a backup route, to be used only if the dynamic route is unavailable.<ref name=distance>{{Cite web |title=Describe Administrative Distance |url=https://www.cisco.com/c/en/us/support/docs/ip/border-gateway-protocol-bgp/15986-admin-distance.html |access-date=2014-06-12 |website=Cisco |language=en}}</ref>
<syntaxhighlight lang="console">(config)# ip route 10.10.20.0 255.255.255.0 exampleRoute 1 254</syntaxhighlight>
Line 58 ⟶ 57:
== See also ==
{{div col|colwidth=20em}}
* [[Routing]]
* [[Dynamic routing]]
* [[Routing protocol]]
* [[Routing table]]
* [[
* [[Route (disambiguation)|Route]]
* [[Routing#Path selection|Metrics]]
{{div col end}}
|