55-高级路由:分发列表:DV协议应用

一、实验拓扑:

二、实验要求:
1、全网运行EIGRP 90;
2、R3、R4不接收2.2.2.2条目,R2不接收3.3.3.3、4.4.4.4路由
3、R1部署Prefix-list抓2.2.2.0路由条目,执行拒绝动作、允许其它任意动作;
4、R1在RIP进程下f1/0、s2/0 out方向调用分发列表命令;或者是R1的f0/0 in方向调用,这样R1也没有2.2.2.0的路由条目了,不符合题目要求;
5、验证:R3、R4是否还有2.2.2.0路由条目?
三、命令部署:
R1(config)#ip prefix-list pl deny 2.2.2.0/24 //注意这里一定关闭自动汇总
R1(config)#ip prefix-list pl permit 0.0.0.0/0 le 32 0.0.0.0/0表示匹配默认路由 le/32表示带掩码长度

R1(config)#router eigrp 90
R1(config-router)#distribute-list prefix pl in f0/0

R1(config-router)#distribute-list prefix pl out f1/0
R1(config-router)#distribute-list prefix pl out s2/0

四、验证:
1、R1的in方向:R1都没有了2.2.2.0的路由
R1#show ip route
3.0.0.0/24 is subnetted, 1 subnets
D 3.3.3.0 [90/156160] via 13.1.1.3, 00:00:48, FastEthernet1/0
4.0.0.0/24 is subnetted, 1 subnets
D 4.4.4.0 [90/2297856] via 14.1.1.4, 00:00:40, Serial2/0
C 200.1.1.0/24 is directly connected, Loopback0
12.0.0.0/24 is subnetted, 1 subnets
C 12.1.1.0 is directly connected, FastEthernet0/0
13.0.0.0/24 is subnetted, 1 subnets
C 13.1.1.0 is directly connected, FastEthernet1/0
14.0.0.0/24 is subnetted, 1 subnets
C 14.1.1.0 is directly connected, Serial2/0

1、R1的out方向:R3、R4没有2.2.2.0的路由,R1仍然有:
R1#show ip route
2.0.0.0/24 is subnetted, 1 subnets
D 2.2.2.0 [90/156160] via 12.1.1.2, 00:01:05, FastEthernet0/0
3.0.0.0/24 is subnetted, 1 subnets
D 3.3.3.0 [90/156160] via 13.1.1.3, 00:02:46, FastEthernet1/0
4.0.0.0/24 is subnetted, 1 subnets
D 4.4.4.0 [90/2297856] via 14.1.1.4, 00:02:38, Serial2/0
C 200.1.1.0/24 is directly connected, Loopback0
12.0.0.0/24 is subnetted, 1 subnets
C 12.1.1.0 is directly connected, FastEthernet0/0
13.0.0.0/24 is subnetted, 1 subnets
C 13.1.1.0 is directly connected, FastEthernet1/0
14.0.0.0/24 is subnetted, 1 subnets
C 14.1.1.0 is directly connected, Serial2/0

R3#show ip route
3.0.0.0/24 is subnetted, 1 subnets
C 3.3.3.0 is directly connected, Loopback0
4.0.0.0/24 is subnetted, 1 subnets
D 4.4.4.0 [90/2300416] via 13.1.1.1, 00:02:58, FastEthernet0/0
12.0.0.0/24 is subnetted, 1 subnets
D 12.1.1.0 [90/30720] via 13.1.1.1, 00:02:48, FastEthernet0/0
13.0.0.0/24 is subnetted, 1 subnets
C 13.1.1.0 is directly connected, FastEthernet0/0
14.0.0.0/24 is subnetted, 1 subnets
D 14.1.1.0 [90/2172416] via 13.1.1.1, 00:02:48, FastEthernet0/0

R4#show ip route
3.0.0.0/24 is subnetted, 1 subnets
D 3.3.3.0 [90/2300416] via 14.1.1.1, 00:03:27, Serial2/0
4.0.0.0/24 is subnetted, 1 subnets
C 4.4.4.0 is directly connected, Loopback0
12.0.0.0/24 is subnetted, 1 subnets
D 12.1.1.0 [90/2172416] via 14.1.1.1, 00:03:08, Serial2/0
13.0.0.0/24 is subnetted, 1 subnets
D 13.1.1.0 [90/2172416] via 14.1.1.1, 00:03:08, Serial2/0
14.0.0.0/24 is subnetted, 1 subnets
C 14.1.1.0 is directly connected, Serial2/0

原文地址:http://blog.51cto.com/13856092/2138502

时间: 2024-11-10 01:27:34

55-高级路由:分发列表:DV协议应用的相关文章

distribute-list(分发列表)控制路由更新、使用

distribute-list(分发列表)用于控制路由更新的一个工具,只能过滤路由信息,不能过滤LSA.因此分发列表在距离矢量(RIP.EIGRP)路由协议中使用,无论是in或者是out方向,都能正常的过滤路由.但对于链路状态协议(ospf.isis),路由器之间传递的消息不再是路由信息了,而是LSA,而分发列表是无法对LSA进行过滤的.需要结合ACL使用,所以使用场景受限.如果将access-list应用到distribute-list,则可以用来允许.拒绝路由选择更新.实验如下: R1>co

分发列表实现路由控制过滤(RIP)实验

一.基本实验配置R1 参考配置配置接口地址interface Loopback0ip address 172.16.1.1 255.255.255.0interface Loopback1ip address 172.16.2.1 255.255.255.0 interface Loopback2ip address 10.1.1.1 255.255.255.0 interface FastEthernet0/0ip address 200.1.1.1 255.255.255.0no shutd

思科分发列表过滤路由(RIP)动态路由协议篇

实验环境,模拟三台路由器,运行ospf,ip地址像往常规划跟往常一样以下为配置命令,此时是先搭建初始环境 -------------1enconf thostname R1int s1/0ip add 192.168.12.1 255.255.255.0no shutint l0ip add 1.1.1.1 255.255.255.0int l1ip add 11.11.11.11 255.255.255.0exitrouter ripver 2no aunetwork 192.168.12.0

16、基于状态的iptable+高级路由(重点)

-- 基于状态的iptables 如果按照tcp/ip来划分连接状态,有12种之多 但iptables里只有4种状态:ESTABLISHED.NEW.RELATED及INVALID 这两个分类是两个不相干的定义.例如在TCP/IP标准描述下UDP及ICMP数据包是没有连接状态的,但在state模块的描述下,任何数据包都有连接状态. new(第一次) |      |-------------------->|      | |      |   established(回来)  |      |

distribute-list分发列表 转自 红茶三杯sina blog

distribute-list分发列表  (2013-07-07 10:46:09) 转载▼ 标签:  distribute-list  分发列表 分类: Routing 一.工具概述 distribute-list分发列表是用于控制路由更新的一个工具,只能过滤路由信息,不能过滤LSA. 如上图,R1.R2.R3运行RIP.R2在初始情况下,会将自己的路由表更新给R1,其中假设包含三条路由1.0.2.0及3.0.现在我们可以通过在R2上部署分发列表distribute-list,使得R2在更新给

django之路由分组,路由分发,FBV,CBV,ORM框架

django之路由分组,路由分发,FBV,CBV,ORM框架 今日的内容: a. 路由系统 1. 创建app 2. 路由的分组 3. 路由的分发 - 正则表达式匹配 b. django的orm(模型model) 1. 创建模型的步骤 2. orm基本的增删改查 3. 正向查询和反向查询 注意事项: 1. 前台传给后台一个列表时,后端如何接受: request.POST.getlist(字段名) 2. 前台传给后台一个列表时,需要在ajax请求中增加一个参数: traditional: true

分发列表

路由协议的分发列表控制 实验拓扑 说明:R3和R2的lo地址宣告在OSPF中,R1的lo地址被宣告在eigrp中. 1.      R1的路由表没有变化,R2的如下 2.      R3的路由表如下 3.      将OSPF重分发到eigrp中 4.      重分发后查看R1的路由表 5.      现在使用分发列表过滤只允许3.3.3.0网段的路由分发过来(可以在R1和R2上做) a)     定义访问控制列表和重分发列表 b)     查看R1上的路由表 6.      例如再允许172

34、重分布配置实验之分发列表distribute-list

1.分发列表distribute-list解析 2.实验拓扑 3.实验配置 R1配置 interface Serial0/0 ip address 12.1.1.1 255.255.255.0 interface Serial0/1 ip address 13.1.1.1 255.255.255.0 interface Serial0/2 ip address 14.1.1.1 255.255.255.0 router eigrp 90 redistribute ospf 110 metric

openvpn高级路由技术

转:http://blog.csdn.net/dog250/article/details/6975179 目录 server模式以及点对点模式的OpenVPN OpenVPN的高级路由技术 1TAP模式虚拟网卡对源地址的检查以及路由配置思路 2TUN模式虚拟网卡对源地址的检查以及路由配置思路 3如何配置TUN模式的OpenVPN从而通过检查 4为何说网对网通透拓扑的配置很复杂 5OpenVPN的redirect-gateway选项 总结 1.server模式以及点对点模式的OpenVPN 前文