VLANs

VLANs, or Virtual Local Area Networks, are a fundamental concept in networking that allow you to segment a physical network into multiple logical networks. This segmentation provides various benefits such as improved security, better network performance, and simplified management.

Here's a breakdown of some key points about VLANs:

Overall, VLANs are a powerful tool for network administrators to design efficient, secure, and scalable networks. They are widely used in enterprise environments to improve network performance, security, and management.

L2 redundancy and load balancing

Since spanning tree protocol ensures a loop-free topology is necessary to think about a way that allows us to create redundancy between interconnected L2 devices. To accomplish this goal was developed EtherChannel, also known as link aggregation or port channel, which is a method used in networking to bundle multiple physical Ethernet links into a single logical link. This aggregated link increases bandwidth, enhances redundancy, and enables load balancing. It's achieved through protocols like LACP (Link Aggregation Control Protocol) for dynamic configuration or statically by manually grouping links, and PAgP (Port Aggregation Protocol) which is specific to Cisco networking equipment and is used primarily in Cisco environments. It's not standardized like LACP, which is supported by a broader range of networking vendors. EtherChannel is widely used in enterprise networks, data centers, and campus environments to improve network performance, resilience, and scalability.

Inter VLAN Routing

Once we know what VLANs and Etherchannel are and what they are used for, we need to interconnect VLANs to provide access between them. Since they belong to different subnets, we will need an L3 device to facilitate packet routing.

There are three known ways to do this, which will be explained in depth in another project focused solely on Inter VLAN Routing:

On this occasion, we implemented Router on a Stick, a networking setup used for inter-VLAN routing when only one physical connection exists between a router and a switch. In this configuration, the router interface connected to the switch acts as a gateway for multiple VLANs. Traffic from different VLANs is tagged and sent through this single router interface, where it's routed between VLANs. This setup simplifies network design and reduces hardware costs but may introduce performance limitations in high-traffic environments.