eNSP实验BGP_第1页
eNSP实验BGP_第2页
eNSP实验BGP_第3页
eNSP实验BGP_第4页
eNSP实验BGP_第5页
已阅读5页,还剩4页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

eNSP实验:BGP目录1组网需求12配置12.1配置各接口的IP地址(略)12.2配置IBGP连接22.2.1配置Router B。22.2.2配置Router C。22.3配置EBGP连接32.3.1配置Router A。32.3.2配置Router B。32.3.3查看Router A的BGP路由表。42.3.4查看Router B的BGP路由表。42.3.5查看Router C的BGP路由表。42.4配置BGP引入直连路由52.4.1配置Router B。52.4.2查看Router A的BGP路由表。52.4.3查看Router C的BGP路由表。53结果验证61 组网需求所有路由器均运行BGP协议,Router A和Router B之间建立EBGP连接,Router B和Router C之间建立IBGP连接。要求Router C能够访问Router A直连的8.1.1.0/24网段。2 配置2.1 配置各接口的IP地址(略)PC: 8.1.1.2/24RA:#sysn RAinterface LoopBack 0ip add 1.1.1.1 32interface e0/0/0ip add 8.1.1.1 24interface s0/0/1ip add 3.1.1.2 24#RB:#sysn RBinterface LoopBack 0ip add 2.2.2.2 32interface S0/0/1ip add 3.1.1.1 24interface s0/0/0ip add 9.1.1.1 24#RC:#sysn RCinterface LoopBack 0ip add 3.3.3.3 32interface S0/0/0ip add 9.1.1.2 24#2.2 配置IBGP连接 为了防止端口状态不稳定引起路由震荡,本举例使用Loopback接口来创建IBGP对等体。 使用Loopback接口创建IBGP对等体时,因为Loopback接口不是两对等体实际连接的接口,所以,必须使用peer connect-interface命令将Loopback接口配置为BGP连接的源接口。 在AS 65009内部,使用OSPF协议,保证Router B到Router C的Loopback接口路由可达, Router C到Router B的Loopback接口路由可达。2.2.1 配置Router B。 #system-viewbgp 65009router-id 2.2.2.2peer 3.3.3.3 as-number 65009peer 3.3.3.3 connect-interface loopback 0#ospf 1area 0network 2.2.2.2 0.0.0.0network 9.1.1.0 0.0.0.255#2.2.2 配置Router C。 #system-viewbgp 65009router-id 3.3.3.3peer 2.2.2.2 as-number 65009peer 2.2.2.2 connect-interface loopback 0#ospf 1area 0network 3.3.3.3 0.0.0.0network 9.1.1.0 0.0.0.255#2.2.3 查看OSPF状态以及Router B到Router C的Loopback接口路由能否可达RC-ospf-1dis ospf routing OSPF Process 1 with Router ID 3.3.3.3 Routing Tables Routing for Network Destination Cost Type NextHop AdvRouter Area 3.3.3.3/32 0 Stub 3.3.3.3 3.3.3.3 0.0.0.0 9.1.1.0/24 1562 Stub 9.1.1.2 3.3.3.3 0.0.0.0 2.2.2.2/32 1562 Stub 9.1.1.1 2.2.2.2 0.0.0.0 Total Nets: 3 Intra Area: 3 Inter Area: 0 ASE: 0 NSSA: 0 RC-ospf-1dis opsRC-ospf-1dis ospRC-ospf-1dis ospf peer OSPF Process 1 with Router ID 3.3.3.3 Neighbors Area 0.0.0.0 interface 9.1.1.2(Serial0/0/0)s neighbors Router ID: 2.2.2.2 Address: 9.1.1.1 State: Full Mode:Nbr is Slave Priority: 1 DR: None BDR: None MTU: 0 Dead timer due in 28 sec Retrans timer interval: 5 Neighbor is up for 00:02:49 Authentication Sequence: 0 RC-ospf-1ping 2.2.2.2 PING 2.2.2.2: 56 data bytes, press CTRL_C to break Reply from 2.2.2.2: bytes=56 Sequence=1 ttl=255 time=30 ms Reply from 2.2.2.2: bytes=56 Sequence=2 ttl=255 time=20 ms Reply from 2.2.2.2: bytes=56 Sequence=3 ttl=255 time=40 ms Reply from 2.2.2.2: bytes=56 Sequence=4 ttl=255 time=20 ms Reply from 2.2.2.2: bytes=56 Sequence=5 ttl=255 time=30 ms - 2.2.2.2 ping statistics - 5 packet(s) transmitted 5 packet(s) received 0.00% packet loss round-trip min/avg/max = 20/28/40 msRC-ospf-12.2.4 查看Router B与Router C之间的I-BGP是否建立RouterC display bgp peer BGP local router ID : 3.3.3.3 Local AS number : 65009 Total number of peers : 1 Peers in established state : 1 Peer V AS MsgRcvd MsgSent OutQ Up/Down State PrefRcv 2.2.2.2 4 65009 9 9 0 00:07:30 Established 0RC以上显示信息表明Router B和Router C之间的IBGP连接已经建立。2.3 配置EBGP连接 EBGP邻居关系的两台路由器(通常属于两个不同运营商),处于不同的AS域,对端的Loopback接口一般路由不可达,所以一般使用直连地址建立BGP邻居。 因为要求Router C能够访问Router A直连的8.1.1.0/24网段,所以,建立EBGP连接后,需要将8.1.1.0/24网段路由通告到BGP路由表中。2.3.1 配置Router A。 #bgp 65008router-id 1.1.1.1peer 3.1.1.1 as-number 65009ipv4-family unicastnetwork 8.1.1.0 24#2.3.2 配置Router B。 #bgp 65009peer 3.1.1.2 as-number 65008# 查看Router B的BGP对等体的连接状态。RouterB display bgp peer BGP local router ID : 2.2.2.2 Local AS number : 65009 Total number of peers : 2 Peers in established state : 2 Peer AS MsgRcvd MsgSent OutQ PrefRcv Up/Down State 3.3.3.3 65009 12 10 0 3 00:09:16 Established 3.1.1.2 65008 3 3 0 1 00:00:08 Established可以看出,Router B与Router C、Router B与Router A之间的BGP连接均已建立。路由状态代码:l * valid(合法)l best(最佳路由)l d damped(振荡抑制)l h history(历史路由)l i internal(内部路由)l s suppressed(聚合抑制)l S Stale(过期路由)2.3.3 查看Router A的BGP路由表。RouterA display bgp routing-table Total Number of Routes: 1 BGP Local router ID is 1.1.1.1 Status codes: * - valid, - VPNv4 best, - best, d - damped, h - history, i - internal, s - suppressed, S - Stale Origin : i - IGP, e - EGP, ? - incomplete Network NextHop MED LocPrf PrefVal Path/Ogn * 8.1.1.0/24 0.0.0.0 0 0 i 2.3.4 查看Router B的BGP路由表。RouterB display bgp routing-table Total Number of Routes: 1 BGP Local router ID is 2.2.2.2 Status codes: * - valid, - VPNv4 best, - best, d - damped, h - history, i - internal, s - suppressed, S - Stale Origin : i - IGP, e - EGP, ? - incomplete Network NextHop MED LocPrf PrefVal Path/Ogn * 8.1.1.0/24 3.1.1.2 0 0 65008i2.3.5 查看Router C的BGP路由表。RouterC display bgp routing-table Total Number of Routes: 1 Origini IGP(网络层可达信息来源于AS内部)e EGP(网络层可达信息通过EGP学习)?incomplete(网络层可达信息通过其他方式学习) BGP Local router ID is 3.3.3.3 Status codes: * - valid, - VPNv4 best, - best, d - damped, h - history, i - internal, s - suppressed, S - Stale Origin : i - IGP, e - EGP, ? - incomplete Network NextHop MED LocPrf PrefVal Path/Ogn i 8.1.1.0/24 3.1.1.2 0 100 0 65008i从路由表可以看出,Router A没有学到AS 65009内部的任何路由,Router C虽然学到了AS 65008中的8.1.1.0的路由,但因为下一跳3.1.1.2不可达,所以也不是有效路由。2.4 配置BGP引入直连路由在Router B上配置BGP引入直连路由,以便Router A能够获取到网段9.1.1.0/24的路由,Router C能够获取到网段3.1.1.0/24的路由。import-route命令用来引入其它协议路由信息并通告缺省情况下,BGP不引入且不通告其它协议的路由。通过import-route命令引入到BGP路由表中的路由的ORIGIN属性为incomplete。protocol:指定引入的路由协议,可以是direct、ospf、rip和static。2.4.1 配置Router B。 #bgp 65009import-route direct #2.4.2 查看Router C的BGP路由表。dis bgp routing-table BGP Local router ID is 3.3.3.3 Status codes: * - valid, - best, d - damped, h - history, i - internal, s - suppressed, S - Stale Origin : i - IGP, e - EGP, ? - incomplete Total Number of Routes: 6 Network NextHop MED LocPrf PrefVal Path/Ogn i 2.2.2.2/32 2.2.2.2 0 100 0 ? *i 3.1.1.0/24 2.2.2.2 0 100 0 ? *i 3.1.1.2/32 2.2.2.2 0 100 0 ? *i 8.1.1.0/24 3.1.1.2 0 100 0 65008i *i 9.1.1.0/24 2.2.2.2 0 100 0 ? *i 9.1.1.2/32 2.2.2.2 0 100 0 ?以上显示信息表明,到8.1.1.0的路由变为有效路由,下一跳为Router A的地址。2.4.3 查看Router B的BGP路由表RB-bgpdis bgp routing-table BGP Local router ID is 2.2.2.2 Status codes: * - valid, - best, d - damped, h - history, i - internal, s - suppressed, S - Stale Origin : i - IGP, e - EGP, ? - incomplete Total Number of Routes: 10 Network NextHop MED LocPrf PrefVal Path/Ogn * 2.2.2.2/32 0.0.0.0 0 0 ? * 3.1.1.0/24 0.0.0.0 0 0 ? * 3.1.1.1/32 0.0.0.0 0 0 ? * 3.1.1.2/32 0.0.0.0 0 0 ? * 8.1.1.0/24 3.1.1.2 0 0 65008i * 9.1.1.0/24 0.0.0.0 0 0 ? * 9.1.1.1/32 0.0.0.0 0 0 ? * 9.1.1.2/32 0.0.0.0 0 0 ? * 127.0.0.0 0.0.0.0 0 0 ? * 127.0.0.1/32 0.0.0.0 0 0 ?RB-bgp2.4.4 查看Router A的BGP路由表。RA-bgpdis bgp routing-table BGP Local router ID is 1.1.1.1 Status codes: * - valid, - best, d - damped, h - history, i - internal, s - suppressed, S - Stale Origin : i - IGP, e - EGP, ? - incomplete Total Number of Routes: 6 Network

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论