재분배 (Redistribute)
- 중복하기 싫을 때 나온 것이 재분배.
- rip : 소규모
- eigrp : 중소규모
- ospf : 대기업
BGP : 전세계
- rip으로 배운 네트워크를 eigrp 로 재분배.
- rip으로 배운 네트워크를 ospf 로 재분배.
- eigrp 를 rip으로 재분배.
eigrp 를 ospf 로 재분배.
Connected
= 직접 붙어 있는 것.
router rip
redistribute ~ A ~ : A를 rip으로 재분배
Ex. 재분배 01
방법
R2)
router rip
version 2
network 1.0.0.0
network 126.0.0.0
no auto-summary
redistribute eigrp 100 metric 1
redistribute ospf 1 metric 1
router eigrp 100
network 2.0.0.0
no auto-summary
router ospf 1
network 3.3.34.0 0.0.0.255 area 0
결과
Ex. 재분배 02
방법.
R2) - X
router ospf 1
redistribute rip subnets metric 20
redistribute eigrp 100 subnets metric 20
R2) - O
router eigrp 100
redistribute rip metric 1 1 1 1 1
redistribute ospf 1 metric 1 1 1 1 1
결과
정리
R1)
R 5개
R2)
R 1개
D 1개
O 1개
R3)
D EX 5개
R4)
E2 5개
ping은 정상적으로 다 잘 가야 됨.
Ex. 재분배 03
재분배는 항상 중간에서.
방법.
R3)
router eigrp 100
redistribute rip metric 1 1 1 1 1
redistribute ospf 1 metric 1 1 1 1 1
redistribute eigrp 200 metric 1 1 1 1 1
router eigrp 200
redistribute rip metric 1 1 1 1 1
redistribute ospf 1 metric 1 1 1 1 1
redistribute eigrp 100 metric 1 1 1 1 1
router rip
version 2
redistribute eigrp 100 metric 1
redistribute eigrp 200 metric 1
redistribute ospf 1 metric 1
router ospf 1
redistribute rip subnets metric 20
redistribute eigrp 100 subnets metric 20
redistribute eigrp 200 subnet metric 20
결과.
ping 전부 감.
Ex. Loopback 추가
Loopback 추가
결과
Ex. redistribute connected ~
방법
R1)
router eigrp 100
network 192.168.10.0
network 1.0.0.0
redistribute connected metric 1 1 1 1 1
R2)
router eigrp 200
network 192.168.30.0
network 2.0.0.0
redistribute connected metric 1 1 1 1 1
R4)
router rip
version 2
network 192.168.30.0
network 3.0.0.0
redistribute connected metric 1
R5)
router ospf 1
network 192.168.40.0 0.0.0.255 area 0
network 4.4.12.0 0.0.0.255 area 0
redistribute connected subnets metric 20
결과
Ex. Static Route를 재분배
방법
R3)
ip route 100.1.1.0 255.255.255.0 1.1.15.1
router eigrp 200
redistribute static metric 1 1 1 1 1
router rip
redistribute static metric 1
router ospf 1
redistribute static subnets metric 20
결과
R3)