31,703
edits
(Created page with "__TOC__ ==Summary== <b>Static routes</b> specify over which interface and gateway a certain host or network can be reached. This chapter is an overview of the Static Routes p...") |
No edit summary |
||
Line 14: | Line 14: | ||
[[File:{{{file_routes}}}]] | [[File:{{{file_routes}}}]] | ||
<table class="nd-mantable"> | |||
<tr> | |||
<th>Field</th> | |||
<th>Dalue</th> | |||
<th>Description</th> | |||
</tr> | |||
<tr> | |||
<td>Interface</td> | |||
<td>mobile | lan; default: <b>mobile</b></td> | |||
<td>The zone where the target network resides</td> | |||
</tr> | |||
<tr> | |||
<td>Target<span class="asterisk">*</span>'</td> | |||
<td>ip4; default: <b>0.0.0.0</b></td> | |||
<td>The address of the destination network</td> | |||
</tr> | |||
<tr> | |||
<td>Netmask<span class="asterisk">*</span></td> | |||
<td>netmask; default: <b>255.255.255.255</b></td> | |||
<td>A Mask that is applied to the Target to determine to what actual IP addresses the routing rule applies</td> | |||
</tr> | |||
<tr> | |||
<td>Gateway</td> | |||
<td>ip; default: <b>none</b></td> | |||
<td>Defines where the router should send all the traffic that applies to the rule</td> | |||
</tr> | |||
<tr> | |||
<td>Metric</td> | |||
<td>integer; default: <b>0</b></td> | |||
<td>The <b>metric</b> value is used as a sorting measure. If a packet about to be routed fits two rules, the one with the lower metric is applied.</td> | |||
</tr> | |||
<tr> | |||
<td>MTU</td> | |||
<td>integer; default: <b>1500</b></td> | |||
<td></td> | |||
</tr> | |||
<tr> | |||
<td>Route Type</td> | |||
<td>unicast | local | broadcast | multicast | unreachable | prohibit | backhole | anycast | -- custom -- ; default: <b>unicast</b></td> | |||
<td></td> | |||
</tr> | |||
</table> | |||
<span class="asterisk">*</span><b>Additional notes on Target & Netmask:<b> | |||
You can define a rule that applies to a single IP like this: Destination - some IP; Netmask - 255.255.255.255. Furthermore, you can define a rule that applies to a segment of IPs like this: Destination – some IP that STARTS some segment; Netmask – Netmask that defines how large the segment is. e.g.: | |||
<table class="nd-mantable"> | |||
<tr> | |||
<th>Field</th> | |||
<th>Value</th> | |||
<th>Description</th> | |||
</tr> | |||
<tr> | |||
<td>192.168.2.161</td> | |||
<td>255.255.255.255</td> | |||
<td>Only applies to 192.168.2.161.</td> | |||
</tr> | |||
<tr> | |||
<td>192.168.2.0</td> | |||
<td>255.255.255.240</td> | |||
<td>Applies to IPs in the 192.168.2.0 - 192.168.2.15 range.</td> | |||
</tr> | |||
<tr> | |||
<td>192.168.2.240</td> | |||
<td>255.255.255.240</td> | |||
<td>Applies to IPs in the 192.168.2.240 - 192.168.2.255 range.</td> | |||
</tr> | |||
<tr> | |||
<td>192.168.2.161</td> | |||
<td>255.255.255.0</td> | |||
<td>Applies to IPs in the 192.168.2.0 - 192.168.55.255 range.</td> | |||
</tr> | |||
<tr> | |||
<td>192.168.0.0</td> | |||
<td>255.255.0.0</td> | |||
<td>Applies to IPs in the 192.168.0.0 - 192.168.255.255 range.</td> | |||
</tr> | |||
</table> | |||
[[Category:{{{name}}} WebUI]] | [[Category:{{{name}}} WebUI]] |