Original Message:
Sent: 09-25-2025 16:42
From: JOHN WILLIAMSON
Subject: Removing an AE with CLI changes in a Mist template. Getting as commit error on some switches.
mist@VPNL-MDFS01> show configuration interfaces ae0 | display inheritance terse
aggregated-ether-options {
lacp {
active;
}
}
unit 0 {
family inet {
address 10.254.254.58/30;
}
}
------------------------------
JOHN WILLIAMSON
------------------------------
Original Message:
Sent: 09-25-2025 16:40
From: JOHN WILLIAMSON
Subject: Removing an AE with CLI changes in a Mist template. Getting as commit error on some switches.
mist@VPNL-MDFS01> show configuration interfaces ae1 | display inheritance terse
aggregated-ether-options {
lacp {
active;
}
}
unit 0 {
family inet {
address 10.254.253.102/29;
}
}
------------------------------
JOHN WILLIAMSON
Original Message:
Sent: 09-18-2025 13:36
From: JOHN WILLIAMSON
Subject: Removing an AE with CLI changes in a Mist template. Getting as commit error on some switches.
Thanks for your reply Patrik.
I'll look at what info I can get for you. It's been about 7 months since I was working on this task and since no users were effected by the config, I have let it remain until I had time to revisit it. Thanks for this reminder!
John
------------------------------
JOHN WILLIAMSON
Original Message:
Sent: 09-18-2025 11:28
From: Patrik Bok
Subject: Removing an AE with CLI changes in a Mist template. Getting as commit error on some switches.
John,
As you already notice, the error is specific to ae1, yet your config only show ae0 and therefore I can not judge or provide correct answer . But....
Mist like to use groups and interface-ranges to configure specific interfaces via inheritance method. To only way to see the entire configuration on device managed by mist, you MUST use display inheritance. Example
mist@ipv6-Access1> show configuration interfaces ge-0/0/0
mist@ipv6-Access1> show configuration interfaces ge-0/0/0 | display inheritance terse
mtu 9014; ## inherited from group 'vlan1033'
unit 0 { ## inherited from group 'vlan1033'
family ethernet-switching { ## inherited from group 'vlan1033'
vlan { ## inherited from group 'vlan1033'
members vlan1033; ## inherited from group 'vlan1033'
}
}
}
mist@ipv6-Access1> show configuration interfaces
interface-range vlan1033 {
member ge-0/0/0;
apply-groups vlan1033;
}
interface-range inet {
member ge-0/0/24;
apply-groups inet;
}
As you can see in this example, looking at interface ge-0/0/0 does not display all the information.
That is only one part of the puzzle. If the switch is actively managed by MIST, it will either overwrite your changes unless you make the change via additional-cli via switch-template or on device directly or you will get error that configuration can not be committed.
Could you please provide me with output of your interfaces configuration with "|display. inheritance terse"
------------------------------
Patrik Bok