Cele:
- Skonfiguruj RIP version 2 na wszystkich routerach. Rozgłoś interfejsy Loopback routerów R1 oraz R2.
- Router R3 powinien być bramą domyślną dla R1 i R2. Nie dodawaj jej jednak statycznie na R1 i R2, tylko zmień konfigurację RIP na R3. Upewnij się, że możesz pingować adres 3.3.3.3 z R1 i R2.
- Korzystając z polecenia debug znajdź komunikat odnośnie domyślnej trasy.
Adresy IP routerów:
R1
Interfejs | IP |
---|---|
FastEthernet 0/0 | 172.16.13.1/24 |
Loopback 0 | 1.1.1.1/24 |
R2
Interfejs | IP |
---|---|
FastEthernet 0/0 | 172.16.23.2/24 |
Loopback 0 | 2.2.2.2/24 |
R3
Interfejs | IP |
---|---|
FastEthernet 0/0 | 172.16.13.3/24 |
FastEthernet 1/0 | 172.16.23.3/24 |
Loopback 0 | 3.3.3.3/24 |
Schemat sieci:
Router: 3640
IOS: c3640-jk9o3s-mz.124-16a.bin
Rozwiązanie
Skonfiguruj RIP version 2 na wszystkich routerach. Rozgłoś interfejsy Loopback routerów R1 oraz R2.
Włączymy obsługę RIPv2 na wszystkich routerach oraz rozgłosimy podłączone podsieci:
R1(config)#router rip R1(config-router)#version 2 R1(config-router)#no auto-summary R1(config-router)#network 1.0.0.0 R1(config-router)#network 172.16.13.0
R2(config)#router rip R2(config-router)#version 2 R1(config-router)#no auto-summary R2(config-router)#network 2.0.0.0 R2(config-router)#network 172.16.23.0
R3(config)#router rip R3(config-router)#version 2 R1(config-router)#no auto-summary R3(config-router)#network 172.16.13.0 R3(config-router)#network 172.16.23.0
Sprawdzimy tablice routingu dla R1
R1#show ip route | beg Gat Gateway of last resort is not set 1.0.0.0/24 is subnetted, 1 subnets C 1.1.1.0 is directly connected, Loopback0 2.0.0.0/24 is subnetted, 1 subnets R 2.2.2.0 [120/2] via 172.16.13.3, 00:00:11, FastEthernet0/0 172.16.0.0/24 is subnetted, 2 subnets R 172.16.23.0 [120/1] via 172.16.13.3, 00:00:21, FastEthernet0/0 C 172.16.13.0 is directly connected, FastEthernet0/0
Router nauczył się podsieci 2.2.2.0/24 oraz 172.16.23.0/24 przez protokół RIP. Przetestujemy łączność pingując interfejs Loopback 0 routera R2:
R1#ping 2.2.2.2 source loopback 0 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds: Packet sent with a source address of 1.1.1.1 !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 32/37/48 ms
Nie mamy jednak łączności z interfejsem Loopback 0 routera R3, ponieważ nie jest on rozgłaszany w RIP:
R1#ping 3.3.3.3 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds: ..... Success rate is 0 percent (0/5)
Router R3 powinien być bramą domyślną dla R1 i R2. Nie dodawaj jej jednak statycznie na R1 i R2, tylko zmień konfigurację RIP na R3. Upewnij się, że możesz pingować adres 3.3.3.3 z R1 i R2.
W trybie konfiguracji RIP routera R3 dodajemy:
R3(config)#router rip R3(config-router)#default-information originate
Zobaczmy tablice routingu dla R2
R2#show ip route 1.0.0.0/24 is subnetted, 1 subnets R 1.1.1.0 [120/2] via 172.16.23.3, 00:00:17, FastEthernet0/0 172.16.0.0/24 is subnetted, 2 subnets R 172.16.13.0 [120/1] via 172.16.23.3, 00:00:17, FastEthernet0/0 R* 0.0.0.0/0 [120/1] via 172.16.23.3, 00:00:17, FastEthernet0/0
Pojawił się nowy wpis oznaczony jako R*. Domyślna trasa prowadzi teraz przez R3. Sprawdzimy czy możemy pingować interfejs Loopback 0 routera R3:
R2#ping 3.3.3.3 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 12/19/24 ms
R1#ping 3.3.3.3 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 12/19/24 ms
Korzystając z polecenia debug znajdź komunikat odnośnie domyślnej trasy.
Włączymy tryb debug dla komunikatów RIP na routerze R2
R2#debug ip rip RIP protocol debugging is on R2# *Mar 1 00:21:17.011: RIP: received v2 update from 172.16.23.3 on FastEthernet0/0 *Mar 1 00:21:17.011: 0.0.0.0/0 via 0.0.0.0 in 1 hops *Mar 1 00:21:17.015: 1.1.1.0/24 via 0.0.0.0 in 2 hops *Mar 1 00:21:17.015: 172.16.13.0/24 via 0.0.0.0 in 1 hops
Router otrzymał aktualizację tablicy routingu z adresu 172.16.23.3 (router R3). Linia 0.0.0.0/0 via 0.0.0.0 in 1 hops to właśnie trasa domyślna.
0 Komentarze.