글 작성자: 마노링
반응형
@@RIP(Routing Information Protocol)
- 알고리즘 : Distance Vector 개열의 B.F(Bellman Ford) 알고리즘
- 정보수집 : 정기적인 업데이트(Timer)
Update Timer(30s) |---30s---|
Invaild Timer(180s) |-----180s-----|
HoldDown Timer(180s)                  |180s~
Flush Timer(240s)|----------240s----------|

-BestPath : Hopcount(라우터대수)
                 4bit s^4 = 0001 ~ 1111 : 1 ~ 15
                 Networkd 정보 Fail이 생기면 Neighbor들에게 Metric값을 16으로 변경하에 알려준다.

-Network 유지 : 정기적인 업데이트

-관리거리 : 120

@RIP RIPv1과 RIPv2로 구분된다.
-RIPv1 (Classfull)
VLSM이나 CIDR을 지원하지 않는다.
정보전달시 Subnetmask를 전달하지 않는다.
정보전달시 UDP:520을 통해서 Broadcast(255.255.255.255)로 전달한다.

-RIPv2(Classless)
VLSM이나 CIDR을 지원한다.
정보전달시 Subnetmask를 전달한다.
정보전달시 UDP:520을 통해서 Multicast(224.0.0.9)로 전달한다.

@RIP config
-RIPv1
Router(config)#router rip => RIP Protocol Enable
Router(config-router)#auto-summary => Default로 Enable(Classfull Summary)
Router(config-router)#network <Classfull Network> => Match 기법을 통해서 Interface에서 직접찾아 매치되는 모든 정보를 전달

-RIPv2
Router(config)#router rip => RIP Protocol Enable
Router(config-router)#version 2 => RIPv2 Enable
Router(config-router)#auto-summary => Default로 Enable(Classfull Summary)
Router(config-router)#no auto-summary => Auto-summary 기능 해제, 이 기능 해제 후 관리자의 설정에 의해 Classless하게 Summary 가능
Router(config-router)#network <Classfull Network> => Match 기법을 통해서 Interface에서 직접찾아 매치되는 모든 정보를 전달

@RIPv1 Config
R1#sh ip route Connect
C       172.11.1.0 is directly connected, Loopback1
C       172.11.0.0 is directly connected, Loopback0
C       192.168.1.8 is directly connected, Serial1/1
C       192.168.1.0 is directly connected, Serial1/0

R2$sh ip route connect
C       172.12.0.0 is directly connected, FastEthernet0/0
C       172.12.1.0 is directly connected, Loopback1
C       192.168.1.0 is directly connected, Serial1/0
C       192.168.1.4 is directly connected, Serial1/1

R3#sh ip route connect
C       172.13.1.0 is directly connected, Loopback1
C       172.13.0.0 is directly connected, Loopback0
C       192.168.1.8 is directly connected, Serial1/0
C       192.168.1.4 is directly connected, Serial1/1

[Capture 하기]
Dynagen => capture R1 s1/0 RIP.cap HDLC

@RIPv1 Config

R1
!
conf t
router rip
network 172.11.0.0
network 192.168.1.0
end

R2
!
conf t
router rip
network 172.12.0.0
network 192.168.1.0
end

R3
!
conf t
router rip
network 172.13.0.0
network 192.168.1.0
end

@RIPv2 Config

R1
!
conf t
router rip
version 2
end

R2
!
conf t
router rip
version 2
end

R3
!
conf t
router rip
version 2
end

@Auto-summary 기능 해제

R1
!
conf t
router rip
no auto-summary
end

R2
!
conf t
router rip
no auto-summary
end

R3
!
conf t
router rip
no auto-summary
end

@ Manual Summary
Auto-summary 기능 해제
R1
!
conf t
router rip
no auto-summary
end

R2
!
conf t
router rip
no auto-summary
end

R3
!
conf t
router rip
no auto-summary
end

@Auto-summray 해체 후 Manual Summary 하기

R1
!
conf t
int s1/0
ip summary-address rip 172.11.0.0 255.255.254.0
int s1/1
ip summary-address rip 172.11.0.0 255.255.254.0

R2
!
conf t
int s1/0
ip summary-address rip 172.12.0.0 255.255.254.0
int s1/1
ip summary-address rip 172.12.0.0 255.255.254.0

R3
!
conf t
int s1/0
ip summary-address rip 172.13.0.0 255.255.254.0
int s1/1
ip summary-address rip 172.13.0.0 255.255.254.0


@Default Route
R1
!
conf t
int lo 10
ip add 10.10.10.1 255.255.255.0
end

R2#ping 10.10.10.1
....

R1
!
conf t
route rip
default information originate

R2#sh ip route
R* 0.0.0.0/0 - R1
R2#ping 10.10.10.1
!!!!!


반응형

'공부(工夫) > CCNA' 카테고리의 다른 글

CCNA 15강 수업내용  (0) 2009.01.23
CCNA 14강 수업내용  (0) 2009.01.22
CCNA 13강 수업내용  (0) 2009.01.21
CCNA 11강 수업내용  (0) 2009.01.19
CCNA 10강 수업내용  (0) 2009.01.16
Static Route vs Dynamic Routing Protocol  (0) 2009.01.15