Networking routers: Difference between revisions

From wikinotes
No edit summary
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
Routers use IP addresses, to route traffic between networks and/or subnets.<br>
Routers are responsible for bridging/routing packets between networks/subnets.
A routing table stores routes for each available network.<br>
 
The target network for a packet is identified using the netmask, if the network exists in the routing table the packet is sent on that network.
[[networking datalink layer|datalink layer]] '''frames''' are transmitted to a router's network-interface identified by it's '''MAC Address'''.<br>
It looks up the target IP address network in it's '''routing table''' and if the network is reachable,<br>
the packet's frame is replaced with info specific to the new network and sent.
 
<syntaxhighlight lang="">
+---------------+                              +-----------------+
| network-1    |                              |    network-2    |
|192.168.1.0/24 |                              |  10.0.0.0/24  |
|              |    +-----------------+      |                |
|  datagram    |    |      router    |      |                |
| 10.0.0.5/24 --------> 192.168.1.1/24 |      |    destination  |
|              |    |  10.0.0.1/24  ------------>  10.0.0.5/24 |
|              |    |                |      |                |
+---------------+    +-----------------+      +-----------------+
</syntaxhighlight>
 
A '''frame''' may pass through several routers to reach it's destination.<br>
the routing table determines the gateway router for the next network to pass through.


= Tutorials =
= Tutorials =
Line 8: Line 25:
|-
|-
| router in nixos || https://francis.begyn.be/blog/nixos-home-router
| router in nixos || https://francis.begyn.be/blog/nixos-home-router
|-
| single NIC router || https://louwrentius.com/raspberry-pi-as-a-router-using-a-single-network-interface.html
|-
|-
|}
|}
</blockquote><!-- Tutorials -->
</blockquote><!-- Tutorials -->
= Protocols =
<blockquote>
{| class="wikitable"
|-
| [[gateway protocols]]
|-
|}
</blockquote><!-- Protocols -->
= Notes =
<blockquote>
{| class="wikitable"
|-
| [[routing schemes]]
|-
| [[routing tables]]
|-
|}
</blockquote><!-- Notes -->

Latest revision as of 16:48, 11 October 2021

Routers are responsible for bridging/routing packets between networks/subnets.

datalink layer frames are transmitted to a router's network-interface identified by it's MAC Address.
It looks up the target IP address network in it's routing table and if the network is reachable,
the packet's frame is replaced with info specific to the new network and sent.

+---------------+                              +-----------------+
| network-1     |                              |    network-2    |
|192.168.1.0/24 |                              |   10.0.0.0/24   |
|               |    +-----------------+       |                 |
|  datagram     |    |      router     |       |                 |
| 10.0.0.5/24 --------> 192.168.1.1/24 |       |    destination  |
|               |    |   10.0.0.1/24  ------------>  10.0.0.5/24 |
|               |    |                 |       |                 |
+---------------+    +-----------------+       +-----------------+

A frame may pass through several routers to reach it's destination.
the routing table determines the gateway router for the next network to pass through.

Tutorials

router in nixos https://francis.begyn.be/blog/nixos-home-router
single NIC router https://louwrentius.com/raspberry-pi-as-a-router-using-a-single-network-interface.html

Protocols

gateway protocols

Notes

routing schemes
routing tables