HomeVyOS Platform

interface: T5465: adjust-mss: config migration fails if applied to a VLAN or Q…

Description

interface: T5465: adjust-mss: config migration fails if applied to a VLAN or Q-in-Q interface

When migration from 1.3 to 1.4 and a user hat the following configured:

options {

interface eth0.10{
    adjust-mss 1452
    adjust-mss6 1432
}

}

The configuration was wrongly migrated to:

interfaces {

ethernet eth0.10 {
    ipv6 {
        adjust-mss "1432"
    }
    ip {
        adjust-mss "1452"
    }
}

Instead of

interfaces {

ethernet eth0 {
    vif 10 {
        ipv6 {
            adjust-mss "1432"
        }
        ip {
            adjust-mss "1452"
        }
    }
}

Details

Provenance
c-poAuthored on Aug 11 2023, 7:24 PM
Parents
rVYOSONEX11f46a2b4f85: T5440: Restore pre/postconfig scripts if user deleted them
Branches
Loading...
Tags
Loading...