mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-15 07:08:54 +00:00

Don't use 'interface WORD area A.B.C.D' for enabling OSPFv3 areas on interfaces and instead use the standardized 'ipv6 ospf6 area A.B.C.D'. Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
23 lines
402 B
Plaintext
23 lines
402 B
Plaintext
!
|
|
router ospf6
|
|
ospf6 router-id 10.0.255.3
|
|
redistribute kernel
|
|
redistribute connected
|
|
redistribute static
|
|
!
|
|
int r3-eth0
|
|
ipv6 ospf6 area 0.0.0.0
|
|
ipv6 ospf6 hello-interval 2
|
|
ipv6 ospf6 dead-interval 10
|
|
!
|
|
int r3-eth1
|
|
ipv6 ospf6 area 0.0.0.0
|
|
ipv6 ospf6 hello-interval 2
|
|
ipv6 ospf6 dead-interval 10
|
|
!
|
|
int r3-eth2
|
|
ipv6 ospf6 area 0.0.0.1
|
|
ipv6 ospf6 hello-interval 2
|
|
ipv6 ospf6 dead-interval 10
|
|
!
|