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

Version
1.4-rolling
Is it a breaking change?
Perfectly compatible

Event Timeline

c-po closed this task as Resolved.
c-po claimed this task.
c-po triaged this task as Wishlist priority.
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.