Saturday, April 18, 2015

step 11 - lowest router ID (13 step selection route BGP)


R2#show run | se router bgp
router bgp 2
 bgp bestpath compare-routerid
 neighbor 10.1.12.1 remote-as 1
 neighbor 10.1.23.3 remote-as 3
 no auto-summary

R2#show ip bgp
BGP table version is 6, local router ID is 2.2.2.2
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
*> 8.8.8.0/24       10.1.12.1                0             0 1 i
*                             10.1.23.3                0             0 3 i

=> R2 học mạng 8.8.8.0/24 qua R1 vì có RID nhỏ hơn.
Chúng ta đi kiểm tra từng bước sau:
  1. Weight: bằng nhau 0
  2. Local prefer: bằng nhau 100
  3. Perfer the path was locally..: bằng nhau
  1. AS-path: bằng nhau
  1. Origin type : bằng nhau
  2. Med: bằng nhau
  3. Prefer eBGP over iBGP: cùng eBGP
  1. Prefer with lowes IGP metric to BGP next-hop : bằng nhau
  1. Không xét ở đây.
  2. The path are external: cùng học iBGP
  1. Router-id: BREAK

R2#clear ip bgp 10.1.12.1
*Mar  1 00:11:06.203: %BGP-5-ADJCHANGE: neighbor 10.1.12.1 Down User reset
*Mar  1 00:11:06.239: BGP(0): Revise route installing 1 of 1 routes for 8.8.8.0/24 -> 10.1.23.3(main) to main IP table
*Mar  1 00:11:06.247: BGP(0): 10.1.23.3 NEXT_HOP part 1 net 8.8.8.0/24, next 10.1.23.3
*Mar  1 00:11:06.247: BGP(0): 10.1.23.3 send UPDATE (format) 8.8.8.0/24, next 10.1.23.3, metric 0, path 3
*Mar  1 00:11:06.351: BGP(0): updgrp 1 - 10.1.23.3 updates replicated for neighbors:
*Mar  1 00:11:07.503: %BGP-5-ADJCHANGE: neighbor 10.1.12.1 Up
*Mar  1 00:11:07.567: BGP(0): 10.1.12.1 rcvd UPDATE w/ attr: nexthop 10.1.12.1, origin i, metric 0, path 1
*Mar  1 00:11:07.571: BGP(0): 10.1.12.1 rcvd 8.8.8.0/24
*Mar  1 00:11:07.571: BGP(0): Revise route installing 1 of 1 routes for 8.8.8.0/24 -> 10.1.12.1(main) to main IP table

  • Khi reset BGP giữa R2 và R1. R2 sẽ học route 8.8.8.0/24 qua R3, nhưng khi bgp giữa R1 và R2 được thiết lập lại thì R2 sẽ học 8.8.8.0/24 qua R1 ( quá trình debug ở trên).



No comments:

Post a Comment