CCNP - BGP Next Hop Self

Lab 4 Next Hop  Self

BGP Next-Hop Self adalah salah satu konfigurasi pada routing BGP yang sangat penting jadi tujuannya adalah agar gateway dari sebuah router untuk melewati router yang mengaktifkan nexthop self ini akan digunakan sebagai gateway.


R1(config)#router bgp 12 
R1(config-router)#neighbor 12.12.12.2 remote-as 12 

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(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(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(config)#router bgp 12 
R2(config-router)#neighbor 12.12.12.1 next-hop-self 

Sekarang kita cek lagi pada 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(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(config)#router bgp 12 
R1(config-router)#network 1.1.1.1 mask 255.255.255.255  

hasil akhirnya sebagai berikut. 

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

Komentar

Postingan populer dari blog ini

CCNP - HSRP IP SLA

CCNP - GLBP (Gateway Load Balancing Protocol)

CCNP - VRRP (Virtual Router Redundancy Protocol)