Saturday, April 18, 2015

step 13 - lowest neighbor address ( 13 step selection route BGP)



R1#show run | se router bgp
router bgp 1
 no synchronization
 bgp log-neighbor-changes
 network 8.8.8.0 mask 255.255.255.0
 neighbor 10.1.12.2 remote-as 1
 neighbor 10.1.21.2 remote-as 1
 no auto-summary
R2#show run | se router bgp
router bgp 1
 no synchronization
 bgp log-neighbor-changes
 neighbor 10.1.12.1 remote-as 1
 neighbor 10.1.21.1 remote-as 1
 no auto-summary

R2#show ip bgp
BGP table version is 2, 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
* i8.8.8.0/24       10.1.21.1                0    100      0 i
*>i                         10.1.12.1                0    100      0 I
Nhận xét: R2 học mạng 8.8.8.0/24 qua next-hop 10.1.12.1.
Chúng ta đi kiểm tra từng bước sau:
  1. Weight: bằng nhau 0
  1. Local prefer: bằng nhau 100
  1. Perfer the path was locally..: bằng nhau
  1. AS-path: bằng nhau 1
  1. Origin type : bằng nhau
  1. Med: bằng nhau
  1. Prefer eBGP over iBGP: cùng iBGP
  1. Prefer with lowes IGP metric to BGP next-hop : bằng nhau
  1. Không xét ở đây.
  1. The path are external: cùng học iBGP
  1. Router-id: đều học từ R1 -> cùng Router-id
  1. minimum cluster list length: không xét
  1.  lowest neighbor address: BREAK.

Next-hop 10.1.12.1 < 10.1.21.1 => R2 học mạng 8.8.8.0/24 qua 10.1.12.1

No comments:

Post a Comment