All language subtitles for 5. Static Routing 5

af Afrikaans
sq Albanian
am Amharic
ar Arabic
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bn Bengali
bs Bosnian
bg Bulgarian
ca Catalan
ceb Cebuano
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
tl Filipino
fi Finnish
fr French
fy Frisian
gl Galician
ka Georgian
de German
el Greek
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
km Khmer
ko Korean
ku Kurdish (Kurmanji)
ky Kyrgyz
lo Lao
la Latin
lv Latvian
lt Lithuanian
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mn Mongolian
my Myanmar (Burmese)
ne Nepali
no Norwegian
ps Pashto
fa Persian
pl Polish
pt Portuguese Download
pa Punjabi
ro Romanian
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian
st Sesotho
sn Shona
sd Sindhi
si Sinhala
sk Slovak
sl Slovenian
so Somali
es Spanish
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
te Telugu
th Thai
tr Turkish
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
or Odia (Oriya)
rw Kinyarwanda
tk Turkmen
tt Tatar
ug Uyghur
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 1 00:00:00,000 --> 00:00:05,000 align:middle line:84% So router 1 can ping the loopback of router 3 2 00:00:05,000 --> 00:00:11,000 align:middle line:84% but notice the ping was sent from 10.1.1.1 to router 3. 3 00:00:11,000 --> 00:00:17,000 align:middle line:84% With ping you can specify the source interface of a ping 4 00:00:17,000 --> 00:00:23,000 align:middle line:84% so I could say loopback 0 or specify the source IP address. 5 00:00:23,000 --> 00:00:27,000 align:middle line:84% So let’s specify loopback 0 6 00:00:27,000 --> 00:00:32,000 align:middle line:84% in other words, pings are being sent from the loopback of router 1 to router 3 7 00:00:32,000 --> 00:00:38,000 align:middle line:84% but the pings are failing because router 3 is receiving a ping 8 00:00:38,000 --> 00:00:41,000 align:middle line:84% from an IP address of 1.1.1.1 9 00:00:41,000 --> 00:00:45,000 align:middle line:84% sh run int loopback0 10 00:00:45,000 --> 00:00:51,000 align:middle line:84% this router has this IP address configured on loopback0 11 00:00:51,000 --> 00:00:57,000 align:middle line:84% and we are telling the router to ping the loopback of router 3 12 00:00:57,000 --> 00:01:02,000 align:middle line:84% using the IP address as configured on loopback 0. 13 00:01:02,000 --> 00:01:05,000 align:middle line:84% We can see that in the debug on router3 14 00:01:05,000 --> 00:01:09,000 align:middle line:84% does router 3 have that route in its routing table? 15 00:01:09,000 --> 00:01:18,000 align:middle line:84% The answer is no, so debug ip packet do the ping again 16 00:01:18,000 --> 00:01:25,000 align:middle line:84% what we can see is that it’s unroutable. 17 00:01:25,000 --> 00:01:30,000 align:middle line:84% Router 3 doesn’t know how to get back to 1.1.1.1 18 00:01:30,000 --> 00:01:36,000 align:middle line:84% so we need to configure the loopback of router 1 on router 3 19 00:01:36,000 --> 00:01:38,000 align:middle line:84% and this is the problem 20 00:01:38,000 --> 00:01:40,000 align:middle line:84% how many routes do you need to configure 21 00:01:40,000 --> 00:01:43,000 align:middle line:84% on this routers to allow for full communication? 22 00:01:43,000 --> 00:01:46,000 align:middle line:84% A lot of static routes need to be configured 23 00:01:46,000 --> 00:01:49,000 align:middle line:84% to allow full connectivity between these routers. 24 00:01:49,000 --> 00:01:54,000 align:middle line:84% So sh run | include route on router 3 25 00:01:54,000 --> 00:01:58,000 align:middle line:84% shows me that I have 1 static route configured. 26 00:01:58,000 --> 00:02:04,000 align:middle line:84% So I need to configure another static route 1.1.1.1 27 00:02:04,000 --> 00:02:11,000 align:middle line:84% and that’s available from router 3 points of view via 10.1.2.1 28 00:02:11,000 --> 00:02:14,000 align:middle line:84% from router 3 points of view to get to this loopback 29 00:02:14,000 --> 00:02:17,000 align:middle line:84% it needs to forward traffic via this IP address. 30 00:02:17,000 --> 00:02:30,000 align:middle line:84% However, the ping is still failing, we can see a message on router 3 31 00:02:30,000 --> 00:02:34,000 align:middle line:84% saying that it receives a message from 10.1.2.1 32 00:02:34,000 --> 00:02:37,000 align:middle line:84% stating that this address is unreachable. 33 00:02:37,000 --> 00:02:39,000 align:middle line:84% So in other words 34 00:02:39,000 --> 00:02:43,000 align:middle line:84% router 1 is sending traffic from this loopback interface 35 00:02:43,000 --> 00:02:45,000 align:middle line:84% to this loopback interface 36 00:02:45,000 --> 00:02:48,000 align:middle line:84% and it gets successfully to router 3. 37 00:02:48,000 --> 00:02:52,000 align:middle line:84% Router 3 tries to route it back to router 2 38 00:02:52,000 --> 00:02:54,000 align:middle line:84% but router 2 is saying host unreachable. 39 00:02:54,000 --> 00:03:00,000 align:middle line:84% In other words, router 2 doesn’t have a route to 1.1.1.1 40 00:03:00,000 --> 00:03:04,000 align:middle line:84% which as we can see in the routing table isn’t there. 41 00:03:04,000 --> 00:03:07,000 align:middle line:84% So we have to configure a static route 42 00:03:07,000 --> 00:03:16,000 align:middle line:84% on router 2 to the loopback of router 1 via 10.1.1.1 43 00:03:16,000 --> 00:03:20,000 align:middle line:84% does the ping work now? Yes, it does. 44 00:03:20,000 --> 00:03:25,000 align:middle line:84% so ping succeeds from the loopback of router 1 45 00:03:25,000 --> 00:03:29,000 align:middle line:84% to the loopback of router 3 because router 2 now knows 46 00:03:29,000 --> 00:03:34,000 align:middle line:84% about the loopback of router 3 as well as the loopback of router 1. 47 00:03:34,000 --> 00:03:36,000 align:middle line:84% Are we finished? 48 00:03:36,000 --> 00:03:44,000 align:middle line:84% show ip route, so router 1 kind of looks right 49 00:03:44,000 --> 00:03:47,000 align:middle line:84% let’s do a show run, show run | include route 50 00:03:47,000 --> 00:03:52,000 align:middle line:84% Router 1 has 3 static routes in the routing table. 51 00:03:52,000 --> 00:03:54,000 align:middle line:84% 1 for this network, 1 for this network and 1 for this network 52 00:03:54,000 --> 00:03:58,000 align:middle line:84% so that looks good. Router 2 show ip route 53 00:03:58,000 --> 00:04:04,000 align:middle line:84% router 2 only has a static route to the loopback of router 1 54 00:04:04,000 --> 00:04:10,000 align:middle line:84% and loopback of router 3 which is correct for the network shown in the diagram. 55 00:04:10,000 --> 00:04:13,000 align:middle line:84% What about router 3? show ip route 56 00:04:13,000 --> 00:04:18,000 align:middle line:84% it has a static route to the loopback of router 1 57 00:04:18,000 --> 00:04:23,000 align:middle line:84% it has a static route to 10.1.1.0 58 00:04:23,000 --> 00:04:27,000 align:middle line:84% but it doesn’t have a static route to the loopback of router 2 59 00:04:27,000 --> 00:04:29,000 align:middle line:84% I'll just turn off debugging 60 00:04:29,000 --> 00:04:33,000 align:middle line:84% and then try and ping the loopback of router 2 61 00:04:33,000 --> 00:04:35,000 align:middle line:84% what you’ll notice is the pings fail. 62 00:04:35,000 --> 00:04:40,000 align:middle line:84% So what I need to do is configure a route 63 00:04:40,000 --> 00:04:47,000 align:middle line:84% to the loopback of router 2 via the next hop 10.1.2.1 64 00:04:47,000 --> 00:04:52,000 align:middle line:84% so router 3 can now ping the loopback of router 2 65 00:04:52,000 --> 00:04:57,000 align:middle line:84% it can ping the loopback of router 1 that’s good 66 00:04:57,000 --> 00:05:00,000 align:middle line:84% router 1 can ping the loopback of router 2 67 00:05:00,000 --> 00:05:05,000 align:middle line:84% and the loopback of router 3 I'll turn debugging off on router 2 68 00:05:05,000 --> 00:05:12,000 align:middle line:84% it can ping the loopback of router 1 and the loopback of router 3. 69 00:05:12,000 --> 00:05:14,000 align:middle line:84% now I did add some extra networks 70 00:05:14,000 --> 00:05:17,000 align:middle line:84% show ip route on router 1 71 00:05:17,000 --> 00:05:25,000 align:middle line:84% shows me that I added 10.1.10.0 as well as 1.1.1.2 72 00:05:25,000 --> 00:05:30,000 align:middle line:84% so can router 2 ping 1.1.1.2 and the answer is no 73 00:05:30,000 --> 00:05:33,000 align:middle line:84% in the routing table of router 2 74 00:05:33,000 --> 00:05:39,000 align:middle line:84% I only have a static route to 1.1.1.1 75 00:05:39,000 --> 00:05:48,000 align:middle line:84% so I would need to add another route for 1.1.1.2 76 00:05:48,000 --> 00:05:56,000 align:middle line:84% so I could type IP route 1.1.1.2/32 mask 10.1.1.1 77 00:05:56,000 --> 00:06:02,000 align:middle line:84% and now I’ll be able to ping 1.1.1.2 78 00:06:02,000 --> 00:06:08,000 align:middle line:84% now do I have to use explicit mask as per 79 00:06:08,000 --> 00:06:17,000 align:middle line:84% the subnets configured on interfaces and the answer is no. 80 00:06:17,000 --> 00:06:23,000 align:middle line:84% I could as an example remove this static route 81 00:06:23,000 --> 00:06:29,000 align:middle line:84% and change that to something like this 82 00:06:29,000 --> 00:06:41,000 align:middle line:84% so in other words, I’m going to match 10.1.1.1.0 83 00:06:41,000 --> 00:06:47,000 align:middle line:84% and anything in that range is going to be forwarded to 10.1.2.1 84 00:06:47,000 --> 00:06:51,000 align:middle line:84% so ping 1.1.1.1 that works and 1.1.1.2 also works 85 00:06:51,000 --> 00:06:55,000 align:middle line:84% you need to be careful however doing that 86 00:06:55,000 --> 00:07:00,000 align:middle line:84% because this doesn’t just match those 2 networks 87 00:07:00,000 --> 00:07:05,000 align:middle line:84% it matches anything in the range 1.1.1.0 88 00:07:05,000 --> 00:07:09,000 align:middle line:84% but in this case based on our topology, I can do that 89 00:07:09,000 --> 00:07:13,000 align:middle line:84% router 1 also has this additional network that I added 90 00:07:13,000 --> 00:07:24,000 align:middle line:84% so I need to configure that network as well on router 2 91 00:07:24,000 --> 00:07:29,000 align:middle line:84% as well as I'll just copy this to make it easier, as well as router 3 92 00:07:29,000 --> 00:07:36,000 align:middle line:84% and you need to be careful doing copying and pasting like I’ve just done 93 00:07:36,000 --> 00:07:41,000 align:middle line:84% because that should be 2.1 on this router. 94 00:07:41,000 --> 00:07:49,000 align:middle line:84% So ping 10.1.10.1 ping works ping 10.1.10.1 95 00:07:49,000 --> 00:07:55,000 align:middle line:84% which is the loopback to IP address configured on router 1. 96 00:07:55,000 --> 00:07:59,000 align:middle line:84% So here’s the problem, we configured a very small network 97 00:07:59,000 --> 00:08:05,000 align:middle line:84% but we configured 3 static routes on router 1 98 00:08:05,000 --> 00:08:10,000 align:middle line:84% we've configured 4 static routes on router 2 99 00:08:10,000 --> 00:08:19,000 align:middle line:84% and we've configured 4 static routes on router 3 100 00:08:19,000 --> 00:08:22,000 align:middle line:84% that’s 11 routes just to get this network working 101 00:08:22,000 --> 00:08:27,000 align:middle line:84% it would have been told if I hadn’t use a summary route on router 3 102 00:08:27,000 --> 00:08:30,000 align:middle line:84% that's a lot of work for very small network 103 00:08:30,000 --> 00:08:34,000 align:middle line:84% and that’s 1 of the problems with static routes, it’s a lot of work 104 00:08:34,000 --> 00:08:39,000 align:middle line:84% to configure this routes and you the person that has to configure them. 105 00:08:39,000 --> 00:08:44,000 align:middle line:84% Dynamic routing protocols allow routes to be automatically learned 106 00:08:44,000 --> 00:08:48,000 align:middle line:84% and adjusted so the work is shifted from your shoulders to the routers. 107 00:08:48,000 --> 00:08:51,000 align:middle line:84% The routing protocols do the heavy lifting 108 00:08:51,000 --> 00:08:56,000 align:middle line:84% rather than you having to do all this manual configuration. 12282

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.