SlideShare a Scribd company logo
1 of 21
Cisco Public
SWITCH v7 Chapter 1
1© 2007 – 2016, Cisco Systems, Inc. All rights reserved.
Chapter 1:
Fundamentals Review
CCNP SWITCH: Implementing Cisco IP Switched Networks
Chapter 1
2© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Chapter 1 Objectives
This chapter covers the following basic switching topics as a review
to CCNA and serves as a teaser for topics covered later in chapter:
 Hubs and switches
 Bridges and switches
 Switches of today
 Broadcast domains
 MAC addresses
 The basic Ethernet frame format
 Basic switching function
 VLANs
 The Spanning Tree Protocol
 Trunking
 Port channels
 Multilayer switching (MLS)
Chapter 1
3© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Fundamentals
Review
Chapter 1
4© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Hubs and Switches
 Hubs are archaic, and the terminology should be avoided. Even
the simplest multiport Ethernet devices for the home are
switches.
 In review, hubs died off as a product because they are shared-
bandwidth devices.
 Switches introduced dedicated bandwidth. A hub allows multiple
devices to be connected to the same network segment. The
devices on that segment share the bandwidth with each other.
 A switch allows multiple devices to be connected to the same
network, just like a hub does, but this is where the similarity ends.
 A switch allows each connected device to have dedicated
bandwidth instead of shared bandwidth.
 Switches also support additional capabilities beyond what hubs
support.
Chapter 1
5© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Bridges and Switches
 A basic switch is considered a Layer 2 device. When we use the
word layer , we are referring to the seven-layer OSI reference
model.
 A switch does not just pass electrical signals along, like a hub
does; instead, it assembles the signals into a frame (Layer 2),
and then decides what to do with the frame.
 A switch determines what to do with a frame by borrowing an
algorithm from a previously common networking device: a
transparent bridge.
 Logically, a switch acts just like a transparent bridge would, but it
can handle frames much faster than a transparent bridge could
 Once a switch decides where the frame should be sent, it passes
the frame out the appropriate port (or ports). You can think of a
switch as a device creating instantaneous connections between
various ports, on a frame-by-frame basis.
Chapter 1
6© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Switches of Today
Today’s switches have evolved beyond just switching frames. Most modern switches
can actually route traffic. In addition, switches can prioritize traffic, support no
downtime through redundancy, and provide convergence services around IP telephony
and wireless networks.
 Application intelligence
• This helps networks recognize many types of applications and secure and prioritize those
applications to provide the best user experience.
 Unified network services
• Combining the best elements of wireless and wired networking allows you to consistently connect to
any resource or person with any device. 10 Gigabit Ethernet technology and Power over Ethernet
(PoE) technology support new applications and devices.
 Nonstop communications
• Features such as redundant hardware, and nonstop forwarding and stateful switchover (NSF/SSO)
technology support more-reliable connections.
 Integrated security
• LAN switches provide the first line of defense against internal network attacks and prevent
unauthorized intrusion.
 Operational manageability
• To more easily manage the network, IT staff must be able to remotely configure and monitor network
devices from a central location.
Chapter 1
7© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Broadcast Domains
 A broadcast domain is a set of network devices that receive
broadcast frames originating from any device within the
group.
 Routers typically bound broadcast domains because routers
do not forward broadcast frames.
 VLANs are an example of broadcast domain.
 Broadcast domains are generally limited to a specific Layer
2 segment that contains a single IP subnet.
Chapter 1
8© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
MAC Addresses
 MAC addresses are standardized data link layer addresses
that are required for every port or device that connects to a
LAN.
 Other devices in the network use these addresses to locate
specific ports in the network and to create and update
routing tables and data structures.
 MAC addresses are 6 bytes long and are controlled by the
IEEE.
Chapter 1
9© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
The Basic Ethernet Frame Format
Chapter 1
10© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
The Basic Ethernet Frame Format
 Preamble (PRE)
• Consists of 7 bytes. The PRE is an alternating pattern of 1s and 0s
that tells receiving stations that a frame is coming, and that provides a
means of synchronization
 Start-of-frame delimiter (SOF)
• Consists of 1 byte. The SOF is an alternating pattern of 1s and 0s,
ending with two consecutive 1 bits, indicating that the next bit is the
leftmost bit in the leftmost byte of the destination address.
 Destination address (DA)
• Consists of 6 bytes. The DA field identifies which station(s) should
receive the frame.
 Source addresses (SA)
• Consists of 6 bytes. The SA field identifies the sending station.
Chapter 1
11© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
The Basic Ethernet Frame Format
 Length/Type
• Consists of 2 bytes. This field indicates either the number of MAC-
client data bytes that are contained in the data field of the frame, or
the frame type ID if the frame is assembled using an optional format.
 Data
• Is a sequence of n bytes of any value, where n is less than or equal to
1500.
• Note that jumbo frames up to 9000 bytes are supported on the
current-generation Cisco Catalyst switches.
 Frame check sequence (FCS)
• Consists of 4 bytes. This sequence contains a 32-bit cyclic
redundancy check (CRC) value, which is created by the sending MAC
and is recalculated by the receiving MAC to check for damaged
frames. The FCS is generated over the DA, SA, Length/Type, and
Data fields.
Chapter 1
12© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Basic Switching Function
 In brief, the basic switching function at Layer 2 adheres to these
rules for determining forwarding responsibility:
• If the destination MAC address is found in the CAM table, the switch
sends the frame out the port that is associated with that destination MAC
address in the CAM table. This process is called forwarding .
• If the associated port to send the frame out is the same port that the
frame originally came in on, there is no need to send the frame back out
that same port, and the frame is ignored. This process is called filtering .
• If the destination MAC address is not in the CAM table (that is, unknown
unicast), the switch sends the frame out all other ports that are in the
same VLAN as the received frame. This is called flooding . It does not
flood the frame out the same port on which the frame was received.
• If the destination MAC address of the received frame is the broadcast
address (FFFF.FFFF.FFFF), the frame is sent out all ports that are in the
same VLAN as the received frame. This is also called flooding .
Chapter 1
13© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
VLANs
 Because the switch decides on a frame-by-frame basis which
ports exchange data, it is a natural extension to put logic inside
the switch to allow it to choose ports for special groupings. This
grouping of ports is called a virtual local-area network (VLAN).
 The switch makes sure that traffic from one group of ports never
gets sent to other groups of ports (which would be routing).
 These port groups (VLANs) can each be considered an individual
LAN segment.
 VLANs are also described as broadcast domains. This is
because of the transparent bridging algorithm, which says that
broadcast packets (packets destined for the all devices address)
be sent out all ports that are in the same group (that is, in the
same VLAN).
 All ports that are in the same VLAN are also in the same
broadcast domain.
Chapter 1
14© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
The Spanning Tree Protocol
 As discussed previously, the switch forwarding algorithm floods unknown and
broadcast frames out of all the ports that are in the same VLAN as the received
frame. This causes a potential problem. If the network devices that run this algorithm
are connected together in a physical loop, flooded frames (like broadcasts) are
passed from switch to switch, around and around the loop, forever.
 There is a benefit to a physical loop in your network: It can provide redundancy. If
one link fails, there is still another way for the traffic to reach its destination. To allow
the benefits derived from redundancy, without breaking the network because of
flooding, a protocol called the Spanning Tree Protocol (STP) was created.
 Spanning tree was standardized in the IEEE 802.1D specification.
 The purpose of STP is to identify and temporarily block the loops in a network
segment or VLAN. The switches run STP, which involves electing a root bridge or
switch.
 The other switches measure their distance from the root switch. If there is more than
one way to get to the root switch, there is a loop. The switches follow the algorithm
to determine which ports must be blocked to break the loop.
 STP is dynamic; if a link in the segment fails, ports that were originally blocking can
possibly be changed to forwarding mode.
Chapter 1
15© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Trunking
 Trunking is a mechanism that is most often used to allow multiple
VLANs to function independently across multiple switches.
 Routers and servers can use trunking, as well, which allows them to live
simultaneously on multiple VLANs.
 If your network only has one VLAN in it, you might never need trunking;
but if your network has more than one VLAN, you probably want to take
advantage of the benefits of trunking.
 A port on a switch normally belongs to only one VLAN; any traffic
received or sent on this port is assumed to belong to the configured
VLAN.
 A trunk port, however, is a port that can be configured to send and
receive traffic for many VLANs.
 It accomplishes this when it attaches VLAN information to each frame, a
process called tagging the frame.
 Also, trunking must be active on both sides of the link; the other side
must expect frames that include VLAN information for proper
communication to occur.
Chapter 1
16© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Port Channels
 Utilizing port channels (EtherChannels) is a technique that
is used when you have multiple connections to the “same
device”.
 Rather than each link functioning independently, port
channels group the ports together to work as one unit. Port
channels distribute traffic across all the links and provide
redundancy if one or more links fail.
 Port channel settings must be the same on both sides of the
links involved in the channel.
 Normally, spanning tree would block all of these parallel
connections between devices because they are loops, but
port channels run underneath spanning tree, so that
spanning tree thinks all the ports within a given port channel
are only a single port.
Chapter 1
17© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Multilayer Switching
 Multilayer switching (MLS) is the ability of a switch to
forward frames based on information in the Layer 3 and
sometimes Layer 4 header. Almost all Cisco Catalyst
switches model 3500 or later support MLS. MLS is
becoming a legacy term due to the wide support.
 The most important aspect to MLS is recognizing that
switches can route or switch frames at wire-rate speeds
using specialized hardware. This effectively bundles the
routing function into the switch and is specifically useful for
routing between VLANs in the core of the network.
Chapter 1
18© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Chapter 1 Summary
 Hubs and switches
 Bridges and switches
 Switches of today
 Broadcast domains
 MAC addresses
 The basic Ethernet frame format
 Basic switching function
 VLANs
 The Spanning Tree Protocol
 Trunking
 Port channels
 Multilayer switching (MLS)
Chapter 1
19© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
 CCNPv7.1 SWITCH Lab1 BASELINE STUDENT
Chapter 1 Labs
Chapter 1
20© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Chapter 1
21© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
Acknowledgment
• Some of the images and texts are from Implementing Cisco IP Switched
Networks (SWITCH) Foundation Learning Guide: (CCNP SWITCH 300-115) by
Richard Froom and Erum Frahim (1587206641)
• Copyright © 2015 – 2016 Cisco Systems, Inc.
• Special Thanks to Bruno Silva

More Related Content

What's hot

CCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPTCCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPTNishant Goel
 
CCNA ppt Day 1
CCNA ppt Day 1CCNA ppt Day 1
CCNA ppt Day 1VISHNU N
 
Spanning tree protocol
Spanning tree protocolSpanning tree protocol
Spanning tree protocolMuuluu
 
CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6Nil Menon
 
Ccna ppt1
Ccna ppt1Ccna ppt1
Ccna ppt1AIRTEL
 
Ccna rse chp6 VLAN
Ccna rse chp6 VLANCcna rse chp6 VLAN
Ccna rse chp6 VLANnewbie2019
 
MPLS L3 VPN Tutorial, by Nurul Islam Roman [APNIC 38]
MPLS L3 VPN Tutorial, by Nurul Islam Roman [APNIC 38]MPLS L3 VPN Tutorial, by Nurul Islam Roman [APNIC 38]
MPLS L3 VPN Tutorial, by Nurul Islam Roman [APNIC 38]APNIC
 
Inter VLAN Routing
Inter VLAN RoutingInter VLAN Routing
Inter VLAN RoutingNetwax Lab
 
VLAN Trunking Protocol
VLAN Trunking ProtocolVLAN Trunking Protocol
VLAN Trunking ProtocolNetwax Lab
 
CCNA PPT
CCNA PPTCCNA PPT
CCNA PPTAIRTEL
 
Encor chapter 1_packet forwarding
Encor chapter 1_packet forwardingEncor chapter 1_packet forwarding
Encor chapter 1_packet forwardingmerhatsidikmelke
 
IOS Cisco - Cheat sheets
IOS Cisco - Cheat sheetsIOS Cisco - Cheat sheets
IOS Cisco - Cheat sheetsAlejandro Marin
 
Cisco IPv6 Tutorial
Cisco IPv6 TutorialCisco IPv6 Tutorial
Cisco IPv6 Tutorialkriz5
 

What's hot (20)

Ether channel fundamentals
Ether channel fundamentalsEther channel fundamentals
Ether channel fundamentals
 
CCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPTCCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPT
 
CCNA ppt Day 1
CCNA ppt Day 1CCNA ppt Day 1
CCNA ppt Day 1
 
IS-IS Protocol Introduction
IS-IS Protocol IntroductionIS-IS Protocol Introduction
IS-IS Protocol Introduction
 
Implementing cisco mpls
Implementing cisco mplsImplementing cisco mpls
Implementing cisco mpls
 
Spanning tree protocol
Spanning tree protocolSpanning tree protocol
Spanning tree protocol
 
CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6
 
CCNA PPT
CCNA PPTCCNA PPT
CCNA PPT
 
Ccna ppt1
Ccna ppt1Ccna ppt1
Ccna ppt1
 
Ccna rse chp6 VLAN
Ccna rse chp6 VLANCcna rse chp6 VLAN
Ccna rse chp6 VLAN
 
MPLS L3 VPN Tutorial, by Nurul Islam Roman [APNIC 38]
MPLS L3 VPN Tutorial, by Nurul Islam Roman [APNIC 38]MPLS L3 VPN Tutorial, by Nurul Islam Roman [APNIC 38]
MPLS L3 VPN Tutorial, by Nurul Islam Roman [APNIC 38]
 
Inter VLAN Routing
Inter VLAN RoutingInter VLAN Routing
Inter VLAN Routing
 
VLAN Trunking Protocol
VLAN Trunking ProtocolVLAN Trunking Protocol
VLAN Trunking Protocol
 
Ccna day3
Ccna day3Ccna day3
Ccna day3
 
CCNA PPT
CCNA PPTCCNA PPT
CCNA PPT
 
Encor chapter 1_packet forwarding
Encor chapter 1_packet forwardingEncor chapter 1_packet forwarding
Encor chapter 1_packet forwarding
 
Ospf
OspfOspf
Ospf
 
OSPF
OSPF OSPF
OSPF
 
IOS Cisco - Cheat sheets
IOS Cisco - Cheat sheetsIOS Cisco - Cheat sheets
IOS Cisco - Cheat sheets
 
Cisco IPv6 Tutorial
Cisco IPv6 TutorialCisco IPv6 Tutorial
Cisco IPv6 Tutorial
 

Similar to CCNP Switching Chapter 1

CCNP Switching Chapter 3
CCNP Switching Chapter 3CCNP Switching Chapter 3
CCNP Switching Chapter 3Chaing Ravuth
 
SRWE_Module_5-STP Concepts.pptx
SRWE_Module_5-STP Concepts.pptxSRWE_Module_5-STP Concepts.pptx
SRWE_Module_5-STP Concepts.pptxSaqibAli696638
 
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722Prince Mishra
 
Westermo webinar: Learning the Basics of Ethernet Networking
Westermo webinar: Learning the Basics of Ethernet NetworkingWestermo webinar: Learning the Basics of Ethernet Networking
Westermo webinar: Learning the Basics of Ethernet NetworkingWestermo Network Technologies
 
CCNA Advanced Switching
CCNA Advanced SwitchingCCNA Advanced Switching
CCNA Advanced SwitchingDsunte Wilson
 
Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutions
Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutionsSwitching vla ns_secugenius_harksh_mikemclain_secugenius security solutions
Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutionsMike McLain
 
Advanced Network Chapter I: Which is very best lecture note
Advanced Network Chapter I: Which is very best lecture noteAdvanced Network Chapter I: Which is very best lecture note
Advanced Network Chapter I: Which is very best lecture noteabdisani3
 
Campas network design overview
Campas network design overviewCampas network design overview
Campas network design overviewAnushka Hapuhinna
 

Similar to CCNP Switching Chapter 1 (20)

CCNP Switching Chapter 3
CCNP Switching Chapter 3CCNP Switching Chapter 3
CCNP Switching Chapter 3
 
5 IEEE standards
5  IEEE standards5  IEEE standards
5 IEEE standards
 
CCNA 1
CCNA 1CCNA 1
CCNA 1
 
SRWE_Module_5-STP Concepts.pptx
SRWE_Module_5-STP Concepts.pptxSRWE_Module_5-STP Concepts.pptx
SRWE_Module_5-STP Concepts.pptx
 
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722
Imperfection_Is_Beautiful.111_2016_04_13_19_07_54_722
 
Westermo webinar: Learning the Basics of Ethernet Networking
Westermo webinar: Learning the Basics of Ethernet NetworkingWestermo webinar: Learning the Basics of Ethernet Networking
Westermo webinar: Learning the Basics of Ethernet Networking
 
The Basics of Industrial Ethernet Communications
The Basics of Industrial Ethernet CommunicationsThe Basics of Industrial Ethernet Communications
The Basics of Industrial Ethernet Communications
 
ENCOR_Capitulo 1.pptx
ENCOR_Capitulo 1.pptxENCOR_Capitulo 1.pptx
ENCOR_Capitulo 1.pptx
 
CCNA_RSE_Chp4.pptx
CCNA_RSE_Chp4.pptxCCNA_RSE_Chp4.pptx
CCNA_RSE_Chp4.pptx
 
Switching
SwitchingSwitching
Switching
 
Switching
SwitchingSwitching
Switching
 
CCNA Advanced Switching
CCNA Advanced SwitchingCCNA Advanced Switching
CCNA Advanced Switching
 
Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutions
Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutionsSwitching vla ns_secugenius_harksh_mikemclain_secugenius security solutions
Switching vla ns_secugenius_harksh_mikemclain_secugenius security solutions
 
IEEE Standards
IEEE StandardsIEEE Standards
IEEE Standards
 
Advanced Network Chapter I: Which is very best lecture note
Advanced Network Chapter I: Which is very best lecture noteAdvanced Network Chapter I: Which is very best lecture note
Advanced Network Chapter I: Which is very best lecture note
 
IFD30104 Chapter 1
IFD30104 Chapter 1IFD30104 Chapter 1
IFD30104 Chapter 1
 
Vlan
Vlan Vlan
Vlan
 
Campas network design overview
Campas network design overviewCampas network design overview
Campas network design overview
 
Ethernet
EthernetEthernet
Ethernet
 
C C N A Day1
C C N A  Day1C C N A  Day1
C C N A Day1
 

More from Chaing Ravuth

CCNP Switching Chapter 2
CCNP Switching Chapter 2CCNP Switching Chapter 2
CCNP Switching Chapter 2Chaing Ravuth
 
CCNP Switching Chapter 10
CCNP Switching Chapter 10CCNP Switching Chapter 10
CCNP Switching Chapter 10Chaing Ravuth
 
CCNP Switching Chapter 9
CCNP Switching Chapter 9CCNP Switching Chapter 9
CCNP Switching Chapter 9Chaing Ravuth
 
CCNP Switching Chapter 8
CCNP Switching Chapter 8CCNP Switching Chapter 8
CCNP Switching Chapter 8Chaing Ravuth
 
CCNP Switching Chapter 7
CCNP Switching Chapter 7CCNP Switching Chapter 7
CCNP Switching Chapter 7Chaing Ravuth
 
CCNP Switching Chapter 6
CCNP Switching Chapter 6CCNP Switching Chapter 6
CCNP Switching Chapter 6Chaing Ravuth
 
CCNP Switching Chapter 5
CCNP Switching Chapter 5CCNP Switching Chapter 5
CCNP Switching Chapter 5Chaing Ravuth
 
CCNA4 Verson6 Chapter1
CCNA4 Verson6 Chapter1CCNA4 Verson6 Chapter1
CCNA4 Verson6 Chapter1Chaing Ravuth
 
CCNA4 Verson6 Chapter8
CCNA4 Verson6 Chapter8CCNA4 Verson6 Chapter8
CCNA4 Verson6 Chapter8Chaing Ravuth
 
CCNA4 Verson6 Chapter7
CCNA4 Verson6 Chapter7CCNA4 Verson6 Chapter7
CCNA4 Verson6 Chapter7Chaing Ravuth
 
CCNA4 Verson6 Chapter6
CCNA4 Verson6 Chapter6CCNA4 Verson6 Chapter6
CCNA4 Verson6 Chapter6Chaing Ravuth
 
CCNA4 Verson6 Chapter5
CCNA4 Verson6 Chapter5CCNA4 Verson6 Chapter5
CCNA4 Verson6 Chapter5Chaing Ravuth
 
CCNA4 Verson6 Chapter4
CCNA4 Verson6 Chapter4CCNA4 Verson6 Chapter4
CCNA4 Verson6 Chapter4Chaing Ravuth
 
CCNA4 Verson6 Chapter3
CCNA4 Verson6 Chapter3CCNA4 Verson6 Chapter3
CCNA4 Verson6 Chapter3Chaing Ravuth
 

More from Chaing Ravuth (20)

CCNP ROUTE V7 CH8
CCNP ROUTE V7 CH8CCNP ROUTE V7 CH8
CCNP ROUTE V7 CH8
 
CCNP ROUTE V7 CH6
CCNP ROUTE V7 CH6CCNP ROUTE V7 CH6
CCNP ROUTE V7 CH6
 
CCNP ROUTE V7 CH5
CCNP ROUTE V7 CH5CCNP ROUTE V7 CH5
CCNP ROUTE V7 CH5
 
CCNP ROUTE V7 CH4
CCNP ROUTE V7 CH4CCNP ROUTE V7 CH4
CCNP ROUTE V7 CH4
 
CCNP ROUTE V7 CH3
CCNP ROUTE V7 CH3CCNP ROUTE V7 CH3
CCNP ROUTE V7 CH3
 
CCNP ROUTE V7 CH2
CCNP ROUTE V7 CH2CCNP ROUTE V7 CH2
CCNP ROUTE V7 CH2
 
CCNP Switching Chapter 2
CCNP Switching Chapter 2CCNP Switching Chapter 2
CCNP Switching Chapter 2
 
CCNP Switching Chapter 10
CCNP Switching Chapter 10CCNP Switching Chapter 10
CCNP Switching Chapter 10
 
CCNP Switching Chapter 9
CCNP Switching Chapter 9CCNP Switching Chapter 9
CCNP Switching Chapter 9
 
CCNP Switching Chapter 8
CCNP Switching Chapter 8CCNP Switching Chapter 8
CCNP Switching Chapter 8
 
CCNP Switching Chapter 7
CCNP Switching Chapter 7CCNP Switching Chapter 7
CCNP Switching Chapter 7
 
CCNP Switching Chapter 6
CCNP Switching Chapter 6CCNP Switching Chapter 6
CCNP Switching Chapter 6
 
CCNP Switching Chapter 5
CCNP Switching Chapter 5CCNP Switching Chapter 5
CCNP Switching Chapter 5
 
CCNA4 Verson6 Chapter1
CCNA4 Verson6 Chapter1CCNA4 Verson6 Chapter1
CCNA4 Verson6 Chapter1
 
CCNA4 Verson6 Chapter8
CCNA4 Verson6 Chapter8CCNA4 Verson6 Chapter8
CCNA4 Verson6 Chapter8
 
CCNA4 Verson6 Chapter7
CCNA4 Verson6 Chapter7CCNA4 Verson6 Chapter7
CCNA4 Verson6 Chapter7
 
CCNA4 Verson6 Chapter6
CCNA4 Verson6 Chapter6CCNA4 Verson6 Chapter6
CCNA4 Verson6 Chapter6
 
CCNA4 Verson6 Chapter5
CCNA4 Verson6 Chapter5CCNA4 Verson6 Chapter5
CCNA4 Verson6 Chapter5
 
CCNA4 Verson6 Chapter4
CCNA4 Verson6 Chapter4CCNA4 Verson6 Chapter4
CCNA4 Verson6 Chapter4
 
CCNA4 Verson6 Chapter3
CCNA4 Verson6 Chapter3CCNA4 Verson6 Chapter3
CCNA4 Verson6 Chapter3
 

Recently uploaded

How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 

Recently uploaded (20)

How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 

CCNP Switching Chapter 1

  • 1. Cisco Public SWITCH v7 Chapter 1 1© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Chapter 1: Fundamentals Review CCNP SWITCH: Implementing Cisco IP Switched Networks
  • 2. Chapter 1 2© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Chapter 1 Objectives This chapter covers the following basic switching topics as a review to CCNA and serves as a teaser for topics covered later in chapter:  Hubs and switches  Bridges and switches  Switches of today  Broadcast domains  MAC addresses  The basic Ethernet frame format  Basic switching function  VLANs  The Spanning Tree Protocol  Trunking  Port channels  Multilayer switching (MLS)
  • 3. Chapter 1 3© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Fundamentals Review
  • 4. Chapter 1 4© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Hubs and Switches  Hubs are archaic, and the terminology should be avoided. Even the simplest multiport Ethernet devices for the home are switches.  In review, hubs died off as a product because they are shared- bandwidth devices.  Switches introduced dedicated bandwidth. A hub allows multiple devices to be connected to the same network segment. The devices on that segment share the bandwidth with each other.  A switch allows multiple devices to be connected to the same network, just like a hub does, but this is where the similarity ends.  A switch allows each connected device to have dedicated bandwidth instead of shared bandwidth.  Switches also support additional capabilities beyond what hubs support.
  • 5. Chapter 1 5© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Bridges and Switches  A basic switch is considered a Layer 2 device. When we use the word layer , we are referring to the seven-layer OSI reference model.  A switch does not just pass electrical signals along, like a hub does; instead, it assembles the signals into a frame (Layer 2), and then decides what to do with the frame.  A switch determines what to do with a frame by borrowing an algorithm from a previously common networking device: a transparent bridge.  Logically, a switch acts just like a transparent bridge would, but it can handle frames much faster than a transparent bridge could  Once a switch decides where the frame should be sent, it passes the frame out the appropriate port (or ports). You can think of a switch as a device creating instantaneous connections between various ports, on a frame-by-frame basis.
  • 6. Chapter 1 6© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Switches of Today Today’s switches have evolved beyond just switching frames. Most modern switches can actually route traffic. In addition, switches can prioritize traffic, support no downtime through redundancy, and provide convergence services around IP telephony and wireless networks.  Application intelligence • This helps networks recognize many types of applications and secure and prioritize those applications to provide the best user experience.  Unified network services • Combining the best elements of wireless and wired networking allows you to consistently connect to any resource or person with any device. 10 Gigabit Ethernet technology and Power over Ethernet (PoE) technology support new applications and devices.  Nonstop communications • Features such as redundant hardware, and nonstop forwarding and stateful switchover (NSF/SSO) technology support more-reliable connections.  Integrated security • LAN switches provide the first line of defense against internal network attacks and prevent unauthorized intrusion.  Operational manageability • To more easily manage the network, IT staff must be able to remotely configure and monitor network devices from a central location.
  • 7. Chapter 1 7© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Broadcast Domains  A broadcast domain is a set of network devices that receive broadcast frames originating from any device within the group.  Routers typically bound broadcast domains because routers do not forward broadcast frames.  VLANs are an example of broadcast domain.  Broadcast domains are generally limited to a specific Layer 2 segment that contains a single IP subnet.
  • 8. Chapter 1 8© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public MAC Addresses  MAC addresses are standardized data link layer addresses that are required for every port or device that connects to a LAN.  Other devices in the network use these addresses to locate specific ports in the network and to create and update routing tables and data structures.  MAC addresses are 6 bytes long and are controlled by the IEEE.
  • 9. Chapter 1 9© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public The Basic Ethernet Frame Format
  • 10. Chapter 1 10© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public The Basic Ethernet Frame Format  Preamble (PRE) • Consists of 7 bytes. The PRE is an alternating pattern of 1s and 0s that tells receiving stations that a frame is coming, and that provides a means of synchronization  Start-of-frame delimiter (SOF) • Consists of 1 byte. The SOF is an alternating pattern of 1s and 0s, ending with two consecutive 1 bits, indicating that the next bit is the leftmost bit in the leftmost byte of the destination address.  Destination address (DA) • Consists of 6 bytes. The DA field identifies which station(s) should receive the frame.  Source addresses (SA) • Consists of 6 bytes. The SA field identifies the sending station.
  • 11. Chapter 1 11© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public The Basic Ethernet Frame Format  Length/Type • Consists of 2 bytes. This field indicates either the number of MAC- client data bytes that are contained in the data field of the frame, or the frame type ID if the frame is assembled using an optional format.  Data • Is a sequence of n bytes of any value, where n is less than or equal to 1500. • Note that jumbo frames up to 9000 bytes are supported on the current-generation Cisco Catalyst switches.  Frame check sequence (FCS) • Consists of 4 bytes. This sequence contains a 32-bit cyclic redundancy check (CRC) value, which is created by the sending MAC and is recalculated by the receiving MAC to check for damaged frames. The FCS is generated over the DA, SA, Length/Type, and Data fields.
  • 12. Chapter 1 12© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Basic Switching Function  In brief, the basic switching function at Layer 2 adheres to these rules for determining forwarding responsibility: • If the destination MAC address is found in the CAM table, the switch sends the frame out the port that is associated with that destination MAC address in the CAM table. This process is called forwarding . • If the associated port to send the frame out is the same port that the frame originally came in on, there is no need to send the frame back out that same port, and the frame is ignored. This process is called filtering . • If the destination MAC address is not in the CAM table (that is, unknown unicast), the switch sends the frame out all other ports that are in the same VLAN as the received frame. This is called flooding . It does not flood the frame out the same port on which the frame was received. • If the destination MAC address of the received frame is the broadcast address (FFFF.FFFF.FFFF), the frame is sent out all ports that are in the same VLAN as the received frame. This is also called flooding .
  • 13. Chapter 1 13© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public VLANs  Because the switch decides on a frame-by-frame basis which ports exchange data, it is a natural extension to put logic inside the switch to allow it to choose ports for special groupings. This grouping of ports is called a virtual local-area network (VLAN).  The switch makes sure that traffic from one group of ports never gets sent to other groups of ports (which would be routing).  These port groups (VLANs) can each be considered an individual LAN segment.  VLANs are also described as broadcast domains. This is because of the transparent bridging algorithm, which says that broadcast packets (packets destined for the all devices address) be sent out all ports that are in the same group (that is, in the same VLAN).  All ports that are in the same VLAN are also in the same broadcast domain.
  • 14. Chapter 1 14© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public The Spanning Tree Protocol  As discussed previously, the switch forwarding algorithm floods unknown and broadcast frames out of all the ports that are in the same VLAN as the received frame. This causes a potential problem. If the network devices that run this algorithm are connected together in a physical loop, flooded frames (like broadcasts) are passed from switch to switch, around and around the loop, forever.  There is a benefit to a physical loop in your network: It can provide redundancy. If one link fails, there is still another way for the traffic to reach its destination. To allow the benefits derived from redundancy, without breaking the network because of flooding, a protocol called the Spanning Tree Protocol (STP) was created.  Spanning tree was standardized in the IEEE 802.1D specification.  The purpose of STP is to identify and temporarily block the loops in a network segment or VLAN. The switches run STP, which involves electing a root bridge or switch.  The other switches measure their distance from the root switch. If there is more than one way to get to the root switch, there is a loop. The switches follow the algorithm to determine which ports must be blocked to break the loop.  STP is dynamic; if a link in the segment fails, ports that were originally blocking can possibly be changed to forwarding mode.
  • 15. Chapter 1 15© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Trunking  Trunking is a mechanism that is most often used to allow multiple VLANs to function independently across multiple switches.  Routers and servers can use trunking, as well, which allows them to live simultaneously on multiple VLANs.  If your network only has one VLAN in it, you might never need trunking; but if your network has more than one VLAN, you probably want to take advantage of the benefits of trunking.  A port on a switch normally belongs to only one VLAN; any traffic received or sent on this port is assumed to belong to the configured VLAN.  A trunk port, however, is a port that can be configured to send and receive traffic for many VLANs.  It accomplishes this when it attaches VLAN information to each frame, a process called tagging the frame.  Also, trunking must be active on both sides of the link; the other side must expect frames that include VLAN information for proper communication to occur.
  • 16. Chapter 1 16© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Port Channels  Utilizing port channels (EtherChannels) is a technique that is used when you have multiple connections to the “same device”.  Rather than each link functioning independently, port channels group the ports together to work as one unit. Port channels distribute traffic across all the links and provide redundancy if one or more links fail.  Port channel settings must be the same on both sides of the links involved in the channel.  Normally, spanning tree would block all of these parallel connections between devices because they are loops, but port channels run underneath spanning tree, so that spanning tree thinks all the ports within a given port channel are only a single port.
  • 17. Chapter 1 17© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Multilayer Switching  Multilayer switching (MLS) is the ability of a switch to forward frames based on information in the Layer 3 and sometimes Layer 4 header. Almost all Cisco Catalyst switches model 3500 or later support MLS. MLS is becoming a legacy term due to the wide support.  The most important aspect to MLS is recognizing that switches can route or switch frames at wire-rate speeds using specialized hardware. This effectively bundles the routing function into the switch and is specifically useful for routing between VLANs in the core of the network.
  • 18. Chapter 1 18© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Chapter 1 Summary  Hubs and switches  Bridges and switches  Switches of today  Broadcast domains  MAC addresses  The basic Ethernet frame format  Basic switching function  VLANs  The Spanning Tree Protocol  Trunking  Port channels  Multilayer switching (MLS)
  • 19. Chapter 1 19© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public  CCNPv7.1 SWITCH Lab1 BASELINE STUDENT Chapter 1 Labs
  • 20. Chapter 1 20© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public
  • 21. Chapter 1 21© 2007 – 2016, Cisco Systems, Inc. All rights reserved. Cisco Public Acknowledgment • Some of the images and texts are from Implementing Cisco IP Switched Networks (SWITCH) Foundation Learning Guide: (CCNP SWITCH 300-115) by Richard Froom and Erum Frahim (1587206641) • Copyright © 2015 – 2016 Cisco Systems, Inc. • Special Thanks to Bruno Silva