码迷,mamicode.com
首页 > 其他好文 > 详细

OSPF汇总实验

时间:2014-09-19 19:43:06      阅读:447      评论:0      收藏:0      [点我收藏+]

标签:ospf汇总实验路由表   帧中继   流量   认证   

实验名称                OSPF汇总操作                          

一.实验需求

1.实验拓扑

bubuko.com,布布扣

 

2.需求

一.area1area2不得出现4LSA5LSA

二.R4R5通过帧中继连接,R4连接R5point-to-point类型;

三.R4R6通过帧中继连接,R4连接R6point-to-multi类型;

四.R1R2开启认证,链路封装类型为PPP,认证为PAP

五.Area1 启用区域认证;

六.Area 1 (R1)创建三个环回口,分别为lo 10 202.1.1.1/24,lo 20 202.1.2.1/24,lo 30 202.1.3.1/24 ;

七.R4R1控制数据流量从R2;

八.R5 创建三个环回口,为lo 10 200.1.1.1/24 ,lo 20 200.1.2.1/24,lo 30 200.1.3.1/24,200.1.1.0网段 不能出现在路由表中;

九.R7 创建 三个环回口,为lo 10 199.1.1.1/24,lo 20 199.1.2.1/24,lo 30 199.1.3.1/24;

十.Area 2 不能为totolly,减少LSA

十一.全网可达  

十二.R6R8之间为帧中继交换连接。

 

二. 实验环境(软件、硬件环境)

GNS3-Standalone-64-bit

CiscoIOSSoftware,7200Software(C7200-ADVSECURITYK9-M), Version 12.4(11)T, RELEASE SOFTWARE (fc2)

PC机一台

 

三.实验原理

1.地址划分:

R1------R212.1.1.0/24   R1---------R3:13.1.1.0/24

R2---------R4:100.1.1.1/24   R3---------R4:100.1.1.0/24

R4---------R5:45.1.1.0/24   R4---------R6:46.1.1.0/24

 R6---------R7:67.1.1.0/24   R6---------R8:68.1.1.0/24

2.环回地址创建:

R1Loopback1 1.1.1.1/24  Loopback10 202.1.1.1/24

Loopback20 202.1.2.1/24   Loopback30 202.1.3.1/24

 

R2:Loopback2 2.2.2.2/24 

R3:Loopback3 3.3.3.3/24

R4:Loopback4 4.4.4.4/24

R5:Loopback5 5.5.5.5/24 Loopback10 200.1.1.1/24

Loopback20 200.1.2.1/24 Loopback30 200.1.3.1/24

R6:Loopback6 6.6.6.6/24

R7:Loopback7 7.7.7.7/24 Loopback10 199.1.1.1/24

Loopback20 199.1.2.1/24 Loopback30 199.1.3.1/24

R8:Loopback8 8.8.8.8/24

3.区域划分:

Area 1 R1,R2,R3stub 末节区域)

Area 0 :R2,R3,R4(骨干区域)

Area 2:R4,R6stub 末节区域)

Area 3:R6,R8

4.路由运行协议:

OSPF 100:R1R2R3R4R6R8

EIGRP 90R4R5

RIP VER2R6R7

Frame relay:R9

5.area1area2设置stub区域,过滤4类,5LSA

6.R3上修改OSPF cost值,使之传递到R4的路由条目的cost 值大于R4接收到的路由,在R4的路由表中只出现从R2传递过来的路由条目。

7.在各个ASBR路由器上重分发外部路由,并且进行路由汇总,优化路由条目。

8.R4-------R6上建立tunnel隧道,完成非骨干区域与骨干区域的连接。地址为192.168.1.0/24.

9.全网汇总,优化路由条目。

10.使用distribute-list 过滤200.1.1.1/24,并且在R5上发布一条缺省路由。使之全网可达。

 

四.实验内容及步骤

R1主要配置:

username xiaolei password 0 xiaoming/设置pap认证用户名密码

!     

interface Loopback1

 ip address 1.1.1.1 255.255.255.0

!         

interface Loopback10

 ip address 202.1.1.1 255.255.255.0

 ip ospf network point-to-point/网络类型为点对点

!         

interface Loopback20

 ip address 202.1.2.1 255.255.255.0

 ip ospf network point-to-point

!         

interface Loopback30

 ip address 202.1.3.1 255.255.255.0

 ip ospf network point-to-point

!         

interface FastEthernet0/0

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface FastEthernet0/1

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface Serial1/0

 ip address 12.1.1.1 255.255.255.0

 encapsulation ppp/封装协议为PPP

 ip ospf message-digest-key 1 md5 xiaoming/设置区域认证为md5类型和密码

 serial restart-delay 0

 ppp authentication pap

 ppp pap sent-username xiaoming password 0 xiaoming

!         

interface Serial1/1

 ip address 13.1.1.1 255.255.255.0

 ip ospf message-digest-key 1 md5 xiaoming/接口启用区域认证

 serial restart-delay 0

!         

interface Serial1/2

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/3

 no ip address

 shutdown 

 serial restart-delay 0

!         

router ospf 100

 router-id 1.1.1.1/路由ID

 log-adjacency-changes

 area 1 authentication message-digest/启用区域认证,类型为md5

 area 1 stub/设置该区域为stub区域,过滤45LSA

 network 1.1.1.0 0.0.0.255 area 1/宣告相应网段

 network 12.1.1.0 0.0.0.255 area 1

 network 13.1.1.0 0.0.0.255 area 1

 network 202.1.1.0 0.0.0.255 area 1

 network 202.1.2.0 0.0.0.255 area 1

 network 202.1.3.0 0.0.0.255 area 1

!         

no ip http server

no ip http secure-server

!         

!         

!         

logging alarm informational

R2主要配置:

username xiaoming password 0 xiaoming/设置pap认证用户名和密码

!              

interface Loopback2

 ip address 2.2.2.2 255.255.255.0

!         

interface FastEthernet0/0

 ip address 100.1.1.2 255.255.255.0

 ip ospf network broadcast

 duplex auto

 speed auto

!         

interface FastEthernet0/1

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface Serial1/0

 ip address 12.1.1.2 255.255.255.0

 encapsulation ppp/封装协议为PPP

 ip ospf message-digest-key 1 md5 xiaoming/接口启用区域认证,认证类型为md5

 serial restart-delay 0

 ppp authentication pap/接口封装协议为PPP

 ppp pap sent-username xiaolei password 0 xiaoming

!         

interface Serial1/1

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/2

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/3

 no ip address

 shutdown 

 serial restart-delay 0

!         

router ospf 100

 router-id 2.2.2.2/路由ID

 log-adjacency-changes

 area 1 authentication message-digest/设置区域认证,区域认证类型为md5.

 area 1 stub/区域类型为stub区域

 area 1 range 202.1.0.0 255.255.0.0/汇总路由,优化路由条目

 network 2.2.2.0 0.0.0.255 area 0/宣告网络

 network 12.1.1.0 0.0.0.255 area 1

 network 100.1.1.0 0.0.0.255 area 0

!         

no ip http server

no ip http secure-server

!         

!         

!         

logging alarm informational

R3主要配置:

version 12.4

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

no ip icmp rate-limit unreachable

ip cef

ip tcp synwait-time 5

!

no ip domain lookup

!         

multilink bundle-name authenticated

!               

interface Loopback3

 ip address 3.3.3.3 255.255.255.0

!         

interface FastEthernet0/0

 ip address 100.1.1.3 255.255.255.0

 ip ospf network broadcast/接口网络类型为广播

 duplex auto

 speed auto

!         

interface FastEthernet0/1

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface Serial1/0

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/1

 ip address 13.1.1.3 255.255.255.0

 ip ospf authentication-key 1 xiaoming

 ip ospf message-digest-key 1 md5 xiaoming

 ip ospf cost 67/修改cost值,使R4R1R2

 serial restart-delay 0

!         

interface Serial1/2

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/3

 no ip address

 shutdown 

 serial restart-delay 0

!         

router ospf 100

 router-id 3.3.3.3

 log-adjacency-changes

 area 1 authentication message-digest

 area 1 stub

 area 1 range 202.1.0.0 255.255.0.0/汇总路由,优化路由条目

 network 3.3.3.0 0.0.0.255 area 0

 network 13.1.1.0 0.0.0.255 area 1

 network 100.1.1.0 0.0.0.255 area 0

!         

no ip http server

no ip http secure-server

!         

!              

logging alarm informational

R4主要配置:

interface Loopback4

 ip address 4.4.4.4 255.255.255.0

!         

interface Tunnel1/创建tunnel隧道,使骨干区域连接非骨干区域area3

 ip address 192.168.1.4 255.255.255.0

 ip ospf network point-to-multipoint/接口网络类型为点到多点

 tunnel source 4.4.4.4/隧道源地址

 tunnel destination 6.6.6.6/隧道目的地址

!         

interface FastEthernet0/0

 ip address 100.1.1.4 255.255.255.0

 ip ospf network broadcast

 duplex auto

 speed auto

!         

interface FastEthernet0/1

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface Serial1/0

 no ip address

 encapsulation frame-relay/接口封装协议为帧中继

 ip ospf network point-to-multipoint

 serial restart-delay 0

 no arp frame-relay

 no frame-relay inverse-arp/关闭frame-relay地址映射的ARP映射

!         

interface Serial1/0.1 point-to-point/启用子接口,接口类型为点到点

 ip address 45.1.1.4 255.255.255.0

 frame-relay interface-dlci 405 /设置PVC链路的dlci号  

!         

interface Serial1/0.2 multipoint/启用子接口,接口类型为点到多点

 ip address 46.1.1.4 255.255.255.0

 ip ospf network point-to-multipoint

 frame-relay map ip 46.1.1.6 406 broadcast/设置目的IPpvc链路的dlci号映射,伪广播。

!         

interface Serial1/1

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/2

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/3

 no ip address

 shutdown 

 serial restart-delay 0

!         

router eigrp 90

 redistribute ospf 100 metric 100 10 50 50 1500/OSPF路由重发布到eigrp中,须设置相关metric

 network 4.4.4.0 0.0.0.255

 network 45.1.1.0 0.0.0.255

 no default-information out

 distribute-list 1 in Serial1/0.1/创建分发列表过滤200.1.1.1/24

 no auto-summary

!         

router ospf 100

 router-id 4.4.4.4

 log-adjacency-changes

 area 2 stub/设置area2stub区域 ,过滤45LSA

 redistribute eigrp 90 subnets/eigrp路由重发布到OSPF

 network 4.4.4.0 0.0.0.255 area 0

 network 46.1.1.0 0.0.0.255 area 2

 network 100.1.1.0 0.0.0.255 area 0

 network 192.168.1.0 0.0.0.255 area 3

 neighbor 6.6.6.6/单播指邻居

 default-information originate/下发缺省路由

!         

no ip http server

no ip http secure-server

!         

logging alarm informational

access-list 1 deny   200.1.1.0 0.0.0.255/设置ACL,抓取200.1.1.0/24路由

access-list 1 permit any/允许所有

!             

control-plane

R5主要配置:

interface Loopback5

 ip address 5.5.5.5 255.255.255.0

!         

interface Loopback10

 ip address 200.1.1.1 255.255.255.0

!         

interface Loopback20

 ip address 200.1.2.1 255.255.255.0

!         

interface Loopback30

 ip address 200.1.3.1 255.255.255.0

!         

interface FastEthernet0/0

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface FastEthernet0/1

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface Serial1/0

 no ip address

 encapsulation frame-relay/封装协议类型为帧中继

 serial restart-delay 0

 no arp frame-relay

 no frame-relay inverse-arp

!         

interface Serial1/0.1 point-to-point/启用子接口,类型为点到点

 ip address 45.1.1.5 255.255.255.0

 ip summary-address eigrp 90 0.0.0.0 0.0.0.0 5./接口汇总产生缺省路由 metric值为5

 frame-relay interface-dlci 504 /设置接口帧中继映射PVC号为504  

!         

interface Serial1/1

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/2

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/3

 no ip address

 shutdown 

 serial restart-delay 0

!         

router eigrp 90/启用eigrp协议,AS90

 network 5.5.5.0 0.0.0.255/宣告网段

 network 45.1.1.0 0.0.0.255

 network 200.1.1.0

 network 200.1.2.0

 network 200.1.3.0

 no auto-summary/关闭自动汇总

!         

no ip http server

no ip http secure-server

!             

logging alarm informational

R6主要配置:

interface Loopback6

 ip address 6.6.6.6 255.255.255.0

!         

interface Tunnel1/创建tunnel1隧道

 ip address 192.168.1.6 255.255.255.0

 ip ospf network point-to-multipoint/接口网络类型点到多点

 tunnel source 6.6.6.6/隧道源地址

 tunnel destination 4.4.4.4/隧道目的地址

!         

interface FastEthernet0/0

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface FastEthernet0/1

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface Serial1/0

 no ip address

 encapsulation frame-relay

 ip ospf network point-to-multipoint

 serial restart-delay 0

 no arp frame-relay

 no frame-relay inverse-arp

!         

interface Serial1/0.1 multipoint

 ip address 46.1.1.6 255.255.255.0

 ip ospf network point-to-multipoint

 ip ospf priority 0/修改接口优先级,使之不参与DR/BDR选举

 frame-relay map ip 46.1.1.4 604 broadcast

!         

interface Serial1/0.2 point-to-point

 ip address 68.1.1.6 255.255.255.0

 frame-relay interface-dlci 608   

!         

interface Serial1/1

 ip address 67.1.1.6 255.255.255.0

 serial restart-delay 0

!         

interface Serial1/2

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/3

 no ip address

 shutdown 

 serial restart-delay 0

!         

router ospf 100

 router-id 6.6.6.6

 log-adjacency-changes

 area 2 stub

 summary-address 199.1.0.0 255.255.0.0/ASBR路由上,汇总外部路由。

 redistribute rip subnets/rip路由重发布到OSPF

 network 6.6.6.0 0.0.0.255 area 2

 network 46.1.1.0 0.0.0.255 area 2

 network 68.1.1.0 0.0.0.255 area 3

 network 192.168.1.0 0.0.0.255 area 3

 default-information originate

!         

router rip

 version 2

 redistribute ospf 100 metric 5/OSPF路由重发布到RIP

 network 6.0.0.0

 network 67.0.0.0

 no auto-summary/关闭自动汇总

!         

no ip http server

no ip http secure-server

!              

logging alarm informational

R7主要配置:

interface Loopback7

 ip address 7.7.7.7 255.255.255.0

!         

interface Loopback10

 ip address 199.1.1.1 255.255.255.0

!         

interface Loopback20

 ip address 199.1.2.1 255.255.255.0

!         

interface Loopback30

 ip address 199.1.3.1 255.255.255.0

!         

interface FastEthernet0/0

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface FastEthernet0/1

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface Serial1/0

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/1

 ip address 67.1.1.7 255.255.255.0

 serial restart-delay 0

!         

interface Serial1/2

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/3

 no ip address

 shutdown 

 serial restart-delay 0

!         

router rip/启用RIP 路由协议

 version 2

 network 7.0.0.0

 network 67.0.0.0

 network 199.1.1.0

 network 199.1.2.0

 network 199.1.3.0

 no auto-summary

!         

no ip http server

no ip http secure-server

!    

logging alarm informational

R8主要配置:

interface Loopback8

 ip address 8.8.8.8 255.255.255.0

!         

interface FastEthernet0/0

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface FastEthernet0/1

 no ip address

 shutdown 

 duplex auto

 speed auto

!         

interface Serial1/0

 no ip address

 encapsulation frame-relay

 serial restart-delay 0

 no arp frame-relay

 no frame-relay inverse-arp

!         

interface Serial1/0.1 point-to-point

 ip address 68.1.1.8 255.255.255.0

 frame-relay interface-dlci 806   

!         

interface Serial1/1

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/2

 no ip address

 shutdown 

 serial restart-delay 0

!         

interface Serial1/3

 no ip address

 shutdown 

 serial restart-delay 0

!         

router ospf 100

 router-id 8.8.8.8

 log-adjacency-changes

 network 8.8.8.0 0.0.0.255 area 3

 network 68.1.1.0 0.0.0.255 area 3

!         

no ip http server

no ip http secure-server

!  

logging alarm informational

R9主要配置:

interface Serial1/0

 no ip address

 encapsulation frame-relay/接口封装类型帧中继

 no ip route-cache

 serial restart-delay 0

 frame-relay lmi-type cisco/帧中继信令管理类型为Cisco

 frame-relay intf-type dce/帧中继设置为dce

 frame-relay route 405 interface Serial1/1 504/设置帧中继pvc链路dlci号路由映射,将虚拟链路405进来的数据从接口s1/1虚拟链路504转发出去,其他接口配置原理同此。

 frame-relay route 406 interface Serial1/2 604

!         

interface Serial1/1

 no ip address

 encapsulation frame-relay

 no ip route-cache

 serial restart-delay 0

 frame-relay lmi-type cisco

 frame-relay intf-type dce

 frame-relay route 504 interface Serial1/0 405

!         

interface Serial1/2

 no ip address

 encapsulation frame-relay

 no ip route-cache

 serial restart-delay 0

 frame-relay lmi-type cisco

 frame-relay intf-type dce

 frame-relay route 604 interface Serial1/0 406

 frame-relay route 608 interface Serial1/3 806

!         

interface Serial1/3

 no ip address

 encapsulation frame-relay

 no ip route-cache

 serial restart-delay 0

 frame-relay lmi-type cisco

 frame-relay intf-type dce

 frame-relay route 806 interface Serial1/2 608

!         

no ip http server

no ip http secure-server

!       

logging alarm informational

五.实验结果及问题分析

 R1路由表

bubuko.com,布布扣 

 R2路由表

bubuko.com,布布扣 

 R3路由表

bubuko.com,布布扣 

 R4路由表

bubuko.com,布布扣 

 R5路由表

bubuko.com,布布扣 

 R6路由表

bubuko.com,布布扣 

 R7路由表

bubuko.com,布布扣 

 R8路由表

bubuko.com,布布扣 

全网可达

bubuko.com,布布扣 

结论:

stub区域,virtual-link虚拟链路不能启用,需要通过tunnel隧道实现OSPF区域的规则区域连接骨干区域。

在配置OSPF的单播邻居时,接口需要为point-to-multi网络类型或者为NBMA网络类型。


本文出自 “network” 博客,请务必保留此出处http://zznetwork.blog.51cto.com/9398550/1555172

OSPF汇总实验

标签:ospf汇总实验路由表   帧中继   流量   认证   

原文地址:http://zznetwork.blog.51cto.com/9398550/1555172

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!