Cisco Module 2 Chapter 1 Summary
Cisco Module 2 Chapter 1 Summary
Cisco Module 2 Chapter 1 Summary
Module 2
-Chapter 1Introduction to Switch Networks
Converged Networks
Our digital world is changing. The ability to access the Internet and the corporate
network is no longer confined to physical offices, geographical locations, or time
zones.
Networks need to be more secure, reliable, and highly available.
A converged network with collaboration support may include features such as the
following:
Call control
Voicemail
Mobility
Automated attendant
One of the more recent developments in network design is illustrated by the Cisco
Borderless Network architecture; which is a network architecture that combines
several innovations and design considerations to allow organizations to connect
anyone, anywhere, anytime, and on any device securely, reliably, and seamlessly.
Borderless switched network design guidelines are built upon the following
principles:
Hierarchical
Modularity
Resiliency
Flexibility
The three critical layers within these designs are the access, distribution, and core
layers
1. Access Layer; represents the network edge, where traffic enters or exits the
campus network.
Frame Forwarding
The fundamental concept of switching refers to a device making a decision based
on two criteria:
-
Ingress port
Destination address
The decision on how a switch forwards traffic is made in relation to the flow of that
traffic. The term ingress is used to describe where a frame enters the device on a
port. The term egress is used to describe frames leaving the device from a
particular port.
When a switch makes a decision, it is based on the ingress port and the destination
address of the message.
As the switch learns the relationship of ports to devices, it builds a table called a
MAC address, or content addressable memory (CAM) table. CAM is a special type of
memory used in high-speed searching applications.
A switch builds its MAC address table by recording the MAC address of each device
connected to each of its ports. The switch uses the information in the MAC address
table to send frames destined for a specific device out the port which has been
assigned to that device.
A switch populates the MAC address table based on source MAC addresses. When a
switch receives an incoming frame with a destination MAC address that is not found
in the MAC address table, the switch forwards the frame out of all ports (flooding)
except for the ingress port of the frame. When the destination device responds, the
switch adds the source MAC address of the frame and the port where the frame was
received to the MAC address table. In networks with multiple interconnected
switches, the MAC address table contains multiple MAC addresses for a single port
connected to the other switches.
These LAN switches were able to move the Layer 2 forwarding decisions from
software to application-specific-integrated circuits (ASICs). ASICs reduce the packethandling time within the device, and allow the device to handle an increased
number of ports without degrading performance. This method of forwarding data
frames at Layer 2 was referred to as store-and-forward switching. This term different
from cut-through switching.
Store-and-forward
Store-and-forward switching has two primary characteristics that distinguish it from
cut-through: error checking and automatic buffering.
I.
Error Checking
The switch compares the frame-check-sequence (FCS) value in the last field of the
datagram against its own FCS calculations. The FCS is an error checking process
that helps to ensure that the frame is free of physical and data-link errors. If the
frame is error-free, the switch forwards the frame. Otherwise the frame is dropped.
II.
Automatic Buffering
The ingress port buffering process used by store-and-forward switches provides the
flexibility to support any mix of Ethernet speeds. With any mismatch in speeds
between the ingress and egress ports, the switch stores the entire frame in a buffer,
computes the FCS check, forwards it to the egress port buffer and then sends it.
Store-and-forward switching is Ciscos primary LAN switching method.
Cut-through
Cut-through switch may forward invalid frames because no FCS check is performed.