五 配置团体属性,让222.222.222.0网络只被R2,R3,R4学习到 这个需求意思是让这条路由不传到联邦外(大AS之外),所以要用NO_EXPORT属性 r1(config)#access-list 3 permit 222.222.222.0 0.0.0.255 r1(config)#route-map WY permit 10 r1(config-route-map)#match ip add 3 r1(config-route-map)#set community no-export r1(config)#route-map WY permit 20 为了让R4能继承到该属性,必须在R1,R2,R3都配置send-community...
by 怒咆的野狼 - 网络技术文档中心 - 2007-05-18 13:12:04 阅读(460) 回复(0)
community属性。这是不同于选路属性的一个属性。该属性具有以下几个特点; 1 community是一个任选可透明传送属性,它可以简化策略的执行。 2 它是cisco的一个专有属性,现在在RFC1997中已被标准化。 3 commnity属性标明一个目的地作为一些目的地团体中的一个成员,这些目的地共享一个或多个共同的特性。 4 community值可以自己定义,另外有几个已经定义好的团体属性: NO_ADVERTISE: 表示携带该值的路由不能公布给Ebgp和 Ibgp邻...
community属性。这是不同于选路属性的一个属性。该属性具有以下几个特点; 1 community是一个任选可透明传送属性,它可以简化策略的执行。 2 它是cisco的一个专有属性,现在在RFC1997中已被标准化。 3 commnity属性标明一个目的地作为一些目的地团体中的一个成员,这些目的地共享一个或多个共同的特性。 4 community值可以自己定义,另外有几个已经定义好的团体属性: NO_ADVERTISE: 表示携带该值的路由不能公布给Ebgp和 Ibgp邻...
cisco+OSPF+MPLS+bgp配置实例(二) 四、P路由器配置 p#SHOW RUN Building configuration... Current configuration : 1172 bytes ! version 12.3 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname p ! boot-start-marker boot-end-marker ! ! no aaa new-model ip subnet-zero ! ! ! ip cef ip audit po max-events 100 ! ! interface Loopback0 ip...
cisco+OSPF+MPLS+bgp配置实例(一) 通过DynamipsGUI软件,本人就cisco+OSPF+MPLS+bgp写了这篇文章,有需要的人下了. 一、网络环境 由5台cisco7204组成的网络,一台为P路由器,两台PE路由器,两台CE路由器; 二、网络描述 在P和两台PE路由器这间通过OSPF动态路由协议完成MPLS网络的建立,两台PE路由器这间启用bgp路由协议,在PE路由器上向所属的CE路由器指VPN路由,在CE路由器中向PE路由器配置静态路由。 配置思路: 1、在P和两台PE路由...
http://www.net527.cn/viewthread.php?tid=6437&extra=page%3D2 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/72231/showart_1011377.html
cisco路由器ISIS和bgp混合组网实例(三) 3、 R3配置和测试 r3# r3#show run Building configuration... Current configuration : 1835 bytes ! version 12.3 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname r3 ! boot-start-marker boot-end-marker ! ! no aaa new-model ip subnet-zero ! ! no ip domain lookup ! ip cef ip audit po max-event...
cisco路由器ISIS和bgp混合组网实例(二) 2、 R2配置和测试 r2# r2#show run Building configuration... Current configuration : 1938 bytes ! version 12.3 service timestamps debug datetime msec service timestamps log datetime msec no service password-encryption ! hostname r2 ! boot-start-marker boot-end-marker ! ! no aaa new-model ip subnet-zero ! ! no ip domain lookup ! ip cef ip audit po max-event...
cisco路由器ISIS和bgp混合组网实例(一) 本实例共有5台7200路由器,分别为R1、R2、R3、R4、R5,R1、R2和R3组成AS100自治域,R5为AS10自治域,R4为AS20自治域,在AS100自治域内,启用了ISIS动态路由协议,R1为R3和R2的反射器,此例为典型的三家ISP互连的骨干路由器配置,在本例中,我们也可将AS10和AS20像AS100那样做得大一点,在内部也启用ISIS等态路由协议,OSPF的例子就不讲了,也ISIS很像。本实例的目的是三个自治域的所有IP地...
y-only Summaryonly选项只发布汇总路由,去掉后会发送汇总路由和子网路由,而为了避免回环建议添加as-set选项 9.13. 在AS Path属性值中添加更多ASN 提问 通过增加AS Path属性中ASN的数目来影响bgp选路 回答 Router1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router1(config)#ip as-path access-list 15 permit ^$ Router1(config)#route-map PREPEND permit 10 Router1(config-route...
9.1. Configuring bgp 提问 在网络中启用bgp 回答 Route1在AS 65500中 Router1#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router1(config)#interface Serial0 Router1(config-if)#ip address 192.168.55.6 255.255.255.252 Router1(config-if)#exit Router1(config)#router bgp 65500 Router1(config-router)#network 192.168.1.0 Router1(config-router)#neighbor 192.168.55.5 remot...