I am following this document and using QFX5100 and EX4200 as per instruction:
https://kb.juniper.net/InfoCenter/index?page=content&id=KB30315&cat=QFX_SERIES&actp=LIST
and as step through this I am not clear exactly how to accomplish the extensibility promised with VXLAN. It seems that I am stuck with a 1 to 1 mapping of VLAN-ID with VNI.
For instance:
vlan100 {
vlan-id 100;
vxlan {
vni 100;
multicast-group 224.1.1.1;
encapsulate-inner-vlan;
unreachable-vtep-aging-timer 600;
}
}
vlan200 {
vlan-id 200;
vxlan {
vni 200;
multicast-group 224.1.1.1;
encapsulate-inner-vlan;
unreachable-vtep-aging-timer 600;
Syntactically, how exactly do I extend out the 16 million VXLANs that are supposed to be available. It seems I am not able to map more than 1 VNI to one standard range VLAN-ID, which would seemingly limit me to 4094 as always. In the manual configuration of this using multicast is there a limit to the amount of VNI's i can actually configure? I'm sure I am missing something obvious, and any help would be greatly appreciated.