首页 > 其他分享 >OSPF(Open Shortest Path First)vlink-peer

OSPF(Open Shortest Path First)vlink-peer

时间:2023-10-22 19:04:24浏览次数:35  
标签:1.1 area ospfv3 ipv6 peer Path vlink OSPF

OSPF(Open Shortest Path First)vlink-peer_唯一标识

配置流程

1)系统视图下启用ipv6

ipv6

2)创建ospfv3进程

ospfv3 100 //进程为100

router-id 1.1.1.1 //唯一标识为1.1.1.1

3)配置端口

#

interface GigabitEthernet0/0/1

ipv6 enable  

ipv6 address 2023:23::2/64  

ipv6 address auto link-local

ospfv3 100 area 0.0.0.1 //将接口划分为area 1

#

4)vlink-peer配置 //一类和二类只关心拓扑结构

ospfv3 100

router-id 2.2.2.2

area 0.0.0.1

 vlink-peer 4.4.4.4

特别注意

vlink-peer各个接口必须有global地址

OSPF(Open Shortest Path First)vlink-peer_唯一标识_02

标签:1.1,area,ospfv3,ipv6,peer,Path,vlink,OSPF
From: https://blog.51cto.com/u_13560030/7978054

相关文章

  • OSPF高级特性
    前言OSPF和IS-IS都是基于链路状态的内部网关路由协议,运行这两种协议的路由器通过同步LSDB,采用SPF算法计算最优路由。当网络拓扑发生变化时,OSPF和IS-IS支持多种快速收敛和保护机制,能够降低网络故障导致的流量丢失。,为了实现对路由表规模的控制,OSPF和IS-IS支持路由选路及路由信息的控......
  • OSPFV3
    配置流程1)启用ipv6系统视图模式:ipv62)启用端口link-localinterfaceg0/0/0ipv6enableipv6addressautolink-local3)创建ospfv3进程ospfv3100//100为进程号router-id1.1.1.1//唯一标识,不能有重复area0//进程规划为area0中4)将端口分配给area0interfaceLoopBack0ipv6enabl......
  • 多路径multipath共享磁盘配置
    1. 配置共享磁盘1.1. 主机关机的情况下,添加4块硬盘,每块磁盘设置如下  1.2. 另外一台主机添加上面已经存在的磁盘,同样设置 1.3. 修改两台虚拟机的配置文件(.vmx)disk.locking="FALSE"disk.EnableUUID="TRUE"scsi1:1.SharedBus="Virtual"......
  • 内核文档翻译(chatgpt) —— Pathname lookup (路径名查找)
    原文:https://www.kernel.org/doc/html/latest/filesystems/path-lookup.html内核中文件系统相关的文档汇总:FilesystemsintheLinuxkernelThiswrite-upisbasedonthreearticlespublishedatlwn.net:PathnamelookupinLinuxRCU-walk:fasterpathnamelookupinLi......
  • OSPF组播地址理解
    OSPF(OpenShortestPathFirst)使用组播地址来进行邻居发现和LSA(LinkStateAdvertisement)更新的通信。OSPF的组播地址是224.0.0.5。以下是对OSPF组播地址的详细说明及其工作过程:组播地址:IPv4组播地址用于将数据报发送到一个组中的所有成员。OSPF使用组播地址224.0.0.5作为邻居发现......
  • 动态加载目录进classpath
    参考文档:https://www.codelast.com/%E5%8E%9F%E5%88%9B-java%E5%8A%A8%E6%80%81%E6%B7%BB%E5%8A%A0%E4%B8%80%E4%B8%AA%E7%9B%AE%E5%BD%95%E5%88%B0classpath%E4%B8%AD/ publicstaticloadFoldertoClasspath(){FileprogramRootDir=newFile("./");URL......
  • Uncaught TypeError: "element" is read-only
    UncaughtTypeError:"element"isread-only错误表明你尝试修改一个JavaScript变量或常量的值,但该变量或常量是只读的,不能被修改。通常,像const声明的变量是只读的,不允许重新分配。在你的代码中,如果你尝试修改一个const声明的变量element,那么就会触发这个错误。要解决这个......
  • 利用 CSS 的 clip-path 属性快速画三角形、气泡框
    clip-path 结合polygon函数,可以快速切出一个三角形、气泡框。a.三角形有三个顶点,因此 polygon 需要传三个参数,每个参数是顶点的x和y轴位置百分比:#triangle-1{-webkit-clip-path:polygon(50%0,100%100%,0100%);clip-path:polygon(50%0,100%100%,......
  • xxl-job执行java任务报错: unable to find valid certification path to requested tar
    1、错误:xxl-job调用https接口显示证书验证失败[错误信息:sun.security.validator.ValidatorException:PKIXpathbuildingfailed:sun.security.provider.certpath.SunCertPathBuilderException:unabletofindvalidcertificationpathtorequestedtarget]2023-10-2015......
  • TypeError: Object of type 'Animal' is not JSON serializable/ 自定义对象 转json串
     importjsonclassAnimal(object):def__init__(self):self.name='tom'def__repr__(self):returnf'mynameis{self.name}&ilikeapple'd1={'county':'china','name':Ani......