Skip to main content

Basic Network Fundamental - Multilayer or Layer 3 Switch and Usage of Layer 3 switch instead of Router, Switch Virtual Interfaces

1) What is the Multilayer or Layer 3 switch?



• A multilayer switch is capable of both Switching and Routing. It is Layer 3 aware.

• A regular layer 2 switch is not layer 3 aware, it doesn’t think at all about IP addresses, it only cares about Layer 2 information like MAC addresses.

• You can assign IP addresses to its interfaces, like a router. And you can configure routed ports which function like an interface on a router.

• You can create virtual interfaces for the each VLAN and assign IP addresses to those interfaces.


2) Why we use Multilayer or Layer 3 switch instead of router?



• It can be used for inter-VLAN routing.

• Inter-VLAN routing, it is using one connection for each VLAN between the router and switch.

• But if you have many VLANs you probably won’t’ have enough interfaces on your router.

• The router on a stick, which uses a single trunk connection which carries traffic from all VLANs between the switch and router for inter-VLAN routing.

• This is efficient in terms of the number of interfaces, just one, but in a busy network all the traffic going to the router and back to the switch can cause network congestion.

• So, in large networks, a multilayer switch is the preferred method of inter-VLAN routing.


3) What is Router on a Stick (ROAS)?


• ROAS is used to route between multiple VLANs using a single interface on the router and switch.

• The switch interface is configured as a regular trunk. The router interface is configured using subinterfaces.

• You configure the VLAN tag and IP address on each subinterface.


4) What is the Switch Virtual Interfaces (SVI)?


• SVIs (or Switch Virtual Interfaces) are the virtual interfaces you can assign IP addresses to in a multilayer switch.

• Configure each PC to use the SVI (not the router) as their gateway address. When using router on a stick, the router was used as the PC’s gateway. This time we will use the switch’s SVIs instead.

• To send traffic to different subnet/VLANs, the PCs will send traffic to the switch and the switch will route the traffic.

Comments

Popular posts from this blog

Basic Network Fundamental - Network Switch Working principle, Half Duplex & Full Duplex, Difference between Switch vs Router

1 ) How Network Switch Work • When a device send frame to another device via switch, switch will receive the frame and check the source mac address availability in MAC Address table. • If it’s not available, then it will add the source MAC address into switch MAC address table. • Then switch check the destination device MAC address in the MAC address table, if its not available then the switch will flood the frame into all interfaces except source device connected interface. It’s called unknown unicast frame. • Once Frame reach the destination device, then destination device will reply to the switch. • Then switch will add the destination device MAC address into switch MAC Address table. • Then switch will forward the reply frame into source device interface, it’s called known unicast frame. 2) Different between Switch and Router • Switches keep a MAC address table with their known destination MAC addresses and routers keep a routing table with their known destination networks. •...

Basic Network Fundamental - VLAN, Broadcast Domain, Benefits of using the VLAN, Inter Vlan Routing Detail

1) What is the VLAN? • VLAN is partitioned and isolated broadcast domain into separate LAN network at Layer 2 (Data Link Layer). • The switch will consider each VLAN as a separate LAN and it will not forward traffic between VLAN’s. 2) What is the Broadcast Domain? • LAN is a group of devices (PCs, Servers, routers, switches, etc.) in a single location (home, office, etc.) • A LAN is a single broadcast domain, including all devices in that broadcast domain. 3) What is the benefit to using the VLAN? • When it comes to Performance - lots of unnecessary broadcast traffic can reduce network performance. • Whether it’s a broadcast from one end host or a switch that doesn’t know how to reach the destination MAC address, so it floods the frame, we should minimize unnecessary traffic in our network. • When it comes to Security – Even within the same office, you want to limit who has access to what. You can apply security policies on a router/firewall. • Because this is one LAN, PCs can reach ea...