Jumat, 11 November 2016

Lab 93 - BGP Multihoming - 2 ISP Sama (Backup Link)

Pada lab ini kita akan melakukan konfigurasi BGP Multihoming dengan dua ISP yang sama. Berikut topologi yang akan kita gunakan pada lab ini
Gambar 1 Topologi jaringan BGP
Langsung aja kita konfig pada seluruh router sesuai topologi diatas
R1(config)#int e0/0 R1(config-if)#no sh R1(config-if)#ip add 14.14.14.1 255.255.255.0 R1(config-if)#int e0/1 R1(config-if)#no sh R1(config-if)#ip add 12.12.12.1 255.255.255.0 R1(config-if)#int e0/2 R1(config-if)#no sh R1(config-if)#ip add 13.13.13.1 255.255.255.0 R1(config-if)#int l0 R1(config-if)#ip add 1.1.1.1 255.255.255.255 R1(config-if)#router bgp 12 R1(config-router)#neighbor 12.12.12.2 remote-as 12 R1(config-router)#neighbor 14.14.14.4 remote-as 4 R1(config-router)#neighbor 13.13.13.3 remote-as 3 R1(config-router)#net 1.1.1.1 mask 255.255.255.255
R2(config)#int e0/0 R2(config-if)#no sh R2(config-if)#ip add 24.24.24.2 255.255.255.0 R2(config-if)#int e0/1 R2(config-if)#no sh R2(config-if)#ip add 12.12.12.2 255.255.255.0 R2(config-if)#int e0/2 R2(config-if)#no sh R2(config-if)#ip add 23.23.23.2 255.255.255.0 R2(config-if)#int l0 R2(config-if)#ip add 2.2.2.2 255.255.255.255 R2(config)#router bgp 12 R2(config-router)#neighbor 12.12.12.1 remote-as 12 R2(config-router)#neighbor 23.23.23.3 remote-as 3 R2(config-router)#neighbor 24.24.24.4 remote-as 4 R2(config-router)#net 2.2.2.2 mask 255.255.255.255
R3(config)#int e0/0 R3(config-if)#no sh R3(config-if)#ip add 13.13.13.3 255.255.255.0 R3(config-if)#int e0/1 R3(config-if)#no sh R3(config-if)#ip add 23.23.23.3 255.255.255.0 R3(config-if)#int l0 R3(config-if)#ip add 3.3.3.3 255.255.255.255 R3(config-if)#router bgp 3 R3(config-router)#neighbor 13.13.13.1 remote-as 12 R3(config-router)#neighbor 23.23.23.2 remote-as 12 R3(config-router)#net 3.3.3.3 mask 255.255.255.255
R4(config)#int e0/0 R4(config-if)#no sh R4(config-if)#ip add 14.14.14.4 255.255.255.0 R4(config-if)#int e0/1 R4(config-if)#no sh R4(config-if)#ip add 24.24.24.4 255.255.255.0 R4(config-if)#int l0 R4(config-if)#ip add 4.4.4.4 255.255.255.255 R4(config-if)#router bgp 4 R4(config-router)#neighbor 14.14.14.1 remote-as 12 R4(config-router)#neighbor 24.24.24.2 remote-as 12 R4(config-router)#net 4.4.4.4 mask 255.255.255.255
Untuk pengujian, kita coba lihat tabel routing pada R4. Pastikan R4 sudah memiliki informasi tentang IP Loopback R1, R2, dan R3
R4(config-router)#do sh ip bgp
BGP table version is 5, local router ID is 4.4.4.4 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 * 1.1.1.1/32 24.24.24.2 0 12 i *> 14.14.14.1 0 0 12 i * 2.2.2.2/32 24.24.24.2 0 0 12 i *> 14.14.14.1 0 12 i * 3.3.3.3/32 24.24.24.2 0 12 3 i *> 14.14.14.1 0 12 3 i *> 4.4.4.4/32 0.0.0.0 0 32768 i
Oke sip.. perhatikan terutama pada route yang menuju 3.3.3.3. Route yang aktif adalah route yang melalui R1 (14.14.14.1), sedangkan route yang melalui R2 (24.24.24.2) hanya digunakan sebagai backup link saja. Kita coba trace
R4(config-router)#do trace 3.3.3.3 source 4.4.4.4
Type escape sequence to abort. Tracing the route to 3.3.3.3 1 14.14.14.1 4 msec 0 msec 0 msec 2 13.13.13.3 0 msec 0 msec 0 msec
Perhatikan bahwa jalur yang digunakan adalah jalur via R1. Kita coba matikan jalur tersebut
R1(config-router)#int e0/0 R1(config-if)#sh
Sekarang kita coba lihat lagi tabel routing di R4
R4(config-if)#do sh ip bgp BGP table version is 8, local router ID is 4.4.4.4 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 *> 1.1.1.1/32 24.24.24.2 0 12 i *> 2.2.2.2/32 24.24.24.2 0 0 12 i *> 3.3.3.3/32 24.24.24.2 0 12 3 i *> 4.4.4.4/32 0.0.0.0 0 32768 i
Perhatikan bahwa sekarang jalur yang aktif adalah jalur via R2. Kita coba nyalakan lagi jalur via R1 nya
R1(config)#int e0/0
R1(config-if)#no sh
R4(config-if)#do sh ip bgp BGP table version is 8, local router ID is 4.4.4.4 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 * 1.1.1.1/32 14.14.14.1 0 0 12 i *> 24.24.24.2 0 12 i * 2.2.2.2/32 14.14.14.1 0 12 i *> 24.24.24.2 0 0 12 i * 3.3.3.3/32 14.14.14.1 0 12 3 i *> 24.24.24.2 0 12 3 i *> 4.4.4.4/32 0.0.0.0 0 32768 i
Lha kog jalurnya tetep via R2? kenapa gak pindah ke R1 lagi? hahaha bingung ya? oke oke.. untuk mengatasi hal ini, kita konfigurasikan agar jalur R1 memiliki prioritas yang lebih tinggi daripada jalur via R2. Kita bisa menggunakan Attribute Weight ataupun Local Preference yang telah kita pelajari sebelumnya.

Pada lab ini kita akan mencoba menggunakan attribute weight
R4(config)#router bgp 4 R4(config-router)#neighbor 14.14.14.1 weight 200 R4(config-router)#do cle ip bgp *
Kita coba lihat tabel routing di R4 lagi
R4(config-router)#do sh ip bgp BGP table version is 5, local router ID is 4.4.4.4 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 * 1.1.1.1/32 24.24.24.2 0 12 i *> 14.14.14.1 0 200 12 i * 2.2.2.2/32 24.24.24.2 0 0 12 i *> 14.14.14.1 200 12 i * 3.3.3.3/32 24.24.24.2 0 12 3 i *> 14.14.14.1 200 12 3 i *> 4.4.4.4/32 0.0.0.0 0 32768 i
Oke sekarang yang digunakan adalah jalur via R1. Kita coba matikan jalur via R1
R1(config)#int e0/0 R1(config-if)#sh
Coba cek tabel routing di R4
R4(config-router)#do sh ip bgp BGP table version is 5, local router ID is 4.4.4.4 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 *> 1.1.1.1/32 24.24.24.2 0 12 i *> 2.2.2.2/32 24.24.24.2 0 0 12 i *> 3.3.3.3/32 24.24.24.2 0 12 3 i *> 4.4.4.4/32 0.0.0.0 0 32768 i
Perhatikan bahwa jalurnya berpindah ke R2. Sekarang kita coba up kan lagi jalur via R1 nya
R4(config-router)#do sh ip bgp BGP table version is 8, local router ID is 4.4.4.4 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 *> 1.1.1.1/32 14.14.14.1 0 200 12 i * 24.24.24.2 0 12 i *> 2.2.2.2/32 14.14.14.1 200 12 i * 24.24.24.2 0 0 12 i *> 3.3.3.3/32 14.14.14.1 200 12 3 i * 24.24.24.2 0 12 3 i *> 4.4.4.4/32 0.0.0.0 0 32768 i
Tuh... sekarang jalurnya udah otomatis berpindah melalui R1

Like the Post? Do share with your Friends.

Tidak ada komentar:

Posting Komentar

Komentar

FeedBack

Jika Anda merasa terbantu dengan artikel dari Coretan Bocah IT, silahkan berlangganan GRATIS via email. Dengan begitu, Anda akan mendapat kiriman artikel setiap ada artikel baru yang terbit di Coretan Bocah IT

Masukkan Email :

IconIconIconFollow Me on Pinterest