Cisco | BGP - Pemilihan Jalur Terbaik - Local Prefrence
Local-Prefrence merupakan atribut yg diterapkan dijalur keluar router. Local Preference akan diterukan kedalam router iBGP saat mengirim update infromasi routing. Tugasnya akan menginformasikan ke router BGP bagaimana memili jalur ke luar AS jika terdapat beberapa jalur.
Router R1
hostname R1
no shu
ip add 11.11.11.1 255.255.255.252
!
int gi0/1
no shu
ip add 10.10.10.1 255.255.255.252
!
int gi0/2
no shu
ip add 192.168.0.1 255.255.255.0
!
int lo0
no shu
ip add 1.1.1.1 255.255.255.255
!
-------------
Router R2
hostname R2
int gi0/0
no shu
ip add 12.12.12.1 255.255.255.252
!
int gi0/1
no shu
ip add 10.10.10.2 255.255.255.252
!
int gi0/2
no shu
ip add 14.14.14.1 255.255.255.252
!
int lo0
no shu
ip add 2.2.2.2 255.255.255.255
!
-------------
Router R3
hostname R3
int gi0/0
no shu
ip add 11.11.11.2 255.255.255.252
!
int gi0/1
no shu
ip add 13.13.13.1 255.255.255.252
!
int gi0/2
no shu
ip add 14.14.14.2 255.255.255.252
!
int lo0
no shu
ip add 3.3.3.3 255.255.255.255
!
-------
Router R4
hostname R4
int gi0/0
no shu
ip add 12.12.12.2 255.255.255.252
!
int gi0/1
no shu
ip add 13.13.13.2 255.255.255.252
!
int lo0
no shu
ip add 4.4.4.4 255.255.255.255
!
int lo1
no shu
ip add 8.8.8.8 255.255.255.255
!
Konfig BGP
Router R1
router bgp 20
neighbor 10.10.10.2 remote-as 20
neighbor 11.11.11.2 remote-as 20
network 1.1.1.1 mask 255.255.255.255
exit
Router R2
R2
router bgp 20
neighbor 10.10.10.1 remote-as 20
neighbor 10.10.10.1 next-hop-self #supaya network di R4 dikenali oleh R1
neighbor 12.12.12.2 remote-as 40
neighbor 14.14.14.2 remote-as 20
exit
Sebelum diubah Nilai Local-Prefrence. Nilai Default Local Refrence adalah 100
Kita coba lihat nilai Local-Refrence di R3, supaya jalur yg dilewati dari R1 menuju R4 ( 8.8.8.8 dan 4.4.4.4) lebih memilih lewat dari R3. Nilai Default Local-Refrence adalah 100, maka kita naikan nilai local-refrence di R3 menjadi 101.
Berikut Perintahnya, cukup nilai Local-Refrence nya di R3 karena di R2 defaultnya sdh 100
R3(config)#router bgp 20
R3(config-router)#bgp default local-preference 101
Posting Komentar untuk "Cisco | BGP - Pemilihan Jalur Terbaik - Local Prefrence"