The 9000v images are one of the few that you can download without a contract.
https://software.cisco.com/download/home/286312239/type/282088129/release/10.4(5)?i=!pp
The 9000v images are one of the few that you can download without a contract.
https://software.cisco.com/download/home/286312239/type/282088129/release/10.4(5)?i=!pp
Hi,
For L3 VNI or L2 VNI, if a host in VLAN 10 needs to connect to an external network or a host in a different location, such as a branch, what would the topology and traffic flow look like?
Should we create an interface VLAN on each switch and enable OSPF?
How would the Leafs communicate with the border leaf or spine in this case?
Hello Diyaa
If a host on VLAN 10 needs to connect to an external network or a host in a different location, you would simply have to route traffic to the subnet that you want to route traffic to. In the example in the lesson, S1 in VLAN 10 is trying to reach a subnet external to its own, (i.e. VLAN 20 where S2 is). The traffic flow would look the same as what is in the lesson, but instead of VLAN 20, you would have what is known as a border leaf switch. This is a VXLAN switch that acts as a gateway between the VXLAN overlay and external networks. The logic is the same as in the lesson, but instead of S2, you would have some network device that connects to a network outside of the VXLAN domain. Does that make sense?
I hope this has been helpful!
Laz
Thanks for your reply.
Just to clarify, letâs say Leaf-1 acts as a Border Leaf switch and has a link to Router-A. Router-A has a default route, and we need to redistribute this route to Leaf-1 and Leaf-2.
Should Router-A be part of VRF CUSTOMER, or does it have to be part of the default VRF?
Hello Diyaa
Yes, exactly, thatâs the idea. You must somehow advertise that route into the fabric so you can reach destinations outside of your network.
That depends upon the intended scope of the default route and the design requirements. If the default route is only for the specific tenant that is served by that VRF, then it can be in the same VRF. However, if its purpose is to provide connectivity to multiple VRFs, then it would be preferable to put it in the global routing table (which is the default VRF).
I hope this has been helpful!
Laz
Hi,
Can you please explain the packet flow of inter-vlan / inter-subnet host communication in flood and learn mechanism?
Hello Rahul
Letâs start off with a high level overview of âinter-subnetâ communication in a flood-and-learnâbased VXLAN environment. Although modern VXLAN deployments typically use MP-BGP EVPN for more efficient control-plane learning, understanding the original âflood and learnâ approach helps clarify the core forwarding concepts.
Inter-subnet routing in VXLAN involves two big steps:
Letâs dig deeper and take a look at some more detailed steps of this process:
Letâs assume we have two hosts, Host A (IP in VLAN 10) and Host B (IP in VLAN 20). VLAN 10 and VLAN 20 each map to different VXLAN Layer 2 VNIs, and there is typically one L3 VNI (VRF) for routing.
ARP Resolution (Initial Steps)
Routing at the Source VTEP
Traversal in the Underlay
Decapsulation and Delivery at the Remote VTEP
The VTEP that owns VLAN 20 for Host B receives the encapsulated packet, decapsulates it, and performs the routing/forwarding decision for VLAN 20 locally. It sees that Host Bâs MAC/IP is local, does an ARP or MAC lookup, and forwards the packet out of VLAN 20.
Host B receives the traffic.
Response Traffic from Host B to Host A
I hope this has been helpful!
Laz