Lab 6. BGP Peer Groups
Oke guys, kembali dengan saya si author grup, udah lama nih gak update blog lagi (maklum libur). Pada lab kali ini saya akan ngebahas tentang BGP Peer Group, apa sih BGP Peer Group dan apa fungsinya ?. BGP Peer Group adalah sebuah cara yang dimana kita membuat sebuah pool yang berisikan neighbor pada sebuah jaringan BGP, apa fungsinya ?, fungsinya adalah untuk mempermudah kita pada saat melakukan peering (khusus iBGP) doang, nah pada saat melakukan peering (misalkan ada 5 router). Berarti kita harus melakukan peering kelima router dengan banyak konfigurasi contoh "neighbor x.x.x.x remote-as 10", misalkan kita melakukan peering melalui loopback, jadi kita harus mengkonfigurasikan "neighbor x.x.x.x update-source loopback 0", terus seperti itu sampai kita peering kelima router, bayangin kalo ada 100 ribet kan, jadi dengan Peer Group ini kita membuat pool yang dimana pool tersebut telah dikonfigurasi seperti peering ke sesama as dan didefinisikan apakah iBGP tersebut mau melakukan peering, apakah menggunakan loopback atau physical. Untuk memperjelas kita langsung masuk ke topologi dan konfigurasi.
Topology
Skenario
Kita akan mengkonfigurasikan BGP Peer Group pada BGP AS 18.
Konfigurasi
R1:
R1(config)#int fa0/0
R1(config-if)#no sh
R1(config-if)#ip add 12.12.12.1 255.255.255.0
R1(config-if)#int lo0
R1(config-if)#ip add 1.1.1.1 255.255.255.255
R1(config-if)#int lo1
R1(config-if)#ip add 11.11.11.11 255.255.255.255
R1(config-if)#router eigrp 10
R1(config-router)#no aut
R1(config-router)#net 12.12.12.1 0.0.0.0
R1(config-router)#net 1.1.1.1 0.0.0.0
R2:
R1:
R1#show bgp ipv4 unicast peer-group IDN
BGP peer-group is IDN, remote AS 18
BGP version 4
Default minimum time between advertisement runs is 0 seconds
For address family: IPv4 Unicast
BGP neighbor is IDN, peer-group internal, members:
2.2.2.2 3.3.3.3
Index 0, Offset 0, Mask 0x0
Update messages formatted 0, replicated 0
Number of NLRIs in the update sent: max 0, min 0
Setelah itu coba advertise sebuah network dari salah satu router.
R3:
R1:
R1#show ip bgp
BGP table version is 2, local router ID is 11.11.11.11
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
r RIB-failure, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete
Network Next Hop Metric LocPrf Weight Path
*>i33.33.33.33/32 3.3.3.3 0 100 0 i
Setelah kita pastikan bahwa network yang diadvertise tadi sudah reachable, lakukan test ping.
R1#ping 33.33.33.33
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 33.33.33.33, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 24/55/104 ms
Jika status ping telah reply, maka lab ini dinyatakan BERHASIL!!!..
R2(config)#int fa0/0R3:
R2(config-if)#no sh
R2(config-if)#ip add 12.12.12.2 255.255.255.0
R2(config-if)#int fa0/1
R2(config-if)#no sh
R2(config-if)#ip add 23.23.23.2 255.255.255.0
R2(config-if)#int fa1/0
R2(config-if)#no sh
R2(config-if)#ip add 24.24.24.2 255.255.255.0
R2(config-if)#int lo0
R2(config-if)#ip add 2.2.2.2 255.255.255.255
R2(config-if)#int lo1
R2(config-if)#ip add 22.22.22.22 255.255.255.255
R2(config-if)#router eigrp 10
R2(config-router)#no aut
R2(config-router)#net 12.12.12.2 0.0.0.0
R2(config-router)#net 23.23.23.2 0.0.0.0
R2(config-router)#net 2.2.2.2 0.0.0.0
R3(config)#int fa0/0R4:
R3(config-if)#no sh
R3(config-if)#ip add 23.23.23.3 255.255.255.0
R3(config-if)#int lo0
R3(config-if)#ip add 3.3.3.3 255.255.255.255
R3(config-if)#int lo1
R3(config-if)#ip add 33.33.33.33 255.255.255.255
R3(config-if)#router eigrp 10
R3(config-router)#no aut
R3(config-router)#net 23.23.23.3 0.0.0.0
R3(config-router)#net 3.3.3.3 0.0.0.0
R4(config)#int fa0/0
R4(config-if)#no sh
R4(config-if)#ip add 24.24.24.4 255.255.255.0
R4(config-if)#int lo0
R4(config-if)#ip add 4.4.4.4 255.255.255.255
R4(config-if)#int lo1
R4(config-if)#ip add 44.44.44.44 255.255.255.255
Setelah itu kita konfigurasikan BGP sekaligus BGP Peer Groupnya.
R1:
R1(config)#router bgp 18R2:
R1(config-router)#neighbor IDN peer-group
R1(config-router)#neighbor IDN update-source loopback0
R1(config-router)#neighbor IDN remote-as 18
R1(config-router)#neighbor 2.2.2.2 peer-group IDN
R1(config-router)#neighbor 3.3.3.3 peer-group IDN
R2(config)#router bgp 18R3:
R2(config-router)#neighbor IDN peer-group
R2(config-router)#neighbor IDN update-source loopback0
R2(config-router)#neighbor IDN remote-as 18
R2(config-router)#neighbor 1.1.1.1 peer-group IDN
R2(config-router)#neighbor 3.3.3.3 peer-group IDN
R2(config-router)#neighbor 24.24.24.4 remote-as 10
R3(config)#router bgp 18R4:
R3(config-router)#neighbor IDN peer-group
R3(config-router)#neighbor IDN remote-as 18
R3(config-router)#neighbor IDN update-source loopback0
R3(config-router)#neighbor 1.1.1.1 peer-group IDN
R3(config-router)#neighbor 2.2.2.2 peer-group IDN
R4(config)#router bgp 10setelah itu lakukan verifikasi dan pastikan iBGP atau BGP yang kita buat itu berjalan.
R4(config-router)#neighbor 24.24.24.2 remote-as 18
R1:
R1#show bgp ipv4 unicast peer-group IDN
BGP peer-group is IDN, remote AS 18
BGP version 4
Default minimum time between advertisement runs is 0 seconds
For address family: IPv4 Unicast
BGP neighbor is IDN, peer-group internal, members:
2.2.2.2 3.3.3.3
Index 0, Offset 0, Mask 0x0
Update messages formatted 0, replicated 0
Number of NLRIs in the update sent: max 0, min 0
Setelah itu coba advertise sebuah network dari salah satu router.
R3:
R3(config)#router bgp 18Lalu setelah kita melakukan advertise, kita cek BGP table pada salah satu router.
R3(config-router)#network 33.33.33.33 mask 255.255.255.255
R1:
R1#show ip bgp
BGP table version is 2, local router ID is 11.11.11.11
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
r RIB-failure, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete
Network Next Hop Metric LocPrf Weight Path
*>i33.33.33.33/32 3.3.3.3 0 100 0 i
Setelah kita pastikan bahwa network yang diadvertise tadi sudah reachable, lakukan test ping.
R1#ping 33.33.33.33
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 33.33.33.33, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 24/55/104 ms
Jika status ping telah reply, maka lab ini dinyatakan BERHASIL!!!..
Selesaii.....
See u on the next post... AND... stay on this blog
Wassalamualaikum warahmatullahi wabarakatuh..
ConversionConversion EmoticonEmoticon