VRRP, GLBP, PVLAN
Ex. HSRP 구성
결과
PC끼리 ping이 된다.
State가 Listen으로 뜨는 것을 확인할 수 있다.
State가 Listen으로 뜨는 것을 확인할 수 있다.
참고
순서 : Initial -> Learn -> Listen -> Speak -> Standby -> Active
VRRP
VRRP 명령어
interface vlan 10
ip address 192.168.10.10 255.255.255.0
vrrp 1 ip 192.168.10.254
vrrp 1 priority 103
vrrp 1 preempt
줘도 되고 안 줘도 되는 명령어
vrrp 1 track 11 decrement 10
track 11 interface g0/1 line-protocol
# show vrrp brief
결과를 보고 싶을 때
State가 Master가 떴다.
State가 Backup이 떴다.
State가 Backup이 떴다.
State가 Backup이 떴다.
GLBP
GLBP 명령어
interface vlan 10
glbp 1 ip 192.168.254
glbp 1 priority 150
glbp 1 preempt
결과
10.1, 10.2, 10.3 PC에서 ping 192.168.20.1 이 되면 된다.
PVLAN
PVLAN 명령어
S1, S2)
vtp mode transparent
vlan 201
private-vlan isolated
vlan 202
private-vlan community
vlan 100
private-vlan primary
private-vlan association 201,202
interface Gi0/2
switchport mode private-vlan host
switchport private-vlan host-association 100 201
interface Gi0/1
switchport mode private-vlan host
switchport private-vlan host-association 100 202
interface Gi0/0
switchport trunk encapsulation dot1q
switchport mode trunk
S2)
interface Gi0/0
switchport mode private-vlan **promiscuous**
switchport mode private-vlan mapping 100 201,202
결과
- 모든 PC에서
192.168.10.254
로 ping이 되면 된다.