Berikutnya kita akan belajar eBGP Peers, yakni R2 antara dan R3, kali ini menggunakan IP Phsycal sebagai bgp peers nya. Kebalikan dari iBGP (internal BGP) eBGP (external BGP) merupakan BGP dengan AS number yang berbeda. Sama seperti halnya iBGP, eBGP juga mempunyai beberapa atribut. Sebelum kita mempelajari atribut tersebut, kita akan belajar tentang dasar eBGP Peering dahulu. Langsung saja kita ke TKP...
1. Tujuan Lab- Mempelajari bagaimana mengkonfigurasikan Peers BGP External
- Mempelajari konsep dalam eBGP
2. Topologi Lab
3. Metode Lab
- Konfigurasikan pengalamatan IP sesuai standard IDN, keterangan klik disini
- Konfigurasikan iBGP antara IDN-R1 dan IDN-R2 dengan AS 12
- Neighbor menggunkan ip phsycal interface
- Buat IP loopback di IDN-R1 dan IDN-R2 untuk diadvertise ke BGP
- Konfigurasikan eBGP Peers antara IDN-R2 dan IDN-R3
- Buat IP loopback di R3 untuk diadvertise ke BGP
4. Verifikasi
- Pastikan BGP adjacency terbentuk dengan mengetik show ip bgp summary
- Pastikan ada network yang diadvertise ke BGP, ketik show ip bgp
- Pastikan route yang diadvertise ke BGP masuk dalam kolom routing tablenya, ketik show ip route BGP
- Pastikan IP loopback R1 dan R2 bisa saling diping oleh keduanya.
Lalu konfigurasikan BGP, IDN-R1 dan IDN-R2 menggunakan AS 12 sedangkan IDN-R3 menggunakan AS 3.
IDN-R1(config)#router bgp 12
IDN-R1(config-router)#nei 12.12.12.2 remote-as 12
IDN-R1(config-router)#
*Mar 1 00:13:09.003: %BGP-5-ADJCHANGE: neighbor 12.12.12.2 Up
IDN-R1(config-router)#nei 12.12.12.2 remote-as 12
IDN-R1(config-router)#
*Mar 1 00:13:09.003: %BGP-5-ADJCHANGE: neighbor 12.12.12.2 Up
IDN-R2(config)#router bgp 12
IDN-R2(config-router)#nei 12.12.12.1 remote-as 12
IDN-R2(config-router)#nei 23.23.23.3 remote-as 3
IDN-R2(config-router)#
*Mar 1 00:13:08.955: %BGP-5-ADJCHANGE: neighbor 12.12.12.1 Up
IDN-R2(config-router)#
*Mar 1 00:14:06.191: %BGP-5-ADJCHANGE: neighbor 23.23.23.3 Up
IDN-R3(config-if)#router bgp 3
IDN-R3(config-router)#nei 23.23.23.2 remote-as 12
IDN-R3(config-router)#
*Mar 1 00:14:47.283: %BGP-5-ADJCHANGE: neighbor 23.23.23.2 Up
Pastikan adjchance nya up. Sekarang, kita advertise network kr BGP. Network yang diadvertise berasal dari loopback 0.
IDN-R1(config-router)#router bgp 12
IDN-R1(config-router)#net 1.1.1.1 mask 255.255.255.255
IDN-R2(config-router)#router bgp 12
IDN-R2(config-router)#net 2.2.2.2 mask 255.255.255.255
IDN-R3(config-router)#router bgp 3
IDN-R3(config-router)#net 3.3.3.3 mask 255.255.255.255
Verifikasi dengan perintah show ip bgp summary di IDN-R2
IDN-R2(config-router)#do sh ip bgp sum
BGP router identifier 2.2.2.2, local AS number 12
BGP table version is 4, main routing table version 4
3 network entries using 360 bytes of memory
3 path entries using 156 bytes of memory
4/3 BGP path/bestpath attribute entries using 496 bytes of memory
1 BGP AS-PATH entries using 24 bytes of memory
0 BGP route-map cache entries using 0 bytes of memory
0 BGP filter-list cache entries using 0 bytes of memory
Bitfield cache entries: current 3 (at peak 3) using 96 bytes of memory
BGP using 1132 total bytes of memory
BGP activity 3/0 prefixes, 3/0 paths, scan interval 60 secs
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
12.12.12.1 4 12 8 9 4 0 0 00:04:59 1
23.23.23.3 4 3 9 10 4 0 0 00:04:02 1
Sekarang, cek ip bgp di R1
IDN-R1(config-router)#do sh ip bgp
BGP table version is 3, local router ID is 1.1.1.1
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 0.0.0.0 0 32768 i
*>i2.2.2.2/32 12.12.12.2 0 100 0 i
* i3.3.3.3/32 23.23.23.3 0 100 0 3 i
Bisa kita lihat, network dari IDN-R3 sudah terlihat di IDN-R1 akan tetapi belum ada tanda ">" (best) nya. Untuk itu, kita bisa mengupdate network 23.23.23.0 dari IDN-R2 agar next hop nya bisa tercapai.
IDN-R2(config-router)#router bgp 12
IDN-R2(config-router)#net 23.23.23.0 mask 255.255.255.0
Kita cek lagi di IDN-R1
IDN-R1(config-router)#do sh ip bgp
BGP table version is 5, local router ID is 1.1.1.1
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 0.0.0.0 0 32768 i
*>i2.2.2.2/32 12.12.12.2 0 100 0 i
*>i3.3.3.3/32 23.23.23.3 0 100 0 3i
*>i23.23.23.0/24 12.12.12.2 0 100 0 i
Lakukan tes ping dari IDN-R1 ke IDN-R3. Pastikan repply.
IDN-R2(config-router)#nei 12.12.12.1 remote-as 12
IDN-R2(config-router)#nei 23.23.23.3 remote-as 3
IDN-R2(config-router)#
*Mar 1 00:13:08.955: %BGP-5-ADJCHANGE: neighbor 12.12.12.1 Up
IDN-R2(config-router)#
*Mar 1 00:14:06.191: %BGP-5-ADJCHANGE: neighbor 23.23.23.3 Up
IDN-R3(config-if)#router bgp 3
IDN-R3(config-router)#nei 23.23.23.2 remote-as 12
IDN-R3(config-router)#
*Mar 1 00:14:47.283: %BGP-5-ADJCHANGE: neighbor 23.23.23.2 Up
Pastikan adjchance nya up. Sekarang, kita advertise network kr BGP. Network yang diadvertise berasal dari loopback 0.
IDN-R1(config-router)#router bgp 12
IDN-R1(config-router)#net 1.1.1.1 mask 255.255.255.255
IDN-R2(config-router)#router bgp 12
IDN-R2(config-router)#net 2.2.2.2 mask 255.255.255.255
IDN-R3(config-router)#router bgp 3
IDN-R3(config-router)#net 3.3.3.3 mask 255.255.255.255
Verifikasi dengan perintah show ip bgp summary di IDN-R2
IDN-R2(config-router)#do sh ip bgp sum
BGP router identifier 2.2.2.2, local AS number 12
BGP table version is 4, main routing table version 4
3 network entries using 360 bytes of memory
3 path entries using 156 bytes of memory
4/3 BGP path/bestpath attribute entries using 496 bytes of memory
1 BGP AS-PATH entries using 24 bytes of memory
0 BGP route-map cache entries using 0 bytes of memory
0 BGP filter-list cache entries using 0 bytes of memory
Bitfield cache entries: current 3 (at peak 3) using 96 bytes of memory
BGP using 1132 total bytes of memory
BGP activity 3/0 prefixes, 3/0 paths, scan interval 60 secs
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
12.12.12.1 4 12 8 9 4 0 0 00:04:59 1
23.23.23.3 4 3 9 10 4 0 0 00:04:02 1
Sekarang, cek ip bgp di R1
IDN-R1(config-router)#do sh ip bgp
BGP table version is 3, local router ID is 1.1.1.1
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 0.0.0.0 0 32768 i
*>i2.2.2.2/32 12.12.12.2 0 100 0 i
* i3.3.3.3/32 23.23.23.3 0 100 0 3 i
Bisa kita lihat, network dari IDN-R3 sudah terlihat di IDN-R1 akan tetapi belum ada tanda ">" (best) nya. Untuk itu, kita bisa mengupdate network 23.23.23.0 dari IDN-R2 agar next hop nya bisa tercapai.
IDN-R2(config-router)#router bgp 12
IDN-R2(config-router)#net 23.23.23.0 mask 255.255.255.0
Kita cek lagi di IDN-R1
IDN-R1(config-router)#do sh ip bgp
BGP table version is 5, local router ID is 1.1.1.1
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 0.0.0.0 0 32768 i
*>i2.2.2.2/32 12.12.12.2 0 100 0 i
*>i3.3.3.3/32 23.23.23.3 0 100 0 3i
*>i23.23.23.0/24 12.12.12.2 0 100 0 i
Lakukan tes ping dari IDN-R1 ke IDN-R3. Pastikan repply.
0 komentar:
Posting Komentar