25,通过bgp路由的两种方法 ①network ②重分布 router bgp 100 redistribute connected route-map con2bgp
26,bgp的所有报文都是单播。
27,查看建立的tcp连接
28,手动关闭bgp的邻居 作用:用于维护和更改策略,避免路由震荡 router bgp 200 neighbor 12.1.1.1 shutdown
手动打开邻居关系 router bgp 200 no neighbor 12.1.1.1 shutdown
29,BGP的认证,使用的MD5认证 R1和R2之间起认证: R1的配置: router bgp 100 neighbor 12.1.1.2 password ccnp
R2的配置: router bgp 100 neighbor 12.1.1.1 password ccnp
注,bgp只有在建立tcp连接的时候,才会认证,所以要配置完认证,要重启bgp的进程 clear ip bgp *
30,show ip bgp rib-failure --查看未安装到RIB中路由,以及原因 RIB(Routing Information Base,路由信息库),也就是所谓的路由表 31,bgp的硬清,bgp要重新建立邻居关系,包括tcp连接也要重新建立 bgp的软清,tcp连接和bgp的连接都是正常的,只会刷新路由信息,强烈建立使用out 32,bgp 的手动汇总: router b 100 aggregate-address 1.1.0.0 255.255.252.0 summary-only 注意:不加summary-only的话,汇总和明细都会传给其他路由器中,加了之后就只传汇总路由
33,由于做了汇总,并且只发送汇总路由,所以明细路由就会被抑制 34,向BGP 中引入默认路由 法一: 重分布的方式 router bgp 100 default-information originate redistribute static ip route 0.0.0.0 0.0.0.0 null 0 法二: 宣告的方式 router bgp 100 network 0.0.0.0 ip route 0.0.0.0 0.0.0.0 null 0 法三: 只向邻居产生一条默认路由,自己路由表中不存在 router bgp 100 neighbor 11.1.1.1 default-originate
35,对等体组 作用,可以减少管理员的配置 不可以把IBGP和EBGP配置在同一个组中 router b 100 neighbor aa peer-group 创建对等体组aa neighbor aa remote-as 100 对组aa配置 neighbor aa update-source Loopback0 neighbor aa next-hop-self ne ighbor 1.1.1.1 peer-group aa 将邻居1.1.1.1 加入对等体组aa neighbor 3.3.3.3 peer-group aa 注:bgp 一旦使用了对等体组,那么它将会针对一个组维持邻居关系。
36,BGP的选路
解释bgp的路由表: ①前面的这个i代表的是从ibgp邻居学习来的路由,不带i就是从ebgp邻居学习来的 ②next hop 这个选项,假如是0.0.0.0 代表的是自己宣告的
|