- Redistribution
- Configuration
- First Example
- Second Example
- Summary
Second Example
For the second example, the basic configuration without redistribution would require OSPF to be set up on R1 and R2 and EIGRP to be set up on R1 and R3. The configuration for these three routers is included:
R1 F0/0 ip address 172.16.1.1 255.255.255.0 F0/1 ip address 10.0.0.1 255.255.255.0 router ospf 10 network 172.16.1.0 0.0.0.255 area 0 router eigrp 10 network 10.0.0.0 no auto-summary R2 F0/0 ip address 172.16.1.2 255.255.255.0 router ospf 10 network 172.16.1.0 0.0.0.255 area 0 R3 F0/0 ip address 10.0.0.2 255.255.255.0 router eigrp 10 network 10.0.0.0 no auto-summary
Now if we wanted to redistribute all OSPF routes into EIGRP (one-way), then the following configuration would be added to R1 (again, because it is configured with both OSPF and EIGRP). For this example, we chose to use the following parameters for an EIGRP metric:
Bandwidth = 100Mbps
Delay = 1000ms
Reliability = 255 (100%)
Load = 1 (0%)
MTU = 1500
R1 router eigrp 10 redistribute ospf 10 metric 100000000 100 255 1 1500
Now if you viewed the routing table on R3, you would see this:
D EX 172.16.1.0 [170/53760] via 10.0.0.1, 00:00:03, FastEthernet0/0