LAB 4. BGP Next-Hop-Self
Sebelumnya kita harus hapus terlebih dahulu konfigurasi routing BGP dan EIGRP pada lab sebelumnya.
R1 dan R2
R1(config)#no router bgp 12
R1(config)#no router eigrp 10
R3
R3(config)#no router bgp 3
Kita harus mengkonfigurasi BGP Peer melalui Physical Interface dan advertise satu network
pada R3
R1
R1(config)#router bgp 12
R1(config-router)#neighbor 12.12.12.2 remote-as 12
R2
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
R3
R3(config)#router bgp 3
R3(config-router)#neighbor 23.23.23.2 remote-as 12
R3(config-router)#network 3.3.3.3 mask 255.255.255.255
R1
R1(config)#do show ip bgp
BGP table version is 1, local router ID is 11.11.11.11
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
* i3.3.3.3/32 23.23.23.3 0 100 0 3 i
Di sini kita tidak menemukan tanda (>) best pada route 3.3.3.3 yang dikarenakan nexthopnya tidak reachable.
R2
R2(config)#router bgp 12
R2(config-router)#neighbor 12.12.12.1 next-hop-self
Sekarang kita cek lagi pada R1
R1
R1(config)#do show ip bgp
Network Next Hop Metric LocPrf Weight Path
*>i3.3.3.3/32 12.12.12.2 0 100 0 3 i
Jika kita perhatikan ip next hopnya sudah berubah dari R3 menjadi R2
sehingga kita bisa melakukan ping dari R1
R1
R1(config)#do sh ip route bgp
3.0.0.0/32 is subnetted, 1 subnets
B 3.3.3.3 [200/0] via 12.12.12.2, 00:05:17
Kita bisa melakukan advertise ke salah satu ip R1 ke BGP untuk
dijadikan sebagai source saat ping ke R3.
R1
R1(config)#router bgp 12
R1(config-router)#network 1.1.1.1 mask 255.255.255.255
hasil akhirnya sebagai berikut.
R1
R1#ping 3.3.3.3 source 1.1.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:
Packet sent with a source address of 1.1.1.1
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 24/36/44 ms
Tidak ada komentar:
Posting Komentar