R1#sh 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
172.168.0.0/24 is subnetted, 4 subnets
C 172.168.0.0 is directly connected, Loopback0
C 172.168.1.0 is directly connected, Loopback0
C 172.168.2.0 is directly connected, Loopback0
C 172.168.3.0 is directly connected, Loopback0
172.16.0.0/24 is subnetted, 1 subnets
C 172.16.255.0 is directly connected, Serial1/1
O E2 192.168.255.0/24 [110/200] via 172.16.255.2, 00:00:03, Serial1/1
O E2 192.168.0.0/24 [110/200] via 172.16.255.2, 00:00:03, Serial1/1
O E2 192.168.1.0/24 [110/200] via 172.16.255.2, 00:00:03, Serial1/1
O E2 192.168.2.0/24 [110/200] via 172.16.255.2, 00:00:03, Serial1/1
O E2 192.168.3.0/24 [110/200] via 172.16.255.2, 00:00:03, Serial1/1
|
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
172.168.0.0/16 is variably subnetted, 4 subnets, 2 masks
R 172.168.1.0/24 [120/10] via 192.168.255.2, 00:00:02, Serial1/0
R 172.168.0.1/32 [120/10] via 192.168.255.2, 00:00:02, Serial1/0
R 172.168.2.0/24 [120/10] via 192.168.255.2, 00:00:02, Serial1/0
R 172.168.3.0/24 [120/10] via 192.168.255.2, 00:00:02, Serial1/0
172.16.0.0/24 is subnetted, 1 subnets
R 172.16.255.0 [120/10] via 192.168.255.2, 00:00:02, Serial1/0
C 192.168.255.0/24 is directly connected, Serial1/0
C 192.168.0.0/24 is directly connected, Loopback0
C 192.168.1.0/24 is directly connected, Loopback0
C 192.168.2.0/24 is directly connected, Loopback0
C 192.168.3.0/24 is directly connected, Loopback0
|
R2(config)#access-list 1 deny 192.168.2.0 0.0.0.255
R2(config)#access-list 1 deny 192.168.3.0 0.0.0.255
R2(config)#access-list 1 permit any (
这一条一定要加上,不然的话会全部过滤掉RIP来的路由)
R2(config-router)# router ospf 1
R2(config-router)#distribute-list 1 out rip (
对外部RIP路由进行distribute,引用访问控制列表1)
|
R1#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
172.168.0.0/24 is subnetted, 4 subnets
C 172.168.0.0 is directly connected, Loopback0
C 172.168.1.0 is directly connected, Loopback0
C 172.168.2.0 is directly connected, Loopback0
C 172.168.3.0 is directly connected, Loopback0
172.16.0.0/24 is subnetted, 1 subnets
C 172.16.255.0 is directly connected, Serial1/1
O E2 192.168.255.0/24 [110/200] via 172.16.255.2, 00:01:31, Serial1/1
O E2 192.168.0.0/24 [110/200] via 172.16.255.2, 00:01:31, Serial1/1
O E2 192.168.1.0/24 [110/200] via 172.16.255.2, 00:01:31, Serial1/1
(现在只能学到这三条路由了
,过滤掉了
192.168.2.0和
192.168.3.0这两个网络
)
|
R2(config)#access-list 2 deny 172.168.0.0 0.0.0.255 (建立一个列表
2对源地址的过滤
)
R2(config)#access-list 2 deny 172.168.1.0 0.0.0.255 (建立一个列表
2对源地址的过滤
)
R2(config)#access-list 2 permit any (
切记不要忘了加这一条,不然所有路由都学不到)
R2(config-router)# router rip
R2(config-router)#distribute-list 2 out ospf 1(
对外部ospf路由进行distribute,引用访问控制列表2)
|
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
172.168.0.0/24 is subnetted, 2 subnets
R 172.168.2.0 [120/10] via 192.168.255.2, 00:00:01, Serial1/0
R 172.168.3.0 [120/10] via 192.168.255.2, 00:00:01, Serial1/0
(只有这两条路由了
)
172.16.0.0/24 is subnetted, 1 subnets
R 172.16.255.0 [120/10] via 192.168.255.2, 00:00:01, Serial1/0
C 192.168.255.0/24 is directly connected, Serial1/0
C 192.168.0.0/24 is directly connected, Loopback0
C 192.168.1.0/24 is directly connected, Loopback0
C 192.168.2.0/24 is directly connected, Loopback0
C 192.168.3.0/24 is directly connected, Loopback0
R3#
|