GLBP - Gateway Load Balancing Prototocol
Pada lab kali ini saya akan membahas tentang GLBP cisco. GLBP atau Gateway Load Balancing Protocol adalah salah satu Cisco proprietary protocol yang hampir mirip dengan HSRP dan VRRP yang digunakan untuk redundancy sedangkan GLBP ini digunakan untuk Load balancing. load balancing adalah konsep yang digunakan untuk menyeimbangkan beban.
Deviced
|
Interface
|
IP
|
Gateway
|
R3
|
Lo1
|
8.8.8.8/32
|
|
Fa0/0
|
10.10.10.1/24
|
||
Fa0/1
|
20.20.20.1/24
|
||
R1
|
Fa0/0
|
10.10.10.2/24
|
|
Fa0/1
|
192.168.1.1/24
|
||
R2
|
Fa0/0
|
20.20.20.2/24
|
|
Fa0/1
|
192.168.1.2/24
|
||
PC-1
|
eth
|
192.168.1.2/24
|
192.168.1.254/24
|
Topologi, design, IP dan konfigurasinya sama percis seperti HSRP yg sudah dibahas sebelumnya, yang membedakan adalah konfigurasi adalah adanya tambahan pada R2.
Router-3
R3#configure
R3(config)#interface fa0/0
R3(config-if)#ip address 10.10.10.1 255.255.255.0
R3(config-if)#no sh
R3(config)#interface fa0/1
R3(config-if)#ip address 20.20.20.1 255.255.255.0
R3(config-if)#no sh
R3(config)#interface lo1
R3(config-if)#ip address 8.8.8.8 255.255.255.255
R3(config-if)#ex
R3(config)#router eigrp 1
R3(config-router)#network 0.0.0.0
R3(config-router)#no auto
Router-2
R2#configure
R2(config)#interface fa0/0
R2(config-if)#ip address 20.20.20.2 255.255.255.0
R2(config-if)#no sh
R2(config)#interface fa0/1
R2(config-if)#ip add 192.168.1.2 255.255.255.0
R2(config-if)#NO SH
R2(config)#ROuteR EIgrp 1
R2(config-router)#NETwork 0.0.0.0
R2(config-router)#NO AUto
R2(config)#INterface fa0/1
R2(config-if)ip add 192.168.1.2 255.255.255.0
R2(config-if)#glbp 1 ip 192.168.1.254
R2(config-if)#glbp 1 prempt
R2(config-if)#glbp 1 priority 110
R2(config-if)#glbp 1 load-balancing round-robin
R2(config-if)#glbp 1 authentication md5 key-string cisco
R2(config-if)#Router-1
R1#configure
R1(config)#interface fa0/0
R1(config-if)#ip address 10.10.10.2 255.255.255.0
R1(config-if)#no sh
R1(config)#interface fa0/1
R1(config-if)#ip add 192.168.1.1 255.255.255.0
R1(config-if)#no sh
R1(config)#router eigrp 1
R1(config-router)#network 0.0.0.0
R1(config-router)#no au
R1(config)#interface fa0/1
R1(config-if)#ip add 192.168.1.1 255.255.255.0
R1(config-if)#glbp 1 ip 192.168.1.254
R1(config-if)#glbp 1 prempt
R1(config-if)#glbp 1 load-balancing round-robin
R1(config-if)#glbp 1 authentication md5 key-string cisco
R1(config-if)#
Verfikasi dari R1 dan R2
sh glbp brief
Verfikasi dari PC
traceroute 8.8.8.8
Verfikasi dari PC
traceroute 8.8.8.8
Posting Komentar untuk "GLBP - Gateway Load Balancing Prototocol"