博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
分发列表实现路由控制过滤(RIP)实验
阅读量:5810 次
发布时间:2019-06-18

本文共 1808 字,大约阅读时间需要 6 分钟。

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

一、基本实验配置

R1 参考配置
配置接口地址
interface Loopback0
ip address 172.16.1.1 255.255.255.0
interface Loopback1
ip address 172.16.2.1 255.255.255.0

interface Loopback2

ip address 10.1.1.1 255.255.255.0

interface FastEthernet0/0

ip address 200.1.1.1 255.255.255.0
no shutdown

配置RIP路由:

router rip
version 2
timers basic 5 10 10 15 修改计时器
network 10.0.0.0
network 172.16.0.0
network 200.1.1.0
no auto-summary

R2参考配置

接口地址配置
interface FastEthernet0/0
ip address 200.1.1.2 255.255.255.0
no shutdown

interface FastEthernet1/0

ip address 200.1.2.1 255.255.255.0
no shutdown

RIP路由配置

router rip
version 2
timers basic 5 10 10 15 修改计时器
network 200.1.1.0
network 200.1.2.0
no auto-summary

R3 参考配置

interface Loopback0
ip address 192.168.1.1 255.255.255.0

interface FastEthernet0/0

ip address 200.1.2.2 255.255.255.0
no shutdown

router rip

version 2
timers basic 5 10 10 15
network 192.168.1.0
network 200.1.2.0
no auto-summary

配置完成后在R2上查看路由

R 172.16.1.0/24 is possibly down,
routing via 200.1.1.1, FastEthernet0/0
R 172.16.2.0/24 is possibly down,
routing via 200.1.1.1, FastEthernet0/0
10.0.0.0/24 is subnetted, 1 subnets
R 10.1.1.0 [120/1] via 200.1.1.1, 00:00:01, FastEthernet0/0
R 192.168.1.0/24 [120/1] via 200.1.2.2, 00:00:01, FastEthernet1/0


在R2过滤掉172.16.0.0 的路由

第一步创建列表

access-list 10 deny 172.16.0.0 0.0.255.255
access-list 10 permit any
第二步确定方向和接口,并应用分发列表
R2(config)#router rip
R2(config-router)#distribute-list 10 in FastEthernet0/0
在f0/0口的in方向应用分发列表调用10号访问控制列表

查看路由,172.16.0.0的路由已经消失,但10.1.1.0的路由依然可以看到,说明实验成功

C 200.1.1.0/24 is directly connected, FastEthernet0/0
C 200.1.2.0/24 is directly connected, FastEthernet1/0
10.0.0.0/24 is subnetted, 1 subnets
R 10.1.1.0 [120/1] via 200.1.1.1, 00:00:00, FastEthernet0/0
R 192.168.1.0/24 [120/1] via 200.1.2.2, 00:00:01, FastEthernet1/0

转载于:https://blog.51cto.com/ronning/2325786

你可能感兴趣的文章
JMeter入门教程2:录制1
查看>>
RAIDD 互联网应用
查看>>
第九章 缓存技术
查看>>
有4家企业获得阿里云创投资金 一夜间成为土豪的感脚有木有~~
查看>>
ORACLE日期时间的格式化参数大全
查看>>
我的博文哪去了?
查看>>
老男孩28期视频第一次测试
查看>>
cron表达式详解
查看>>
restful+springmvc+mybatis+ webservice 分布式架构
查看>>
Centos7之后版本的默认登陆模式更改
查看>>
sonar runner 2.4
查看>>
Memcached 教程
查看>>
csc
查看>>
2013年1月30日的读书计划
查看>>
作业5
查看>>
封装一个自己的 Ajax小框架
查看>>
SQL查询今天、昨天、7天内、30天
查看>>
LeetCode - 36. Valid Sudoku
查看>>
HNU 13308 Help cupid
查看>>
安装repcached,并且测试其双向复制是否成功
查看>>