ROUTE REFLECTOR - BGP #6 ( CCNP )

  BGP #6 : 

ROUTE REFLECTOR

Required :

  • Laptop
  • VMware           
  • EVE NG 
    Route Reflector digunakan untuk Menghubungkan Router dengan cara memantulkan atau Reflect Peering ke Router lain, yaitu kita ingin menghubungkan Router-Router yang tidak directly connected dan mereka direcly connected ke satu Router. kita bisa menggunakan Router tengah itu untuk memantulkan Peering, dan mereka kedua saling terhubung meskipun tidak directly connected : 

Berikut cara Mengonfig Route Reflector  

Nyalakan VMWarenya dan Masuk ke Eve NG lalu Buatlah Topologi seperti ini :


Note : KITA HANYA MENGGUNAKAN ROUTER YANG ADA DI AS 5 / AS YANG SAMA (IBGP) 

Sebelum mengonfig Router Reflector.. Pastikan semua terhubung menggunakan Neighbor ( IBGP ) dan RIP. Jika kalian sudah mengonfig nya maka ini Konfigurasi Router Reflector : 

Pastikan Semua Konfigurasi ini ada di Router kalian ( Di sesuaikan dengan Topologi kalian ) : 

R2 : 

IP Address R2

interface Ethernet0/0
 ip address 10.10.10.2 255.255.255.0
!
interface Ethernet0/1
 ip address 20.20.20.1 255.255.255.0
!
interface Ethernet0/2
 ip address 30.30.30.1 255.255.255.0

 RIP

router rip
 version 2
 network 20.0.0.0
 network 30.0.0.0
 no auto-summary

BGP : 

router bgp 5
 bgp log-neighbor-changes
 neighbor 10.10.10.1 remote-as 7
 neighbor 20.20.20.2 remote-as 5
 neighbor 20.20.20.2 next-hop-self
 neighbor 30.30.30.2 remote-as 5
 neighbor 30.30.30.2 next-hop-self

R3 : 

IP Address R3 : 

interface Loopback3
 ip address 3.3.3.3 255.255.255.255
!
interface Ethernet0/0
 ip address 20.20.20.2 255.255.255.0

RIP : 

router rip
 version 2
 network 3.3.3.3
 network 20.0.0.0       
 no auto-summary

BGP : 

router bgp 5
 bgp log-neighbor-changes
 network 3.3.3.3 mask 255.255.255.255
 neighbor 20.20.20.1 remote-as 5

R4 : 

IP Address R3 : 

interface Loopback4
 ip address 4.4.4.4 255.255.255.255
!
interface Ethernet0/0
 ip address 30.30.30.2 255.255.255.0

RIP : 

router rip
 version 2
 network 4.4.4.4
 network 30.0.0.0       
 no auto-summary

Kita lihat hasil sebelum Route Reflector di Konfig ( maka Loopback R3 belum terhubung ) 

R4 / R3 : 

Router(config-router)#do sh ip bgp
BGP table version is 7, 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, m multipath, b backup-path, f RT-Filter,
              x best-external, a additional-path, c RIB-compressed,
Origin codes: i - IGP, e - EGP, ? - incomplete
RPKI validation codes: V valid, I invalid, N Not found

     Network          Next Hop            Metric LocPrf Weight Path
 *>i 1.1.1.1/32       30.30.30.1               0    100      0 7 i
 *>  4.4.4.4/32       0.0.0.0                  0         32768 i

Route Reflector

kita akan menggunakan R2 untuk mengonfig Route Reflector.. dengan menggunakan R2 sebagai cermin = yang bisa memantulkan Peering R3 ke R4 :

R2 : 

Router(config)#router bgp 5= Masuk ke Konfigurasi BGP
Router(config-router)#neighbor 20.20.20.2 route-reflector-client= Tambahkan Rule untuk R3 "neighbor ( IP Gateway R3 ke R2 ) route-reflector-client"
Router(config-router)#neighbor 30.30.30.2 route-reflector-client= Tambahkan Rule untuk R4 "neighbor ( IP Gateway R4 ke R2 ) route-reflector-client"

Setelah menambahkan Konfigurasinya.. Cobalah ping serta Lihatlah Interface BGP pada R4 / R3 : 

R4 : 

Ping :

Router(config-router)#do ping 3.3.3.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms
Router(config-router)#

IP BGP : 

Router(config-router)#do sh ip bgp
BGP table version is 7, 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, m multipath, b backup-path, f RT-Filter,
              x best-external, a additional-path, c RIB-compressed,
Origin codes: i - IGP, e - EGP, ? - incomplete
RPKI validation codes: V valid, I invalid, N Not found

     Network          Next Hop            Metric LocPrf Weight Path
 *>i 1.1.1.1/32       30.30.30.1               0    100      0 7 i
 *>i 3.3.3.3/32       20.20.20.2               0    100      0 i
 *>  4.4.4.4/32       0.0.0.0                  0         32768 i

Komentar

Postingan populer dari blog ini

BGP BASIC CONFIGURATION - BGP #2 ( CCNP )

BGP ATTRIBUTE ( COMMUNITY-LIST ) - BGP #9 ( CCNP )

OTP - EIGRP #17 ( CCNP )