[2.VRRP(Virtual Router Redundancy Protocol)]
-> 표준/ Master, Backup/ IP Protocol 112번 사용 /
Hello 주기 : 1초 , Hold Time : 3초 / Multicast : 224.0.0.18
virtual MAC 주소 : 0000.5e00.01NN
-> Master 장비가 선출되는 조건은 다음과 같다.
0) Owner 장비가 Master 장비로 선출.
1) VRRP Priority가 높은 장비. (기본값 100, 범위 : 1 ~ 255)
2) Priority가 동일한 경우 IP 주소가 더 높은 장비.
------------------------------------------------------------------------------------------------------------------------
[2. VRRP Configureration]
<DSW1/DSW2>
conf t
no int vlan 10
no int vlan 20
<DSW1 - vlan 10: Master / vlan 20 : backup>
conf t
track 1 interface fa 1/15 line-protocol -> 트랙 1번에 감시할 인터페이스를 설정한다!
int vlan 10
ip add 10.10.10.252 255.255.255.0
vrrp 10 ip 10.10.10.254
vrrp 10 priority 110
vrrp 10 track 1 decrement 50
vrrp 10 preempt delay minimum 30
(vrrp 10 preempt(vrrp는 이명령어를 안처도 된다.권한을 알아서 가져온다!)
!
int vlan 20
ip add 10.10.20.252 255.255.255.0
vrrp 20 ip 10.10.20.254
(vrrp 20 preempt)
!
<DSW2 - VLAN 10: Backup / VLAN 20: Master>
conf t
track 1 interface fa 1/15 line-protocol
!
int vlan 10
ip add 10.10.10.253 255.255.255.0
vrrp 10 ip 10.10.10.254
!
int vlan 20
ip add 10.10.20.253 255.255.255.0
vrrp 20 ip 10.10.20.254
vrrp 20 priority 110
vrrp 20 track 1 decrement 50
vrrp 20 preempt delay minimum 30
!
=> [preempt]는 기본적으로 적용된다.
일정한 delay 시간이 필요한 경우에 위와 같이 입력.
- verify -
show vrrp
show vrrp brief
==================================================================
[3. GLBP(Gateway Load-Balancing Protocol)]
-> Cisco 전용 / UDP 포트 3222번 사용 / Multicast : 224.0.0.102
-> 하나의 Group에 가상 IP 주소 1개와 가상 MAC 주소 4개를 사용.
즉, Gateway 장비를 동시에 4대를 사용할 수 있다.
-> AVG(Active Virtual Gateway) / AVF(Active Virtual Forwarder)
-> Load-balancing 방식이 다음과 같이 다양하다.
-
Round-Robin(default 동작)
-
Most-Dependent
-
Weight(가중치)
------------------------------------------------------------------------------------------------------------------------
** GLBP Configuration **
<DSW1- AVG>
conf t
track 1 interface fa 1/15 line-protocol
int fa 1/0
glbp 10 ip 10.10.10.254
glbp 10 priority 150
glbp 10 preempt delay minimum 30
---> 여기 까진 AVG
glbp 10 weighting 100 lower 90 upper 100 -> 내가 일을할수 있는 능력치! 100이 기본값이고
90으로 떨어지면 나일못해~ 라는 뜻이다.
다시 100이되면 일을 할수 있다.
glbp 10 weighting track 1 decrement 10
glbp 10 forwarder preempt delay minimum 30
(glbp 10 load-balancing round-robin)
(glbp 10 forwarder preempt-> 디폴트로 설정되있음!)
--->여기 까진 AVF
<DSW2>
conf t
track 1 int fa 1/15 line-protocol
!
int fa 1/0
glbp 10 ip 10.10.10.254
glbp 10 priority 120
glbp 10 preempt
---> 여기 까진 AVG
glbp 10 weighting 100 lower 90 (upper 100) --> 따로 설정안하면 100이 기본
glbp 10 weighting track 1 decrement 50
(glbp 10 forwarder preempt)
!
---> 여기 까진 AVF
<DSW3/DSW4>
conf t
track 1 int fa 1/15 line-protocol
!
int fa 1/0
glbp 10 ip 10.10.10.254
glbp 10 weighting 100 lower 90
glbp 10 weighting track 1 decrement 50
!
--> AVF설정 AVG설정은 안함 이유는 디폴트 100이기때문에 알아서 권한가져옴
-verify-
do sh glbp
do sh glbp brief
'공부 > CCNP' 카테고리의 다른 글
05.09_Switch_STP종류 (0) | 2017.05.10 |
---|---|
05.08_Switch_Spanning-tree (0) | 2017.05.10 |
04.28_Switch_FHRP (0) | 2017.05.02 |
04.27_Switch_GNS3와 로컬연결 (0) | 2017.05.02 |
04.26_Switch_EtherSW-Module/NAT (0) | 2017.05.02 |
댓글