zoukankan      html  css  js  c++  java
  • Introduction to BGP (4)

    1. The BGP table plays a key role in the process of learning using routing information with BGP. A router stores all learned BGP prefixs and PAs in its BGP table. The router will later choose which route for each prefix is the best BGP route . The router can then advertise its BGP table to its neighbors , advertising only the best route for each prefix.

    2. When a BGP neighborship reaches the Established state , those neighbors begin sending BGP Update messages to each other. The router receiving an Update places those learned prefixs into its BGP table, regardless of whether the route appears to be the best roure. Like EIGRP and OSPF , BGP puts all learned routing information into its table , and then BGP processes all potential routes to choose the best route for each prefix.

      The BGP table should hold all learned prefixs , from each neighbor , except for any prefixs filtered by an inbound BGP filter.

    3. Verification Commands for eBGP-Learned Routes

    show ip bgp 0.0.0.0 0.0.0.0    List possible default routes

    show ip bgp prefix [subnet-mask]    List possible routes,per prefix

    show ip bgp neighbor ip-address received-routes    List routes learned from one neighbor,before any inbound filtering is applied

    show ip bgp neighbors ip-address routes    List routes learned from a specific neighbor that pass any inbound filters

    show ip bgp neighbors ip-address advertised-routes    List routes advertised to a neighbor after applying outbound filtering

    show ip bgp summary    List the number of prefix learned per neighbor

  • 相关阅读:
    OpenStack 中的neutron-server启动过程
    NYOJ 284 坦克大战 【BFS】+【优先队列】
    HDSF主要节点解说(二)工作原理
    SQL SERVER中的流程控制语句
    Android 自己定义View (二) 进阶
    JNI学习积累之一 ---- 常用函数大全
    Android NDK开发之Jni的数据类型
    CMakeListx.txt 编辑语法学习
    用CMake代替makefile进行跨平台交叉编译
    Android 开发--CMakeList调用本地so文件
  • 原文地址:https://www.cnblogs.com/zhnhelloworld/p/5652505.html
Copyright © 2011-2022 走看看