龙空技术网

纯干货!ospf v3懂吗?不懂没关系,收下这份配置,网工点赞收藏

IELAB网络实验室 223

前言:

今天你们对“ospf spf算法”都比较讲究,咱们都需要分析一些“ospf spf算法”的相关内容。那么小编在网上搜集了一些对于“ospf spf算法””的相关文章,希望你们能喜欢,大家一起来学习一下吧!

企业基础架构EI CCIE 必考的OSPF V3协议详解和配置 关注收藏

OSPFv3是在RFC2740规定。之间存在着对RIPv2和RIPng的OSPFv3的关系,以OSPFv2的一些高层次的相似性。最重要的是,OSPFv3的使用与OSPFv2the SPF算法,泛洪,DR选举,地区等,同样的基本机制。常量和如定时器和度量变量也一样。

另一种是相似的RIPng对RIPv2的关系是,OSPFv3是不与OSPFv2的向后兼容。因此,如果你想使用OSPF路由IPv4和IPv6,则必须同时运行OSPFv2的和OSPFv3的。

与OSPF v2比较

除了在LSA的变化,同时也对OSPF程序进行一些更改。下面的这些变化是最重要的:

1、你能够实时查看每个链路协议的处理,单个链接接口可以同时具有多个IPv6地址。

事实上,一个链接可以属于多个子网,两个连接到同一链接,但属于不同的IPv6子网的接口仍然可以沟通。 OSPFv3的改变“子网”的OSPFv2的语言“链接”,并允许在同一个链接,但属于不同的IPv6子网的两个area之间的数据包交换。

2、OSPFv3的路由器和网络LSA不使用IPv4地址。但是router的32位的rotuer-id仍然使用ipv4地址,可是LSA ID是使用IPv6地址工作。允许OSPFv3的网络覆盖在现有OSPFv2的网络,协同工作,互不干扰。

3、邻居关系的建立过程中,OSPFv2的广播和NBMA链路上的邻居是由它们的接口地址标识,而在其他类型的链接是由RID邻居发现, OSPFv3的消除这个矛盾,让所有类型的所有邻居的联系是由RID标识。

OSPFv2的数据包有一个链路本地范围,他们没有任何路由器转发。 OSPFv3的使用路由器的链路本地IPv6地址(这些地址总是以FF80开头)作为源地址,并作为下一跳地址。

4、OSPF的特定的身份验证被IPv6拆除,使用认证扩展头,一个标准的认证过程。

正因为如此,OSPFv3的已经没有了自己的身份验证数据包,它只是使用IPv6认证。

配置案例:

一、基础配置:

R1配置:

R1(config)#line console 0

R1(config-line)#exec-timeout 0 0

R1(config-line)#logging synchronous

R1(config-line)#exit

R1(config)#no ip domain-lookup

R1(config)#interface lo0

R1(config-if)#ipv6 address 2001::1/128

R1(config-if)#no shutdown

R1(config-if)#exit

R1(config)#interface f0/0

R1(config-if)#ipv6 address 2012::1/64

R1(config-if)#no shutdown

R1(config-if)#exit

R2配置:

R2(config)#line console 0

R2(config-line)#exec-timeout 0 0

R2(config-line)#logging synchronous

R2(config-line)#exit

R2(config)#no ip domain-lookup

R2(config)#interface lo0

R2(config-if)#ipv6 address 2002::2/128

R2(config-if)#no shutdown

R2(config-if)#exit

R2(config)#interface f0/0

R2(config-if)#ipv6 address 2012::2/64

R2(config-if)#no shutdown

R2(config-if)#exit

R2(config)#interface f0/1

R2(config-if)#ipv6 address 2020::2/64

R2(config-if)#no shutdown

R2(config-if)#exit

R3配置:

R3#config terminal

R3(config)#line console 0

R3(config-line)#exec-timeout 0 0

R3(config-line)#logging synchronous

R3(config-line)#exit

R3(config)#no ip domain-lookup

R3(config)#interface lo0

R3(config-if)#ipv6 address 2003::3/128

R3(config-if)#no shutdown

R3(config-if)#exit

R3(config)#interface f0/1

R3(config-if)#ipv6 address 2020::3/64

R3(config-if)#no shutdown

R3(config-if)#exit

R4配置:

R4(config)#line console 0

R4(config-line)#exec-timeout 0 0

R4(config-line)#logging synchronous

R4(config-line)#exit

R4(config)#no ip domain-lookup

R4(config)#interface lo0

R4(config-if)#ipv6 address 2004::4/128

R4(config-if)#no shutdown

R4(config-if)#exit

R4(config)#interface f0/1

R4(config-if)#ipv6 address 2020::4/64

R4(config-if)#no shutdown

R4(config-if)#exit

二、OSPFv3配置:

R1配置:

R1(config)#ipv6 unicast-routing

R1(config)#router ospfv3 1

R1(config-router)#router-id 1.1.1.1

R1(config-router)#exit

R1(config)#interface lo0

R1(config-if)#ospfv3 1 ipv6 area 0

R1(config-if)#exit

R1(config)#interface f0/0

R1(config-if)#ospfv3 1 ipv6 area 0

R1(config-if)#exit

R2配置:

R2(config)#ipv6 unicast-routing

R2(config)#router ospfv3 1

R2(config-router)#router-id 2.2.2.2

R2(config)#interface lo0

R2(config-if)#ospfv3 1 ipv6 area 0

R2(config-if)#exit

R2(config)#interface f0/0

R2(config-if)#ospfv3 1 ipv6 area 0

R2(config-if)#exit

R2(config)#interface f0/1

R2(config-if)#ospfv3 1 ipv6 area 0

R2(config-if)#exit

R2(config)#

R2(config)#

R3配置:

R3(config)#router ospfv3 1

R3(config-router)#router-id 3.3.3.3

R3(config-router)#address-family ipv6 unicast

R3(config-router-af)#exit-address-family

R3(config-router)#exit

R3(config)#interface lo0

R3(config-if)#ospfv3 1 ipv6 area 0

R3(config-if)#exit

R3(config)#interface f0/1

R3(config-if)#ospfv3 1 ipv6 area 0

R3(config-if)#exit

R4配置:

R4(config)#ipv6 unicast-routing

R4(config)#router ospfv3 1

R4(config-router)#router-id 4.4.4.4

R4(config-router)#address-family ipv6 unicast

R4(config-router-af)#exit-address-family

R4(config-router)#exit

R4(config)#interface lo0

R4(config-if)#ospfv3 1 ipv6 area 0

R4(config-if)#exit

R4(config)#interface f0/1

R4(config-if)#ospfv3 1 ipv6 area 0

三、检查:

R1配置:

R1#sho ipv6 ospf neighbor

OSPFv3 Router with ID (1.1.1.1) (Process ID 1)

Neighbor ID Pri State Dead Time Interface ID Interface

2.2.2.2 1 FULL/BDR 00:00:34 3 FastEthernet0/0

R1#

R1#sho ipv6 ospf database

OSPFv3 Router with ID (1.1.1.1) (Process ID 1)

Router Link States (Area 0)

ADV Router Age Seq# Fragment ID Link count Bits

1.1.1.1 969 0x80000003 0 1 None

2.2.2.2 1342 0x80000003 0 2 None

3.3.3.3 1342 0x80000002 0 1 None

4.4.4.4 1298 0x80000002 0 1 None

Net Link States (Area 0)

ADV Router Age Seq# Link ID Rtr count

1.1.1.1 1405 0x80000001 3 2

2.2.2.2 1297 0x80000002 4 3

Link (Type-8) Link States (Area 0)

ADV Router Age Seq# Link ID Interface

1.1.1.1 969 0x80000002 3 Fa0/0

2.2.2.2 1407 0x80000001 3 Fa0/0

Intra Area Prefix Link States (Area 0)

ADV Router Age Seq# Link ID Ref-lstype Ref-LSID

1.1.1.1 969 0x80000004 0 0x2001 0

1.1.1.1 1405 0x80000001 3072 0x2002 3

2.2.2.2 1342 0x80000005 0 0x2001 0

2.2.2.2 1342 0x80000001 4096 0x2002 4

3.3.3.3 1338 0x80000003 0 0x2001 0

4.4.4.4 1294 0x80000003 0 0x2001 0

R1#

ospf v3你现在了解了吗? IELAB网络实验室原创技术文档分享,转载需注明出处!

6.18福利!思科新版综合CCNA、华为HCIADATACOMV1.0

学习服务期 6个月 随时进班学习 直播+录播课程 初级网络工程师零基础入门必学 后台了解

学网络,就在IE-LAB网络实验室

标签: #ospf spf算法