Saturday, Jul 31, 2010
Login

Redistribution: RIP,OSPF,EIGRP

rack2_eigrp_rip_ospf_redistribution

We have 6 Routers in this topology.

Tasks to accomplish

1) Make layer-2 connectivity and assign IP addresses to the loopback interfaces.
2) Redistribute mutually between EIGRP, RIP and OSPF
3) Make sure that the traffic to the 1.1.0.0/22 from R2 and R3 goes via the shortest path ie thru s0/0 of R2 and R3.
4) Traffic from R4,R5,R6 to 1.1.0.0/22 should be routed through R2.
5) R3 and R2 shouldn’t have network 6.6.0.0/22 in their routing table.

R1#sh run
interface Loopback0
ip address 1.1.0.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback1
ip address 1.1.1.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback2
ip address 1.1.2.1 255.255.255.0
ip ospf network point-to-point
!
interface Serial0/0
ip address 12.1.1.1 255.255.255.252
serial restart-delay 0
clock rate 64000
!
interface Serial0/1
ip address 13.1.1.1 255.255.255.252
serial restart-delay 0
clock rate 64000
!
interface Serial0/2
no ip address
shutdown
serial restart-delay 0
!
interface Serial0/3
no ip address
shutdown
serial restart-delay 0
!
router rip
version 2
network 1.0.0.0
network 12.0.0.0
network 13.0.0.0
no auto-summary
!
ip http server
no ip http secure-server
!
!

R2#sh run
interface Loopback0
ip address 2.2.0.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback1
ip address 2.2.1.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback2
ip address 2.2.2.1 255.255.255.0
ip ospf network point-to-point
!
interface Serial0/0
ip address 12.1.1.2 255.255.255.252
serial restart-delay 0
clock rate 64000
!
interface Serial0/1
ip address 24.1.1.1 255.255.255.252
serial restart-delay 0
clock rate 64000
!
interface Serial0/2
no ip address
shutdown
serial restart-delay 0
!
interface Serial0/3
no ip address
shutdown
serial restart-delay 0
!
router ospf 1
log-adjacency-changes
redistribute rip metric-type 1 subnets tag 222
network 2.2.2.1 0.0.0.0 area 0
network 24.1.1.1 0.0.0.0 area 0
!
router rip
version 2
redistribute ospf 1 metric 5
network 2.0.0.0
network 12.0.0.0
distribute-list RIPBLOCKLO2 out Serial0/0
distance 109 12.1.1.1 0.0.0.0 RIPDISTANCEMOD109

no auto-summary
!
ip http server
no ip http secure-server
!
!
!
!
ip access-list standard RIPBLOCKLO2
deny   2.2.2.1 log
permit 2.2.0.0 0.0.1.255
permit any
ip access-list standard RIPDISTANCEMOD109
permit 1.1.0.0 0.0.255.255 log
deny   any

!
!

R3#sh run
interface Loopback0
ip address 3.3.0.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback1
ip address 3.3.1.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback2
ip address 3.3.2.1 255.255.255.0
ip ospf network point-to-point
!
interface Serial0/0
ip address 13.1.1.2 255.255.255.252
serial restart-delay 0
clock rate 64000
!
interface Serial0/1
ip address 34.1.1.1 255.255.255.252
serial restart-delay 0
clock rate 64000
!
interface Serial0/2
no ip address
shutdown
serial restart-delay 0
!
interface Serial0/3
no ip address
shutdown
serial restart-delay 0
!
router ospf 1
log-adjacency-changes
redistribute rip metric 10000 metric-type 1 subnets route-map R1LOOPMETRICCHANGE
network 3.3.2.1 0.0.0.0 area 0
network 34.1.1.1 0.0.0.0 area 0
!
router rip
version 2
redistribute static
redistribute ospf 1 metric 9
network 3.0.0.0
network 13.0.0.0
distribute-list RIPBLOCKLO2 out Serial0/0
distance 109 13.1.1.1 0.0.0.0 RIPDISTANCEMOD109

no auto-summary
!
ip http server
no ip http secure-server
!
!
!
!
ip access-list standard R1LOOPMETRICCHANGE
permit 1.1.0.0 0.0.255.255
deny   13.1.1.0 0.0.0.255
ip access-list standard RIPBLOCKLO2
deny   3.3.2.1 log
permit 3.3.0.0 0.0.1.255 log
permit any
ip access-list standard RIPDISTANCEMOD109
permit 1.1.0.0 0.0.255.255 log
deny   any
!
route-map R1LOOPMETRICCHANGE permit 10
match ip address R1LOOPMETRICCHANGE
set metric 1000000
!
route-map R1LOOPMETRICCHANGE permit 20

!
!

R4#sh run
interface Loopback0
ip address 4.4.0.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback1
ip address 4.4.1.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback2
ip address 4.4.2.1 255.255.255.0
ip ospf network point-to-point
!
interface Serial0/0
ip address 34.1.1.2 255.255.255.252
serial restart-delay 0
clock rate 64000
!
interface Serial0/1
ip address 24.1.1.2 255.255.255.252
serial restart-delay 0
clock rate 64000
!
interface Serial0/2
ip address 45.1.1.2 255.255.255.252
serial restart-delay 0
clock rate 64000
!
interface Serial0/3
ip address 46.1.1.2 255.255.255.252
serial restart-delay 0
clock rate 64000
!
router eigrp 100
redistribute ospf 1 metric 10000 100 255 100 1500
network 4.4.2.1 0.0.0.0
network 45.1.1.2 0.0.0.0
network 46.1.1.2 0.0.0.0
no auto-summary
!
router ospf 1
log-adjacency-changes
redistribute eigrp 100 metric-type 1 subnets tag 111
network 4.4.0.1 0.0.0.0 area 0
network 4.4.1.1 0.0.0.0 area 0
network 13.1.1.2 0.0.0.0 area 0
network 24.1.1.2 0.0.0.0 area 0
network 34.1.1.2 0.0.0.0 area 0
distribute-list BLOCk6NETTOR3 out
!
ip http server
no ip http secure-server
!
!
!
!
ip access-list standard BLOCk6NETTOR3
deny   6.6.0.0 0.0.255.255 log
permit any
!
route-map BLOCk6NETTOR3 permit 10
match ip address BLOCk6NETTOR3
match interface Serial0/0
!

!

R5#sh run
interface Loopback0
ip address 5.5.0.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback1
ip address 5.5.1.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback2
ip address 5.5.2.1 255.255.255.0
ip ospf network point-to-point
!
interface Serial0/0
ip address 45.1.1.1 255.255.255.252
serial restart-delay 0
clock rate 64000
!
interface Serial0/1
no ip address
shutdown
serial restart-delay 0
!
interface Serial0/2
no ip address
shutdown
serial restart-delay 0
!
interface Serial0/3
no ip address
shutdown
serial restart-delay 0
!
router eigrp 100
network 5.5.0.0 0.0.255.255
network 45.1.1.1 0.0.0.0
no auto-summary
!
ip http server
no ip http secure-server
!
!

R6#sh run
interface Loopback0
ip address 6.6.0.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback1
ip address 6.6.1.1 255.255.255.0
ip ospf network point-to-point
!
interface Loopback2
ip address 6.6.2.1 255.255.255.0
ip ospf network point-to-point
!
interface Serial0/0
ip address 46.1.1.1 255.255.255.252
serial restart-delay 0
clock rate 64000
!
interface Serial0/1
no ip address
shutdown
serial restart-delay 0
!
interface Serial0/2
no ip address
shutdown
serial restart-delay 0
!
interface Serial0/3
no ip address
shutdown
serial restart-delay 0
!
router eigrp 100
network 6.6.0.0 0.0.255.255
network 46.1.1.1 0.0.0.0
no auto-summary
!
ip http server
no ip http secure-server
!
!

R1#sh ip route
Codes: C – connected, S – static, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2
i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2
ia – IS-IS inter area, * – candidate default, U – per-user static route
o – ODR, P – periodic downloaded static route

Gateway of last resort is not set

34.0.0.0/30 is subnetted, 1 subnets
R       34.1.1.0 [120/5] via 12.1.1.2, 00:00:17, Serial0/0
1.0.0.0/24 is subnetted, 3 subnets
C       1.1.0.0 is directly connected, Loopback0
C       1.1.1.0 is directly connected, Loopback1
C       1.1.2.0 is directly connected, Loopback2
2.0.0.0/24 is subnetted, 3 subnets
R       2.2.0.0 [120/1] via 12.1.1.2, 00:00:17, Serial0/0
R       2.2.1.0 [120/1] via 12.1.1.2, 00:00:17, Serial0/0
R       2.2.2.0 [120/1] via 12.1.1.2, 00:00:17, Serial0/0
3.0.0.0/24 is subnetted, 3 subnets
R       3.3.0.0 [120/1] via 13.1.1.2, 00:00:14, Serial0/1
R       3.3.1.0 [120/1] via 13.1.1.2, 00:00:14, Serial0/1
R       3.3.2.0 [120/1] via 13.1.1.2, 00:00:15, Serial0/1
4.0.0.0/24 is subnetted, 3 subnets
R       4.4.0.0 [120/5] via 12.1.1.2, 00:00:18, Serial0/0
R       4.4.1.0 [120/5] via 12.1.1.2, 00:00:18, Serial0/0
R       4.4.2.0 [120/5] via 12.1.1.2, 00:00:18, Serial0/0
5.0.0.0/24 is subnetted, 3 subnets
R       5.5.0.0 [120/5] via 12.1.1.2, 00:00:18, Serial0/0
R       5.5.1.0 [120/5] via 12.1.1.2, 00:00:18, Serial0/0
R       5.5.2.0 [120/5] via 12.1.1.2, 00:00:18, Serial0/0
24.0.0.0/30 is subnetted, 1 subnets
R       24.1.1.0 [120/5] via 12.1.1.2, 00:00:18, Serial0/0
12.0.0.0/30 is subnetted, 1 subnets
C       12.1.1.0 is directly connected, Serial0/0
46.0.0.0/30 is subnetted, 1 subnets
R       46.1.1.0 [120/5] via 12.1.1.2, 00:00:18, Serial0/0
13.0.0.0/30 is subnetted, 1 subnets
C       13.1.1.0 is directly connected, Serial0/1
45.0.0.0/30 is subnetted, 1 subnets
R       45.1.1.0 [120/5] via 12.1.1.2, 00:00:18, Serial0/0

R2#sh ip route
Codes: C – connected, S – static, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2
i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2
ia – IS-IS inter area, * – candidate default, U – per-user static route
o – ODR, P – periodic downloaded static route

Gateway of last resort is not set

34.0.0.0/30 is subnetted, 1 subnets
O       34.1.1.0 [110/128] via 24.1.1.2, 00:08:04, Serial0/1
1.0.0.0/24 is subnetted, 3 subnets
R       1.1.0.0 [109/1] via 12.1.1.1, 00:00:01, Serial0/0
R       1.1.1.0 [109/1] via 12.1.1.1, 00:00:01, Serial0/0
R       1.1.2.0 [109/1] via 12.1.1.1, 00:00:01, Serial0/0
2.0.0.0/24 is subnetted, 3 subnets
C       2.2.0.0 is directly connected, Loopback0
C       2.2.1.0 is directly connected, Loopback1
C       2.2.2.0 is directly connected, Loopback2
3.0.0.0/24 is subnetted, 3 subnets
O E1    3.3.0.0 [110/10128] via 24.1.1.2, 00:08:04, Serial0/1
O E1    3.3.1.0 [110/10128] via 24.1.1.2, 00:08:04, Serial0/1
O       3.3.2.0 [110/129] via 24.1.1.2, 00:08:05, Serial0/1
4.0.0.0/24 is subnetted, 3 subnets
O       4.4.0.0 [110/65] via 24.1.1.2, 00:08:05, Serial0/1
O       4.4.1.0 [110/65] via 24.1.1.2, 00:08:05, Serial0/1
O E1    4.4.2.0 [110/84] via 24.1.1.2, 00:08:05, Serial0/1
5.0.0.0/24 is subnetted, 3 subnets
O E1    5.5.0.0 [110/84] via 24.1.1.2, 00:08:05, Serial0/1
O E1    5.5.1.0 [110/84] via 24.1.1.2, 00:08:05, Serial0/1
O E1    5.5.2.0 [110/84] via 24.1.1.2, 00:08:05, Serial0/1
24.0.0.0/30 is subnetted, 1 subnets
C       24.1.1.0 is directly connected, Serial0/1
12.0.0.0/30 is subnetted, 1 subnets
C       12.1.1.0 is directly connected, Serial0/0
46.0.0.0/30 is subnetted, 1 subnets
O E1    46.1.1.0 [110/84] via 24.1.1.2, 00:08:05, Serial0/1
13.0.0.0/30 is subnetted, 1 subnets
O E1    13.1.1.0 [110/10128] via 24.1.1.2, 00:08:05, Serial0/1
45.0.0.0/30 is subnetted, 1 subnets
O E1    45.1.1.0 [110/84] via 24.1.1.2, 00:08:05, Serial0/1

R3#sh ip route
Codes: C – connected, S – static, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2
i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2
ia – IS-IS inter area, * – candidate default, U – per-user static route
o – ODR, P – periodic downloaded static route

Gateway of last resort is not set

34.0.0.0/30 is subnetted, 1 subnets
C       34.1.1.0 is directly connected, Serial0/1
1.0.0.0/24 is subnetted, 3 subnets
R       1.1.0.0 [109/1] via 13.1.1.1, 00:00:03, Serial0/0
R       1.1.1.0 [109/1] via 13.1.1.1, 00:00:03, Serial0/0
R       1.1.2.0 [109/1] via 13.1.1.1, 00:00:03, Serial0/0
2.0.0.0/24 is subnetted, 3 subnets
O E1    2.2.0.0 [110/148] via 34.1.1.2, 00:08:33, Serial0/1
O E1    2.2.1.0 [110/148] via 34.1.1.2, 00:08:33, Serial0/1
O       2.2.2.0 [110/129] via 34.1.1.2, 00:08:33, Serial0/1
3.0.0.0/24 is subnetted, 3 subnets
C       3.3.0.0 is directly connected, Loopback0
C       3.3.1.0 is directly connected, Loopback1
C       3.3.2.0 is directly connected, Loopback2
4.0.0.0/24 is subnetted, 3 subnets
O       4.4.0.0 [110/65] via 34.1.1.2, 00:08:33, Serial0/1
O       4.4.1.0 [110/65] via 34.1.1.2, 00:08:33, Serial0/1
O E1    4.4.2.0 [110/84] via 34.1.1.2, 00:08:33, Serial0/1
5.0.0.0/24 is subnetted, 3 subnets
O E1    5.5.0.0 [110/84] via 34.1.1.2, 00:08:33, Serial0/1
O E1    5.5.1.0 [110/84] via 34.1.1.2, 00:08:33, Serial0/1
O E1    5.5.2.0 [110/84] via 34.1.1.2, 00:08:33, Serial0/1
24.0.0.0/30 is subnetted, 1 subnets
O       24.1.1.0 [110/128] via 34.1.1.2, 00:08:33, Serial0/1
12.0.0.0/30 is subnetted, 1 subnets
O E1    12.1.1.0 [110/148] via 34.1.1.2, 00:08:33, Serial0/1
46.0.0.0/30 is subnetted, 1 subnets
O E1    46.1.1.0 [110/84] via 34.1.1.2, 00:08:33, Serial0/1
13.0.0.0/30 is subnetted, 1 subnets
C       13.1.1.0 is directly connected, Serial0/0
45.0.0.0/30 is subnetted, 1 subnets
O E1    45.1.1.0 [110/84] via 34.1.1.2, 00:08:33, Serial0/1

R4#sh ip route
Codes: C – connected, S – static, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2
i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2
ia – IS-IS inter area, * – candidate default, U – per-user static route
o – ODR, P – periodic downloaded static route

Gateway of last resort is not set

34.0.0.0/30 is subnetted, 1 subnets
C       34.1.1.0 is directly connected, Serial0/0
1.0.0.0/24 is subnetted, 3 subnets
O E1    1.1.0.0 [110/84] via 24.1.1.1, 00:08:42, Serial0/1
O E1    1.1.1.0 [110/84] via 24.1.1.1, 00:08:42, Serial0/1
O E1    1.1.2.0 [110/84] via 24.1.1.1, 00:08:42, Serial0/1

2.0.0.0/24 is subnetted, 3 subnets
O E1    2.2.0.0 [110/84] via 24.1.1.1, 00:08:42, Serial0/1
O E1    2.2.1.0 [110/84] via 24.1.1.1, 00:08:42, Serial0/1
O       2.2.2.0 [110/65] via 24.1.1.1, 00:08:42, Serial0/1
3.0.0.0/24 is subnetted, 3 subnets
O E1    3.3.0.0 [110/10064] via 34.1.1.1, 00:08:42, Serial0/0
O E1    3.3.1.0 [110/10064] via 34.1.1.1, 00:08:42, Serial0/0
O       3.3.2.0 [110/65] via 34.1.1.1, 00:08:43, Serial0/0
4.0.0.0/24 is subnetted, 3 subnets
C       4.4.0.0 is directly connected, Loopback0
C       4.4.1.0 is directly connected, Loopback1
C       4.4.2.0 is directly connected, Loopback2
5.0.0.0/24 is subnetted, 3 subnets
D       5.5.0.0 [90/2297856] via 45.1.1.1, 00:55:54, Serial0/2
D       5.5.1.0 [90/2297856] via 45.1.1.1, 00:55:54, Serial0/2
D       5.5.2.0 [90/2297856] via 45.1.1.1, 00:55:54, Serial0/2
6.0.0.0/24 is subnetted, 3 subnets
D       6.6.0.0 [90/2297856] via 46.1.1.1, 00:55:54, Serial0/3
D       6.6.1.0 [90/2297856] via 46.1.1.1, 00:55:54, Serial0/3
D       6.6.2.0 [90/2297856] via 46.1.1.1, 00:55:54, Serial0/3
24.0.0.0/30 is subnetted, 1 subnets
C       24.1.1.0 is directly connected, Serial0/1
12.0.0.0/30 is subnetted, 1 subnets
O E1    12.1.1.0 [110/84] via 24.1.1.1, 00:08:43, Serial0/1
46.0.0.0/30 is subnetted, 1 subnets
C       46.1.1.0 is directly connected, Serial0/3
13.0.0.0/30 is subnetted, 1 subnets
O E1    13.1.1.0 [110/10064] via 34.1.1.1, 00:08:43, Serial0/0
45.0.0.0/30 is subnetted, 1 subnets
C       45.1.1.0 is directly connected, Serial0/2

R5#sh ip route
Codes: C – connected, S – static, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2
i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2
ia – IS-IS inter area, * – candidate default, U – per-user static route
o – ODR, P – periodic downloaded static route

Gateway of last resort is not set

34.0.0.0/30 is subnetted, 1 subnets
D EX    34.1.1.0 [170/2195456] via 45.1.1.2, 00:56:19, Serial0/0
1.0.0.0/24 is subnetted, 3 subnets
D EX    1.1.0.0 [170/2195456] via 45.1.1.2, 00:56:04, Serial0/0
D EX    1.1.1.0 [170/2195456] via 45.1.1.2, 00:56:04, Serial0/0
D EX    1.1.2.0 [170/2195456] via 45.1.1.2, 00:56:04, Serial0/0
2.0.0.0/24 is subnetted, 3 subnets
D EX    2.2.0.0 [170/2195456] via 45.1.1.2, 00:56:04, Serial0/0
D EX    2.2.1.0 [170/2195456] via 45.1.1.2, 00:56:04, Serial0/0
D EX    2.2.2.0 [170/2195456] via 45.1.1.2, 00:56:04, Serial0/0
3.0.0.0/24 is subnetted, 3 subnets
D EX    3.3.0.0 [170/2195456] via 45.1.1.2, 00:09:08, Serial0/0
D EX    3.3.1.0 [170/2195456] via 45.1.1.2, 00:09:08, Serial0/0
D EX    3.3.2.0 [170/2195456] via 45.1.1.2, 00:09:09, Serial0/0
4.0.0.0/24 is subnetted, 3 subnets
D EX    4.4.0.0 [170/2195456] via 45.1.1.2, 00:56:20, Serial0/0
D EX    4.4.1.0 [170/2195456] via 45.1.1.2, 00:56:20, Serial0/0
D       4.4.2.0 [90/2297856] via 45.1.1.2, 00:56:20, Serial0/0
5.0.0.0/24 is subnetted, 3 subnets
C       5.5.0.0 is directly connected, Loopback0
C       5.5.1.0 is directly connected, Loopback1
C       5.5.2.0 is directly connected, Loopback2
6.0.0.0/24 is subnetted, 3 subnets
D       6.6.0.0 [90/2809856] via 45.1.1.2, 00:56:20, Serial0/0
D       6.6.1.0 [90/2809856] via 45.1.1.2, 00:56:20, Serial0/0
D       6.6.2.0 [90/2809856] via 45.1.1.2, 00:56:20, Serial0/0
24.0.0.0/30 is subnetted, 1 subnets
D EX    24.1.1.0 [170/2195456] via 45.1.1.2, 00:56:20, Serial0/0
12.0.0.0/30 is subnetted, 1 subnets
D EX    12.1.1.0 [170/2195456] via 45.1.1.2, 00:56:05, Serial0/0
46.0.0.0/30 is subnetted, 1 subnets
D       46.1.1.0 [90/2681856] via 45.1.1.2, 00:56:20, Serial0/0
13.0.0.0/30 is subnetted, 1 subnets
D EX    13.1.1.0 [170/2195456] via 45.1.1.2, 00:09:09, Serial0/0
45.0.0.0/30 is subnetted, 1 subnets
C       45.1.1.0 is directly connected, Serial0/0

R6#sh ip route
Codes: C – connected, S – static, R – RIP, M – mobile, B – BGP
D – EIGRP, EX – EIGRP external, O – OSPF, IA – OSPF inter area
N1 – OSPF NSSA external type 1, N2 – OSPF NSSA external type 2
E1 – OSPF external type 1, E2 – OSPF external type 2
i – IS-IS, su – IS-IS summary, L1 – IS-IS level-1, L2 – IS-IS level-2
ia – IS-IS inter area, * – candidate default, U – per-user static route
o – ODR, P – periodic downloaded static route

Gateway of last resort is not set

34.0.0.0/30 is subnetted, 1 subnets
D EX    34.1.1.0 [170/2195456] via 46.1.1.2, 00:56:39, Serial0/0
1.0.0.0/24 is subnetted, 3 subnets
D EX    1.1.0.0 [170/2195456] via 46.1.1.2, 00:56:24, Serial0/0
D EX    1.1.1.0 [170/2195456] via 46.1.1.2, 00:56:24, Serial0/0
D EX    1.1.2.0 [170/2195456] via 46.1.1.2, 00:56:24, Serial0/0
2.0.0.0/24 is subnetted, 3 subnets
D EX    2.2.0.0 [170/2195456] via 46.1.1.2, 00:56:24, Serial0/0
D EX    2.2.1.0 [170/2195456] via 46.1.1.2, 00:56:24, Serial0/0
D EX    2.2.2.0 [170/2195456] via 46.1.1.2, 00:56:24, Serial0/0
3.0.0.0/24 is subnetted, 3 subnets
D EX    3.3.0.0 [170/2195456] via 46.1.1.2, 00:09:28, Serial0/0
D EX    3.3.1.0 [170/2195456] via 46.1.1.2, 00:09:28, Serial0/0
D EX    3.3.2.0 [170/2195456] via 46.1.1.2, 00:09:29, Serial0/0
4.0.0.0/24 is subnetted, 3 subnets
D EX    4.4.0.0 [170/2195456] via 46.1.1.2, 00:56:40, Serial0/0
D EX    4.4.1.0 [170/2195456] via 46.1.1.2, 00:56:40, Serial0/0
D       4.4.2.0 [90/2297856] via 46.1.1.2, 00:56:40, Serial0/0
5.0.0.0/24 is subnetted, 3 subnets
D       5.5.0.0 [90/2809856] via 46.1.1.2, 00:56:40, Serial0/0
D       5.5.1.0 [90/2809856] via 46.1.1.2, 00:56:40, Serial0/0
D       5.5.2.0 [90/2809856] via 46.1.1.2, 00:56:40, Serial0/0
6.0.0.0/24 is subnetted, 3 subnets
C       6.6.0.0 is directly connected, Loopback0
C       6.6.1.0 is directly connected, Loopback1
C       6.6.2.0 is directly connected, Loopback2
24.0.0.0/30 is subnetted, 1 subnets
D EX    24.1.1.0 [170/2195456] via 46.1.1.2, 00:56:40, Serial0/0
12.0.0.0/30 is subnetted, 1 subnets
D EX    12.1.1.0 [170/2195456] via 46.1.1.2, 00:56:25, Serial0/0
46.0.0.0/30 is subnetted, 1 subnets
C       46.1.1.0 is directly connected, Serial0/0
13.0.0.0/30 is subnetted, 1 subnets
D EX    13.1.1.0 [170/2195456] via 46.1.1.2, 00:09:29, Serial0/0
45.0.0.0/30 is subnetted, 1 subnets
D       45.1.1.0 [90/2681856] via 46.1.1.2, 00:56:40, Serial0/0

Things yet to figure out: How can i allow R2 to learn abt the 6.6.0.0/22 network while R3 stays in the dark about the 6.6.0.0/22 network.

Related posts:

  1. Will Distance Command Alter EIGRP EX Route’s Administrative Distance?
  2. EIGRP: Need of Floating Summary Routes
  3. Demystifying RIPv2 NextHop Field
  4. Secrets Of The EIGRP Offset-List Command
  5. Redistribution into OPSF without subnets keyword