title: S1E8 - Routing Protocols |
author: Nicholas Morrison nick@nanocat.net |
draft: false |
tags: [network, workshop, routing] |
categories: [workshop] |
noindex: true |
show ip route
)192.168.100.100/24
We can help the routers with static routes to get to 192.168.20.0/24:
r1: ip route 192.168.20.0/24 10.0.0.2
r2: ip route 192.168.20.0/24 10.1.1.2
.. and for the way back to 192.168.10.0/24:
r3: ip route 192.168.10.0/24 10.1.1.1
r2: ip route 192.168.10.0/24 10.0.0.1
r1 r2 = 2 hops <- RIP chooses this path
r1 r3 r4 r2 = 4 hops
r1 r5 r6 r2 = 4 hops
r1 r2 = 1000
r1 r3 r4 r2 = 3 <- OSPF chooses this path
r1 r5 r6 r2 = 12
100 800 1000 = 3 <- BGP chooses this path
100 420 69 1000 = 4
We are going to learn all of these protocols.