Tuesday, April 4, 2017

RIP - Basic

Topology












Ip Address :
R1 :
    Serial0/0             : 12.12.12.1/24
    FastEthernet0/0  : 13.13.13.1/24
    Loopback0         : 11.11.11.11/32


R2 :
    Serial0/0             : 12.12.12.2/24
    Serial0/1             : 23.23.23.2/24
    Loopback0         : 22.22.22.22/32


R3 :
    Serial0/1             : 23.23.23.3/24
    FastEthernet0/0  : 13.13.13.3/24
    Loopback0         : 33.33.33.33/32


Task :
Configure RIP routing on each router and advertise all interfaces.

Solution :

R1 :
router rip
network 11.0.0.0
network 12.0.0.0
network 13.0.0.0
 R2 :
router rip
network 12.0.0.0
network 22.0.0.0
R3 :
router rip
network 13.0.0.0
network 23.0.0.0
network 33.0.0.0
Verification :
Check the neighbor's route information in all router with command "show ip route rip" and "show ip rip database".

R1 :
R1#sh ip route rip
R    33.0.0.0/8 [120/1] via 13.13.13.3, 00:00:16, FastEthernet0/0
R    23.0.0.0/8 [120/1] via 13.13.13.3, 00:00:16, FastEthernet0/0
                        [120/1] via 12.12.12.2, 00:00:04, Serial0/0
R    22.0.0.0/8 [120/1] via 12.12.12.2, 00:00:04, Serial0/0

R1#sh ip rip database
11.0.0.0/8    auto-summary
11.11.11.11/32    directly connected, Loopback0
12.0.0.0/8    auto-summary
12.12.12.0/24    directly connected, Serial0/0
13.0.0.0/8    auto-summary
13.13.13.0/24    directly connected, FastEthernet0/0
22.0.0.0/8    auto-summary
22.0.0.0/8    [1] via 12.12.12.2, 00:00:13, Serial0/0
23.0.0.0/8    auto-summary
23.0.0.0/8    [1] via 12.12.12.2, 00:00:13, Serial0/0
                    [1] via 13.13.13.3, 00:00:23, FastEthernet0/0
33.0.0.0/8    auto-summary
33.0.0.0/8    [1] via 13.13.13.3, 00:00:23, FastEthernet0/0
R1#
R2 :
R2#show ip route rip
R    33.0.0.0/8 [120/1] via 23.23.23.3, 00:00:10, Serial0/1
R    11.0.0.0/8 [120/1] via 12.12.12.1, 00:00:29, Serial0/0
R    13.0.0.0/8 [120/1] via 23.23.23.3, 00:00:10, Serial0/1
                        [120/1] via 12.12.12.1, 00:00:29, Serial0/0
R2#show ip rip database
11.0.0.0/8    auto-summary
11.0.0.0/8    [1] via 12.12.12.1, 00:00:07, Serial0/0
12.0.0.0/8    auto-summary
12.12.12.0/30    directly connected, Serial0/0
13.0.0.0/8    auto-summary
13.0.0.0/8    [1] via 23.23.23.3, 00:00:19, Serial0/1
                    [1] via 12.12.12.1, 00:00:07, Serial0/0
22.0.0.0/8    auto-summary
22.22.22.22/32    directly connected, Loopback0
23.0.0.0/8    auto-summary
23.23.23.0/24    directly connected, Serial0/1
33.0.0.0/8    auto-summary
33.0.0.0/8    [1] via 23.23.23.3, 00:00:19, Serial0/1
R2# 
R3:
R3#show ip route rip
R    22.0.0.0/8 [120/1] via 23.23.23.2, 00:00:24, Serial0/1
R    11.0.0.0/8 [120/1] via 13.13.13.1, 00:00:10, FastEthernet0/0
R    12.0.0.0/8 [120/1] via 23.23.23.2, 00:00:24, Serial0/1
                        [120/1] via 13.13.13.1, 00:00:10, FastEthernet0/0

R3#sh ip rip database
11.0.0.0/8    auto-summary
11.0.0.0/8    [1] via 13.13.13.1, 00:00:15, FastEthernet0/0
12.0.0.0/8    auto-summary
12.0.0.0/8    [1] via 23.23.23.2, 00:00:29, Serial0/1
                    [1] via 13.13.13.1, 00:00:15, FastEthernet0/0
13.0.0.0/8    auto-summary
13.13.13.0/24    directly connected, FastEthernet0/0
22.0.0.0/8    auto-summary
22.0.0.0/8    [1] via 23.23.23.2, 00:00:29, Serial0/1
23.0.0.0/8    auto-summary
23.23.23.0/24    directly connected, Serial0/1
33.0.0.0/8    auto-summary
33.33.33.33/32    directly connected, Loopback0
R3#

0 comments:

Post a Comment