Page MenuHomeVyOS Platform

ospf: adjust to new FRR 8 syntax where "no passive-interface " moved to interface section
Closed, ResolvedPublicFEATURE REQUEST

Description

FRR 7.5.1

interface eth0.202
 ip ospf authentication message-digest
 ip ospf message-digest-key 10 md5 vyosnet
!
router ospf
 ospf router-id 172.18.254.202
 log-adjacency-changes detail
 passive-interface default
 no passive-interface eth0.202
 network 172.18.202.0/24 area 0
 network 172.18.254.202/32 area 0
!

FRR 8

interface eth0.202
 ip ospf authentication message-digest
 ip ospf message-digest-key 10 md5 vyosnet
 no ip ospf passive
!
router ospf
 ospf router-id 172.18.254.202
 log-adjacency-changes detail
 passive-interface default
 network 172.18.202.0/24 area 0
 network 172.18.254.202/32 area 0
!

http://docs.frrouting.org/en/stable-8.0/ospfd.html?highlight=ip%20ospf%20passive#clicmd-ip-ospf-passive-A.B.C.D

Details

Difficulty level
Easy (less than an hour)
Version
-
Why the issue appeared?
Will be filled on close
Is it a breaking change?
Config syntax change (migratable)
Issue type
Unspecified (please specify)

Event Timeline

c-po updated the task description. (Show Details)

The old FRR command states:

This command is deprecated, because it is not VRF-aware.
Please, use "ip ospf passive" on an interface instead.
c-po claimed this task.
c-po triaged this task as Normal priority.
c-po changed Difficulty level from Unknown (require assessment) to Easy (less than an hour).
c-po set Issue type to Unspecified (please specify).