华为ospf和ospfv3双栈简单配置

R1

ipv6

ospfv3 1

router-id 1.1.1.1

interface GigabitEthernet0/0/0

ipv6 enable

ip address 10.0.12.1 255.255.255.0

ipv6 address auto link-local

ospfv3 1 area 0.0.0.0

interface GigabitEthernet0/0/1

ipv6 enable

ip address 192.168.1.254 255.255.255.0

ipv6 address 2001:DB8:2::1/64

ospfv3 1 area 0.0.0.0

ospf 1

area 0.0.0.0

network 10.0.12.1 0.0.0.0

network 192.168.1.254 0.0.0.0

R2

ipv6

ospfv3 1

router-id 2.2.2.2

interface GigabitEthernet0/0/0

ipv6 enable

ip address 10.0.12.2 255.255.255.0

ipv6 address auto link-local

ospfv3 1 area 0.0.0.0

interface GigabitEthernet0/0/1

ipv6 enable

ip address 192.168.3.254 255.255.255.0

ipv6 address 2001:DB8:3::1/64

ospfv3 1 area 0.0.0.0

ospf 1

area 0.0.0.0

network 10.0.12.2 0.0.0.0

network 192.168.3.254 0.0.0.0

相关推荐
未济3 天前
linux 配置环境变量
linux
傲世仙尊3 天前
目录即文件-Ext文件系统收尾篇
linux·c语言
虎头金猫3 天前
4K 视频总卡在公网带宽?用 N1 + OpenList 把网盘播放链路重新理顺
运维·服务器·网络·python·容器·beautifulsoup·pandas
youyin3 天前
HarmonyOS ArkUI 组件与自定义组件零基础:从搭页面到组件化开发
华为·harmonyos
_艾伦 耶格尔.3 天前
进程间通信
linux
Liuqy-054 天前
Linux IO编程——静态库、动态库
linux
彧azz4 天前
Linux 环境下 Redis 学习总结:数据类型、持久化、锁、事务、主从与缓存问题
linux·redis·笔记·学习·面试
-梅4 天前
linux(8) 软硬链接
linux·运维·服务器
Wang's Blog4 天前
Java 项目实战: 外卖平台-文件下载与ServletOutputStream回写浏览器
服务器·项目开发
AIgorithmGEEK4 天前
[Linux]线程三部曲(上):一个执行流的诞生——从操作系统一路拆到 pthread_create
linux·线程·pid