Page MenuHomeVyOS Platform

OSPF: move "interface ip ospf" configuration to "protocols ospf interface" tree
Closed, ResolvedPublic

Description

For easier maintenance and operability move the interface specific protocol setting of OSPF to the OSPF protocol section.

This means to migrate:

ethernet eth0 {
    vif 202 {
        ip {
            ospf {
                authentication {
                    md5 {
                        key-id 10 {
                            md5-key vyosvyos
                        }
                    }
                }
                dead-interval 40
                hello-interval 10
                priority 1
                retransmit-interval 5
                transmit-delay 1
            }
        }
    }
}

to

protocols {
    ospf {
        interface eth0.201 {
            authentication {
                md5 {
                    key-id 10 {
                        md5-key vyosvyos
                    }
                }
            }
            dead-interval 40
            hello-interval 10
            priority 1
            retransmit-interval 5
            transmit-delay 1
        }
}

Details

Difficulty level
Unknown (require assessment)
Version
1.4-rolling
Why the issue appeared?
Will be filled on close
Is it a breaking change?
Perfectly compatible

Event Timeline

c-po claimed this task.
c-po triaged this task as Wishlist priority.
c-po created this task.
c-po created this object in space S1 VyOS Public.
c-po changed Version from - to 1.4-rolling.
c-po changed Is it a breaking change? from Unspecified (possibly destroys the router) to Perfectly compatible.