思科RIP过滤修改AD、Mertric值

简介:

实验名称:思科过滤修改AD、Mertric值
实验需求:路由器R4过滤掉R1、R2的loopback的10.10.1.1 10.10.2.2地址,修改R3路由表中一个前缀地址AD值,修改R3到R4路由表前缀中一个地址的Mertric值
实验思路:在每个路由器设置IP,设置RIP,在R3设置过滤、修改命令
实验拓扑:

实验命令:

R1>en
R1#configure terminal 
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#int f0/0
R1(config-if)#no shu
R1(config-if)#ip add 192.168
Dec 15 18:03:25.875: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
Dec 15 18:03:26.875: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
R1(config-if)#ip add 192.168.12.1 255.255.255.0
R1(config-if)#exi
R1(config)#int l 0
R1(config-if)#ip add 10.10.1.1 255.255.255.0
R1(config-if)#exi
R1(config)#router rip
R1(config-router)#version 2
R1(config-router)#no au
R1(config-router)#net 192.168.12.0 
R1(config-router)#net 10.10.1.0

R2>en
R2#configure t 
Enter configuration commands, one per line. End with CNTL/Z.
R2(config)#int f0/1
R2(config-if)#no shu
R2(config-if)#ip add 
Dec 15 18:04:17.975: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up
Dec 15 18:04:18.975: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
R2(config-if)#ip add 192.168.12.2 255.255.255.0 
R2(config-if)#exi
R2(config)#int l 0
R2(config-if)#ip add 10.10.2.2 255.255.255.0
R2(config-if)#exi
R2(config)#int f0/0
R2(config-if)#no shu
R2(config-if)#ip add 192.168.23.2 255.255.255.0
R2(config-if)#exi
R2(config)#router rip
R2(config-router)#version 2
R2(config-router)#no au
R2(config-router)#net 192.168.12.0
R2(config-router)#net 192.168.23.0
R2(config-router)#net 10.10.2.0 
R2(config-router)#redistribute static 
R2(config-router)#

R3>
R3>en
R3#configure t
Enter configuration commands, one per line. End with CNTL/Z.
R3(config)#int f0/1
R3(config-if)#no shu
R3(config-if)#ip add 192.168.23.3 255.255.255.0
R3(config-if)#exi
R3(config)#int f0/0
R3(config-if)#no shu
R3(config-if)#ip add 192.168.34.3 255.255.255.0
R3(config-if)#exi
R3(config)#int l 0
R3(config-if)#ip add 10.10.3.3 255.255.255.0
R3(config-if)#exi
R3(config)#router rip
R3(config-router)#version 2
R3(config-router)#no au
R3(config-router)#net 192.168.23.0
R3(config-router)#net 192.168.34.0
R3(config-router)#net 10.10.3.0 
R3(config-router)#exi
R3(config)#ip access-list standard a 
R3(config-std-nacl)#10 deny 10.10.0.0 0.0.3.0 
R3(config-std-nacl)#20 per
R3(config-std-nacl)#20 permit any
R3(config-std-nacl)#exi
R3(config)#router rip
R3(config-router)#distribute-list a out fastEthernet 0/0 
R3(config-router)#exi
R3(config)#ip access-list standard b 
R3(config-std-nacl)#10 permit 192.168.12.0 0.0.0.0 
R3(config-std-nacl)#exi
R3(config)#router rip
R3(config-router)#distance 250 192.168.23.2 0.0.0.0 b 
R3(config-router)#exi
R3(config)#ip access-list standard c
R3(config-std-nacl)#10 permit 192.168.12.0 0.0.0.0 
R3(config-std-nacl)#exi
R3(config)#router rip
R3(config-router)#offset-list c out 4 fastEthernet 0/0
R3(config-router)#exi
R3(config)#exi
R3#clear ip route 
R3#clear ip route 

R3#clear ip route 
R3#clear ip route 

R3#clear ip route 
R3#clear ip route 

R3#clear ip route 
R3#clear ip route 

R3#show ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area 
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

R 192.168.12.0/24 [250/1] via 192.168.23.2, 00:00:01, FastEthernet0/1
10.0.0.0/24 is subnetted, 4 subnets
R 10.10.1.0 [120/2] via 192.168.23.2, 00:00:01, FastEthernet0/1
R 10.10.2.0 [120/1] via 192.168.23.2, 00:00:01, FastEthernet0/1
C 10.10.3.0 is directly connected, Loopback0
R 10.10.4.0 [120/1] via 192.168.34.4, 00:00:05, FastEthernet0/0
C 192.168.23.0/24 is directly connected, FastEthernet0/1
C 192.168.34.0/24 is directly connected, FastEthernet0/0
R3#show ip route rip
R 192.168.12.0/24 [250/1] via 192.168.23.2, 00:00:13, FastEthernet0/1
10.0.0.0/24 is subnetted, 4 subnets
R 10.10.1.0 [120/2] via 192.168.23.2, 00:00:13, FastEthernet0/1
R 10.10.2.0 [120/1] via 192.168.23.2, 00:00:13, FastEthernet0/1
R 10.10.4.0 [120/1] via 192.168.34.4, 00:00:04, FastEthernet0/0
R3#

R4>
R4>en
R4#configure terminal 
Enter configuration commands, one per line. End with CNTL/Z.
R4(config)#int f0/1
R4(config-if)#no shu
R4(config-if)#ip add 192.16
Dec 15 18:07:57.251: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up
Dec 15 18:07:58.251: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
R4(config-if)#ip add 192.168.34.4 255.255.255.0
R4(config-if)#exi
R4(config)#int l 0 
R4(config-if)#ip add 10.10.4.4 255.255.255.0
R4(config-if)#exi
R4(config)#router rip
R4(config-router)#version 2
R4(config-router)#no au
R4(config-router)#net 192.168.34.0
R4(config-router)#net 10.10.4.0 
R4(config-router)#exi
R4(config)#exi
R4#clear ip route 
R4#clear ip route 

R4#clear ip route 
R4#clear ip route 

R4#clear ip route 
R4#clear ip route 

R4#clear ip route 
R4#clear ip route 

R4#clear ip route 
R4#show ip route 
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area 
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, 
- candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

R 192.168.12.0/24 [120/6] via 192.168.34.3, 00:00:09, FastEthernet0/1
10.0.0.0/24 is subnetted, 1 subnets
C 10.10.4.0 is directly connected, Loopback0
R 192.168.23.0/24 [120/1] via 192.168.34.3, 00:00:09, FastEthernet0/1
C 192.168.34.0/24 is directly connected, FastEthernet0/1
R4#show ip route rip
R 192.168.12.0/24 [120/6] via 192.168.34.3, 00:00:00, FastEthernet0/1
R 192.168.23.0/24 [120/1] via 192.168.34.3, 00:00:00, FastEthernet0/1
R4#show ip route rip
R 192.168.12.0/24 [120/6] via 192.168.34.3, 00:00:04, FastEthernet0/1
R 192.168.23.0/24 [120/1] via 192.168.34.3, 00:00:04, FastEthernet0/1
R4#show ip route rip
R 192.168.12.0/24 [120/6] via 192.168.34.3, 00:00:13, FastEthernet0/1
R 192.168.23.0/24 [120/1] via 192.168.34.3, 00:00:13, FastEthernet0/1
R4#



本文转自 linuxpp 51CTO博客,原文链接:http://blog.51cto.com/13505118/2051160,如需转载请自行联系原作者

相关文章
|
网络协议 数据库 数据安全/隐私保护
OSPF基础(二):OSPF区域、router-ID、度量值、修改度量值的方法、OSPF协议报文类型、OSPF邻接关系建立过程
OSPF基础术语讲解、OSPF区域、router-ID、度量值,OSPF度量值的计算方式、修改方式。 OSPF协议报文类型,OSPF三大表项-邻居表,常用的ospf查看方式,邻接关系的建立过程。
OSPF基础(二):OSPF区域、router-ID、度量值、修改度量值的方法、OSPF协议报文类型、OSPF邻接关系建立过程
如何处理“WLAN没有有效的IP配置”这一问题?
如何处理“WLAN没有有效的IP配置”这一问题?
431 0
|
安全 物联网 网络虚拟化
路由与交换系列之基本IP ACL特性与配置
• 掌握基本IP ACL的原理 • 掌握ACL在企业网络中的应用 • 掌握基本IP ACL的配置方式 • 掌握基本IP ACL的验证效果
4309 8
  路由与交换系列之基本IP ACL特性与配置
|
存储 安全 网络协议
多协议标签交换 (MPLS) 标签堆栈条目:“EXP”字段重命名为“TC”字段
MPLS 标签堆栈条目的格式由 RFC 3032 [RFC3032] 定义,包括一个称为“EXP field”的三位字段。RFC 3032 没有定义该字段的确切用途,只是声明它“保留用于实验用途”。
572 0
多协议标签交换 (MPLS) 标签堆栈条目:“EXP”字段重命名为“TC”字段
|
网络协议 网络虚拟化 网络架构
路由与交换系列高级IP ACL特性与配置实验
• 掌握高级 IP ACL的原理 • 掌握ACL在企业网络中的应用 • 掌握高级IP ACL的配置方式 • 掌握高级IP ACL的验证效果
334 1
|
网络协议 网络虚拟化 网络架构
路由与交换系列高级IP ACL特性与配置实验二
• 掌握高级 IP ACL的原理 • 掌握ACL在企业网络中的应用 • 掌握高级IP ACL的配置方式 • 掌握高级IP ACL的验证效果
234 1
|
网络协议 算法 数据挖掘
路由与交换系列之企业级ipv6和AAA通讯实验(下)
1.企业级IPV6和AAA通讯 2.实验目标:客户端能访问服务器:不同VLAN的PC能相互访问 3.要求:除服务器server和客户端client外全部部署IPV6地址及协议
3727 2
路由与交换系列之企业级ipv6和AAA通讯实验(下)
|
网络协议 网络虚拟化 网络架构
路由与交换系列之企业级ipv6和AAA通讯实验(上)
1.企业级IPV6和AAA通讯 2.实验目标:客户端能访问服务器:不同VLAN的PC能相互访问 3.要求:除服务器server和客户端client外全部部署IPV6地址及协议
3681 2
路由与交换系列之企业级ipv6和AAA通讯实验(上)