You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Olof!
I have a question about union wth leafref.
I have a structure in which I specify several types of interfaces - loopback and Ethernet.
While the network zone element is being filled, autoexpand does not work.
If I leave only one element without a union, then the autoexpand works without problems.
How to solve this problem?
grouping interfaces-with-subs
{
list interface {
key "name";
description
"interface name";
leaf name {
description "interface name";
type union {
type leafref {
path "../../../../interface/ethernet/name";
}
type leafref {
path "../../../../interface/loopback/name";
}
}
}
}
}
root@device/> set context 1 network-zone INSIDE interface ?
<name> interface name
root@device/> set context 1 network-zone INSIDE interface
The text was updated successfully, but these errors were encountered:
Hi Olof!
I have a question about union wth leafref.
I have a structure in which I specify several types of interfaces - loopback and Ethernet.
While the network zone element is being filled, autoexpand does not work.
If I leave only one element without a union, then the autoexpand works without problems.
How to solve this problem?
The text was updated successfully, but these errors were encountered: