openconfig / public

Repository for publishing OpenConfig models, documentation, and other material for the community.
Apache License 2.0
875 stars 643 forks source link

Missing vlan to vxlan vni mapping in the network-instance hierarchy #918

Open vsrx opened 11 months ago

vsrx commented 11 months ago

Looks like OC paths are missing for the vlan to vni (VXLAN network identifier) mapping within the EVPN routing instance. Below are the equivalent vendor config for Arista and Juniper.

Arista:

interface Vxlan1
   vxlan source-interface Loopback0
   vxlan udp-port 4789
   vxlan vlan 100 vni 100000
   vxlan vlan 200 vni 200000

https://www.arista.com/en/um-eos/eos-vxlan-commands#xx1152892

Juniper:

routing-instances {
    TEST_EVI {
        instance-type mac-vrf;
        vtep-source-interface lo0.0;
        service-type vlan-aware;
        vlans {
            VLAN_100 {
                description "TEST VLAN 1";
                vlan-id 100;
                vxlan {
                    vni 100000;
                }
            }
            VLAN_200 {
                description "TEST VLAN 2";
                vlan-id 200;
                vxlan {
                    vni 200000;
                }
            } 
        }
    }
}

https://www.juniper.net/documentation/us/en/software/junos/evpn-vxlan/topics/concept/overlapping-vlans.html

github-actions[bot] commented 1 month ago

This issue is stale because it has been open 180 days with no activity. If you wish to keep this issue active, please remove the stale label or add a comment, otherwise will be closed in 14 days.