BGP AGGREGATOR - BGP #10

 

BGP AGGREGATOR - BGP

Alat dan Bahan :

  • Laptop / PC
  • EVE NG
          nah untuk lab ini membahas lab BGP Aggregator berfungsi untuk meng summary IP yang terhubung pada network dalam konfigurasi network BGP,

perhatikan topologi berikut,



pertama yang harus dilakukan sama seperti biasa yaitu konfigurasi IP dan beserta Loopback nya, pada Router-1, router-2, router-3, dan router - 4 nya

yang pertama dilakukan yaitu konfigurasi neighbor pada tiap router yang berbeda AS nya,

R-1(config)#router bgp 1
R-1(config-router)#neighbor 10.10.10.2 remote-as 2

R-2(config)#router bgp 2
R-2(config-router)#neighbor 10.10.10.1 remote-as 1
R-2(config-router)#neighbor 30.30.30.2 remote-as 4
R-2(config-router)#neighbor 20.20.20.2 remote-as 3

R-3(config)#router bgp 3
R-3(config-router)#neighbor 20.20.20.1 remote-as 2

R-4(config)#router bgp 4
R-4(config-router)#neighbor 30.30.30.1 remote-as 2
R-4(config-router)#net 4.4.4.4 mask 255.255.255.255


kemudian tambahkan IP Loopback baru pada Router - 1

R-1(config-if)#int lo2
R-1(config-if)#ip add 1.2.1.1 255.255.255.255
R-1(config-if)#int lo3
R-1(config-if)#ip add 1.3.1.1 255.255.255.255
R-1(config-if)#int lo4
R-1(config-if)#ip add 1.4.1.1 255.255.255.255

R-1(config)#router bgp 1
R-1(config-router)#network 1.2.1.1 mask 255.255.255.255
R-1(config-router)#network 1.3.1.1 mask 255.255.255.255
R-1(config-router)#network 1.4.1.1 mask 255.255.255.255

kemudian lanjut ke summary original nya, yaitu menampilkan route summary pada table routing bgp akan tetapi summary list nya masih terlihat di routing bgp,

R-1(config)#router bgp 1
R-1(config-router)#aggregate-address 1.0.0.0 255.248.0.0

kemudian untuk konfigurasi summary yang di mana table summary nya terlihat akan tetapi summary list akan masuk ke dalam summary

R-1(config)#router bgp 1
R-1(config-router)#aggregate-address 1.0.0.0 255.248.0.0

kemudian terdapat juga metode yang menggunakan suppressed map,

pertama membuat Access list untuk IP Loopback nya,

R-1(config)#access-list 1 permit host 1.2.1.1
R-1(config)#access-list 1 permit host 1.3.1.1
R-1(config)#access-list 1 permit host 1.4.1.1

R-1(config)#route-map suppress
R-1(config-route-map)#match ip address 1

R-1(config)#router bgp 1
R-1(config-router)#aggregate-address 1.0.0.0 255.248.0.0 suppress-map suppress






Komentar

Postingan populer dari blog ini

EIGRP WITH DISTRIBUTE LIST - EIGRP #1

NAMED ACCESS LIST - ACESS LIST #5

WALLED GARDEN IP LIST - NETWORK MANAGEMENT MIKROTIK #11