SlideShare une entreprise Scribd logo
1  sur  67
Chapter 10: 
Ethernet 
Network Basics 
© 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 1
Chapter 10 - Objectives 
Upon completion of this chapter you will be able to: 
 Describe the operation of the Ethernet sublayers. 
 Identify the major fields of the Ethernet frame. 
 Describe the purpose and characteristics of the Ethernet MAC address. 
 Compare the roles of the MAC address and the IP address. 
 Describe the purpose of ARP. 
 Explain how ARP requests impact network and host performance. 
 Explain basic switching concepts. 
 Compare fixed configuration and modular switches. 
 Configure a Layer 3 switch. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 2
Chapter 10 
10.0 Introduction 
10.1 Ethernet Protocol 
10.2 Address Resolution Protocol 
10.3 LAN Switches 
10.4 Summary 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 3
10.1 
Ethernet Protocol 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 4
Ethernet Operation 
LLC and MAC Sublayers 
Ethernet – 
 One of the most widely used LAN technologies 
 Operates in the data link layer and the physical layer 
 Family of networking technologies that are defined in the IEEE 802.2 
and 802.3 standards 
 Supports data bandwidths of 10, 100, 1000, 10,000, 40,000, and 
100,000 Mbps (100 Gbps) 
Ethernet standards – 
 Define Layer 2 protocols and Layer 1 technologies 
 Two separate sub layers of the data link layer to operate - Logical 
link control (LLC) and the MAC sublayers 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 5
Ethernet Operation 
LLC and MAC Sublayers 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 6
Ethernet Operation 
LLC and MAC Sublayers 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 7
Ethernet Operation 
LLC and MAC Sublayers 
LLC 
 Handles communication between upper and lower layers 
 Takes the network protocol data and adds control 
information to help deliver the packet to the destination 
MAC 
 Constitutes the lower sublayer of the data link layer 
 Implemented by hardware, typically in the computer NIC 
 Two primary responsibilities: 
• Data encapsulation 
• Media access control 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 8
Ethernet Operation 
MAC Sublayer 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 9
Ethernet Operation 
MAC Sublayer 
Data encapsulation 
 Frame assembly before transmission and frame disassembly upon 
reception of a frame 
 MAC layer adds a header and trailer to the network layer PDU 
Provides three primary functions: 
 Frame delimiting – identifies a group of bits that make up a frame, 
synchronization between the transmitting and receiving nodes 
 Addressing – each Ethernet header added in the frame contains the 
physical address (MAC address) that enables a frame to be delivered 
to a destination node 
 Error detection - each Ethernet frame contains a trailer with a cyclic 
redundancy check (CRC) of the frame contents 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 10
Ethernet Operation 
MAC Sublayer 
Media Access Control 
 Responsible for the placement of frames on the media and the 
removal of frames from the media 
 Communicates directly with the physical layer 
 If multiple devices on a single medium attempt to forward data 
simultaneously, the data will collide resulting in corrupted, unusable 
data 
 Ethernet provides a method for controlling how the nodes share 
access through the use a Carrier Sense Multiple Access (CSMA) 
technology 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 11
Ethernet Operation 
Media Access Control 
Carrier Sense Multiple Access (CSMA) process 
 Used to first detect if the media is carrying a signal 
 If no carrier signal is detected, the device transmits its data 
 If two devices transmit at the same time - data collision 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 12
Ethernet Operation 
Media Access Control 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 13
Ethernet Operation 
Media Access Control 
The two commonly used methods are: 
CSMA/Collision Detection 
 The device monitors the media for the presence of a data signal 
 If a data signal is absent, indicating that the media is free, the device 
transmits the data 
 If signals are then detected that show another device was transmitting 
at the same time, all devices stop sending and try again later 
 While Ethernet networks are designed with CSMA/CD technology, with 
today’s intermediate devices, collisions do not occur and the processes 
utilized by CSMA/CD are really unnecessary 
 Wireless connections in a LAN environment still have to take collisions 
into account 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 14
Ethernet Operation 
Media Access Control 
The two commonly used methods are: 
CSMA/Collision Avoidance (CSMA/CA) media access 
method 
 Device examines the media for the presence of data signal-if 
the media is free, the device sends a notification across 
the media of its intent to use it 
 The device then sends the data. 
 Used by 802.11 wireless networking technologies 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 15
Ethernet Operation 
Media Access Control 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 16
Ethernet Operation 
MAC Address: Ethernet Identity 
 Layer 2 Ethernet MAC address is a 48-bit binary value 
expressed as 12 hexadecimal digits 
 IEEE requires a vendor to follow two simple rules: 
• Must use that vendor's assigned OUI as the first 3 bytes 
• All MAC addresses with the same OUI must be 
assigned a unique value in the last 3 bytes 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 17
Ethernet Operation 
Frame Processing 
 MAC addresses assigned to workstations, servers, printers, switches, 
and routers 
 Example MACs: 00-05-9A-3C-78-00, 00:05:9A:3C:78:00, or 
0005.9A3C.7800. 
 Forwarded message to an Ethernet network, attaches header 
information to the packet, contains the source and destination MAC 
address 
 Each NIC views information to see if the destination MAC address in 
the frame matches the device’s physical MAC address stored in RAM 
 No match, the device discards the frame 
 Matches the destination MAC of the frame, the NIC passes the frame 
up the OSI layers, where the decapsulation process takes place 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 18
Ethernet Frame Attributes 
Ethernet Encapsulation 
 Early versions of Ethernet were relatively slow at 10 Mbps 
 Now operate at 10 Gigabits per second and faster 
 Ethernet frame structure adds headers and trailers around the Layer 3 
PDU to encapsulate the message being sent 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 19
Ethernet Frame Attributes 
Ethernet Frame Size 
 Ethernet II and IEEE 802.3 standards define the minimum 
frame size as 64 bytes and the maximum as 1518 bytes 
 Less than 64 bytes in length is considered a "collision 
fragment" or "runt frame” 
 If size of a transmitted frame is less than the minimum or 
greater than the maximum, the receiving device drops the 
frame 
 At the physical layer, different versions of Ethernet vary in 
their method for detecting and placing data on the media 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 20
Ethernet Frame Attributes 
Ethernet Frame Size 
The figure displays the fields contained in the 
802.1Q VLAN tag 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 21
Ethernet Frame Attributes 
Introduction to the Ethernet Frame 
Preamble and 
Start Frame 
Delimiter Fields 
Used for 
synchronization 
between the 
sending and 
receiving devices 
Length/Type 
Field 
Defines the exact 
length of the 
frame's data field/ 
describes which 
protocol is 
implemented 
Data and 
Pad Fields 
Contain the 
encapsulated 
data from a 
higher layer, 
an IPv4 
packet 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 22
Ethernet Frame Attributes 
Introduction to the Ethernet Frame 
Frame Check Sequence Field 
Used to detect errors in a frame 
with cyclic redundancy check, if 
calculations match at source and 
receiver, no error occurred. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 23
Ethernet MAC 
MAC Addresses and Hexadecimal 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 24
Ethernet MAC 
MAC Address Representations 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 25
Ethernet MAC 
Unicast MAC Address 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 26
Ethernet MAC 
Broadcast MAC Address 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 27
Ethernet MAC 
Multicast MAC Address 
Multicast MAC address is a 
special value that begins with 
01-00-5E in hexadecimal 
Range of IPV4 multicast addresses 
is 224.0.0.0 to 239.255.255.255 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 28
MAC and IP 
MAC and IP 
MAC address 
 This address does not change 
 Similar to the name of a person 
 Known as physical address because physically assigned to the host NIC 
IP address 
 Similar to the address of a person 
 Based on where the host is actually located 
 Known as a logical address because assigned logically 
 Assigned to each host by a network administrator 
Both the physical MAC and logical IP addresses are required for a 
computer to communicate just like both the name and address of a person 
are required to send a letter 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 29
Ethernet MAC 
End-to-End Connectivity, MAC, and IP 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 30
Ethernet MAC 
End-to-End Connectivity, MAC, and IP 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 31
10.2 
Address Resolution Protocol 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 32
ARP 
Introduction to ARP 
ARP Purpose – 
 Sending node needs a way to find the MAC address of the 
destination for a given Ethernet link 
ARP protocol provides two basic functions: 
 Resolving IPv4 addresses to MAC addresses 
 Maintaining a table of mappings 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 33
ARP 
ARP Functions/Operation 
ARP Table – 
 Used to find the data link layer address that is mapped to the 
destination IPv4 address 
 As a node receives frames from the media, it records the source IP 
and MAC address as a mapping in the ARP table 
ARP request – 
 Layer 2 broadcast to all devices on the Ethernet LAN 
 The node that matches the IP address in the broadcast will reply 
 If no device responds to the ARP request, the packet is dropped 
because a frame cannot be created 
Static map entries can be entered in an ARP table, but 
this is rarely done 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 34
ARP 
ARP Functions/Operation 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 35
ARP 
ARP Functions/Operation 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 36
ARP 
ARP Functions/Operation 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 37
ARP 
ARP Functions/Operation 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 38
ARP 
ARP Functions/Operation 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 39
ARP 
ARP Role in Remote Communication 
 If the destination IPv4 host is on the local network, the 
frame will use the MAC address of this device as the 
destination MAC address 
 If the destination IPv4 host is not on the local network, the 
source uses the ARP process to determine a MAC address 
for the router interface serving as the gateway 
 In the event that the gateway entry is not in the table, an 
ARP request is used to retrieve the MAC address 
associated with the IP address of the router interface 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 40
ARP 
Removing Entries from an ARP Table 
 ARP cache timer removes ARP entries that have not been 
used for a specified period of time 
 Commands may also be used to manually remove all or 
some of the entries in the ARP table 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 41
ARP 
ARP Tables on Networking Devices 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 42
ARP Issues 
How ARP Can Create Problems 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 43
ARP Issues 
Mitigating ARP Problems 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 44
10.3 
LAN Switches 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 45
Switching 
Switch Port Fundamentals 
Layer 2 LAN switch 
 Connects end devices to a central intermediate device on 
most Ethernet networks 
 Performs switching and filtering based only on the MAC 
address 
 Builds a MAC address table that it uses to make forwarding 
decisions 
 Depends on routers to pass data between IP subnetworks 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 46
Switching 
Switch MAC Address Table 
1. The switch receives a broadcast frame from PC 1 on Port 1. 
2. The switch enters the source MAC address and the switch 
port that received the frame into the address table. 
3. Because the destination address is a broadcast, the switch 
floods the frame to all ports, except the port on which it 
received the frame. 
4. The destination device replies to the broadcast with a 
unicast frame addressed to PC 1. 
Continued… 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 47
Switching 
Switch MAC Address Table 
5. The switch enters the source MAC address of PC 2 and the 
port number of the switch port that received the frame into 
the address table. The destination address of the frame and 
its associated port is found in the MAC address table. 
6. The switch can now forward frames between source and 
destination devices without flooding, because it has entries 
in the address table that identify the associated ports. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 48
Switching 
Duplex Settings 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 49
Switching 
Auto-MDIX 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 50
Switching 
Frame Forwarding Methods on Cisco Switches 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 51
Switching 
Cut-through Switching 
Two variants: 
Fast-forward switching: 
• Lowest level of latency 
immediately forwards a 
packet after reading the 
destination address, 
typical cut-through 
method of switching 
Fragment-free switching: 
• Switch stores the first 
64 bytes of the frame 
before forwarding, most 
network errors and 
collisions occur during 
the first 64 bytes 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 52
Switching 
Memory Buffering on Switches 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 53
Fixed or Modular 
Fixed verses Modular Configuration 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 54
Fixed or Modular 
Fixed verses Modular Configuration 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 55
Fixed or Modular 
Fixed Configuration Cisco Switches 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 56
Fixed or Modular 
Modular Configuration Cisco Switches 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 57
Fixed or Modular 
Module Options for Cisco Switch Slots 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 58
Layer 3 Switching 
Layer 2 verses Layer 3 Switching 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 59
Layer 3 Switching 
Cisco Express Forwarding 
Two main components: 
 Forwarding information base (FIB) 
• Conceptually similar to a routing table 
• A networking device uses this lookup table to make 
destination-based switching decisions during Cisco 
Express Forwarding operation 
• Updated when changes occur in the network and 
contains all routes known at the time 
 Adjacency tables 
• Maintain layer 2 next-hop addresses for all FIB entries 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 60
Layer 3 Switching 
Cisco Express Forwarding 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 61
Layer 3 Switching 
Types of Layer 3 Interfaces 
The major types of Layer 3 interfaces are: 
 Switch Virtual Interface (SVI) – Logical interface on a switch 
associated with a virtual local area network (VLAN). 
 Routed Port – Physical port on a Layer 3 switch configured 
to act as a router port. Configure routed ports by putting the 
interface into Layer 3 mode with the no switchport interface 
configuration command. 
 Layer 3 EtherChannel – Logical interface on a Cisco device 
associated with a bundle of routed ports. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 62
Layer 3 Switching 
Configuring a Routed Port on a Layer 3 Switch 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 63
Ethernet 
Summary 
 Ethernet is the most widely used LAN technology used today. 
 Ethernet standards define both the Layer 2 protocols and the 
Layer 1 technologies. 
 The Ethernet frame structure adds headers and trailers 
around the Layer 3 PDU to encapsulate the message being 
sent. 
 As an implementation of the IEEE 802.2/3 standards, the 
Ethernet frame provides MAC addressing and error checking. 
 Replacing hubs with switches in the local network has 
reduced the probability of frame collisions in half-duplex links. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 64
Ethernet 
Summary 
 The Layer 2 addressing provided by Ethernet supports 
unicast, multicast, and broadcast communications. 
 Ethernet uses the Address Resolution Protocol to determine 
the MAC addresses of destinations and map them against 
known Network layer addresses. 
 Each node on an IP network has both a MAC address and an 
IP address. 
 The ARP protocol resolves IPv4 addresses to MAC 
addresses and maintains a table of mappings. 
 A Layer 2 switch builds a MAC address table that it uses to 
make forwarding decisions. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 65
Ethernet 
Summary 
 Layer 3 switches are also capable of performing Layer 3 
routing functions, reducing the need for dedicated routers on 
a LAN. 
 Layer 3 switches have specialized switching hardware so 
they can typically route data as quickly as they can switch. 
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 66
Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 67

Contenu connexe

Tendances

CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3Nil Menon
 
CCNAv5 - S4: Chapter8 monitoring the network
CCNAv5 - S4: Chapter8 monitoring the networkCCNAv5 - S4: Chapter8 monitoring the network
CCNAv5 - S4: Chapter8 monitoring the networkVuz Dở Hơi
 
CCNA 1 Routing and Switching v5.0 Chapter 2
CCNA 1 Routing and Switching v5.0 Chapter 2CCNA 1 Routing and Switching v5.0 Chapter 2
CCNA 1 Routing and Switching v5.0 Chapter 2Nil Menon
 
CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6Irsandi Hasan
 
CCNA 1 Routing and Switching v5.0 Chapter 11
CCNA 1 Routing and Switching v5.0 Chapter 11CCNA 1 Routing and Switching v5.0 Chapter 11
CCNA 1 Routing and Switching v5.0 Chapter 11Nil Menon
 
CCNA 1 Routing and Switching v5.0 Chapter 10
CCNA 1 Routing and Switching v5.0 Chapter 10CCNA 1 Routing and Switching v5.0 Chapter 10
CCNA 1 Routing and Switching v5.0 Chapter 10Nil Menon
 
CCNAv5 - S1: Chapter 1 Exploring The Network
CCNAv5 - S1: Chapter 1 Exploring The NetworkCCNAv5 - S1: Chapter 1 Exploring The Network
CCNAv5 - S1: Chapter 1 Exploring The NetworkVuz Dở Hơi
 
CCNA RS_ITN - Chapter 7
CCNA RS_ITN - Chapter 7CCNA RS_ITN - Chapter 7
CCNA RS_ITN - Chapter 7Irsandi Hasan
 
CCNA RS_ITN - Chapter 3
CCNA RS_ITN - Chapter 3CCNA RS_ITN - Chapter 3
CCNA RS_ITN - Chapter 3Irsandi Hasan
 
CCNA 2 Routing and Switching v5.0 Chapter 11
CCNA 2 Routing and Switching v5.0 Chapter 11CCNA 2 Routing and Switching v5.0 Chapter 11
CCNA 2 Routing and Switching v5.0 Chapter 11Nil Menon
 
CCNAv5 - S1: Chapter 5 - Ethernet
CCNAv5 - S1: Chapter 5 - EthernetCCNAv5 - S1: Chapter 5 - Ethernet
CCNAv5 - S1: Chapter 5 - EthernetVuz Dở Hơi
 
CCNAv5 - S1: Chapter 3 - Network protocols and communications
CCNAv5 - S1: Chapter 3 - Network protocols and communicationsCCNAv5 - S1: Chapter 3 - Network protocols and communications
CCNAv5 - S1: Chapter 3 - Network protocols and communicationsVuz Dở Hơi
 
CCNA 2 Routing and Switching v5.0 Chapter 8
CCNA 2 Routing and Switching v5.0 Chapter 8CCNA 2 Routing and Switching v5.0 Chapter 8
CCNA 2 Routing and Switching v5.0 Chapter 8Nil Menon
 
CCNA 2 Routing and Switching v5.0 Chapter 10
CCNA 2 Routing and Switching v5.0 Chapter 10CCNA 2 Routing and Switching v5.0 Chapter 10
CCNA 2 Routing and Switching v5.0 Chapter 10Nil Menon
 
CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11Irsandi Hasan
 
CCNA 1 Routing and Switching v5.0 Chapter 9
CCNA 1 Routing and Switching v5.0 Chapter 9CCNA 1 Routing and Switching v5.0 Chapter 9
CCNA 1 Routing and Switching v5.0 Chapter 9Nil Menon
 
CCNAv5 - S4: Chapter 4 Frame Relay
CCNAv5 - S4: Chapter 4 Frame RelayCCNAv5 - S4: Chapter 4 Frame Relay
CCNAv5 - S4: Chapter 4 Frame RelayVuz Dở Hơi
 
CCNAv5 - S4: Chapter2 Connecting To The Wan
CCNAv5 - S4: Chapter2 Connecting To The WanCCNAv5 - S4: Chapter2 Connecting To The Wan
CCNAv5 - S4: Chapter2 Connecting To The WanVuz Dở Hơi
 
CCNA 1 Routing and Switching v5.0 Chapter 5
CCNA 1 Routing and Switching v5.0 Chapter 5CCNA 1 Routing and Switching v5.0 Chapter 5
CCNA 1 Routing and Switching v5.0 Chapter 5Nil Menon
 
CCNAv5 - S3: Chapter1 Introduction to Scaling Networks
CCNAv5 - S3: Chapter1 Introduction to Scaling NetworksCCNAv5 - S3: Chapter1 Introduction to Scaling Networks
CCNAv5 - S3: Chapter1 Introduction to Scaling NetworksVuz Dở Hơi
 

Tendances (20)

CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3CCNA 1 Routing and Switching v5.0 Chapter 3
CCNA 1 Routing and Switching v5.0 Chapter 3
 
CCNAv5 - S4: Chapter8 monitoring the network
CCNAv5 - S4: Chapter8 monitoring the networkCCNAv5 - S4: Chapter8 monitoring the network
CCNAv5 - S4: Chapter8 monitoring the network
 
CCNA 1 Routing and Switching v5.0 Chapter 2
CCNA 1 Routing and Switching v5.0 Chapter 2CCNA 1 Routing and Switching v5.0 Chapter 2
CCNA 1 Routing and Switching v5.0 Chapter 2
 
CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6CCNA RS_NB - Chapter 6
CCNA RS_NB - Chapter 6
 
CCNA 1 Routing and Switching v5.0 Chapter 11
CCNA 1 Routing and Switching v5.0 Chapter 11CCNA 1 Routing and Switching v5.0 Chapter 11
CCNA 1 Routing and Switching v5.0 Chapter 11
 
CCNA 1 Routing and Switching v5.0 Chapter 10
CCNA 1 Routing and Switching v5.0 Chapter 10CCNA 1 Routing and Switching v5.0 Chapter 10
CCNA 1 Routing and Switching v5.0 Chapter 10
 
CCNAv5 - S1: Chapter 1 Exploring The Network
CCNAv5 - S1: Chapter 1 Exploring The NetworkCCNAv5 - S1: Chapter 1 Exploring The Network
CCNAv5 - S1: Chapter 1 Exploring The Network
 
CCNA RS_ITN - Chapter 7
CCNA RS_ITN - Chapter 7CCNA RS_ITN - Chapter 7
CCNA RS_ITN - Chapter 7
 
CCNA RS_ITN - Chapter 3
CCNA RS_ITN - Chapter 3CCNA RS_ITN - Chapter 3
CCNA RS_ITN - Chapter 3
 
CCNA 2 Routing and Switching v5.0 Chapter 11
CCNA 2 Routing and Switching v5.0 Chapter 11CCNA 2 Routing and Switching v5.0 Chapter 11
CCNA 2 Routing and Switching v5.0 Chapter 11
 
CCNAv5 - S1: Chapter 5 - Ethernet
CCNAv5 - S1: Chapter 5 - EthernetCCNAv5 - S1: Chapter 5 - Ethernet
CCNAv5 - S1: Chapter 5 - Ethernet
 
CCNAv5 - S1: Chapter 3 - Network protocols and communications
CCNAv5 - S1: Chapter 3 - Network protocols and communicationsCCNAv5 - S1: Chapter 3 - Network protocols and communications
CCNAv5 - S1: Chapter 3 - Network protocols and communications
 
CCNA 2 Routing and Switching v5.0 Chapter 8
CCNA 2 Routing and Switching v5.0 Chapter 8CCNA 2 Routing and Switching v5.0 Chapter 8
CCNA 2 Routing and Switching v5.0 Chapter 8
 
CCNA 2 Routing and Switching v5.0 Chapter 10
CCNA 2 Routing and Switching v5.0 Chapter 10CCNA 2 Routing and Switching v5.0 Chapter 10
CCNA 2 Routing and Switching v5.0 Chapter 10
 
CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11CCNA RS_NB - Chapter 11
CCNA RS_NB - Chapter 11
 
CCNA 1 Routing and Switching v5.0 Chapter 9
CCNA 1 Routing and Switching v5.0 Chapter 9CCNA 1 Routing and Switching v5.0 Chapter 9
CCNA 1 Routing and Switching v5.0 Chapter 9
 
CCNAv5 - S4: Chapter 4 Frame Relay
CCNAv5 - S4: Chapter 4 Frame RelayCCNAv5 - S4: Chapter 4 Frame Relay
CCNAv5 - S4: Chapter 4 Frame Relay
 
CCNAv5 - S4: Chapter2 Connecting To The Wan
CCNAv5 - S4: Chapter2 Connecting To The WanCCNAv5 - S4: Chapter2 Connecting To The Wan
CCNAv5 - S4: Chapter2 Connecting To The Wan
 
CCNA 1 Routing and Switching v5.0 Chapter 5
CCNA 1 Routing and Switching v5.0 Chapter 5CCNA 1 Routing and Switching v5.0 Chapter 5
CCNA 1 Routing and Switching v5.0 Chapter 5
 
CCNAv5 - S3: Chapter1 Introduction to Scaling Networks
CCNAv5 - S3: Chapter1 Introduction to Scaling NetworksCCNAv5 - S3: Chapter1 Introduction to Scaling Networks
CCNAv5 - S3: Chapter1 Introduction to Scaling Networks
 

En vedette

VMware vShield - Overview
VMware vShield - OverviewVMware vShield - Overview
VMware vShield - OverviewIrsandi Hasan
 
CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8Irsandi Hasan
 
CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9Irsandi Hasan
 
CCNA RS_ITN - Chapter 5
CCNA RS_ITN - Chapter 5CCNA RS_ITN - Chapter 5
CCNA RS_ITN - Chapter 5Irsandi Hasan
 
CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1Irsandi Hasan
 
CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2Irsandi Hasan
 
CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11Irsandi Hasan
 
ITE v5.0 - Chapter 1
ITE v5.0 - Chapter 1ITE v5.0 - Chapter 1
ITE v5.0 - Chapter 1Irsandi Hasan
 
ITE v5.0 - Chapter 2
ITE v5.0 - Chapter 2ITE v5.0 - Chapter 2
ITE v5.0 - Chapter 2Irsandi Hasan
 
CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7Irsandi Hasan
 
CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3Irsandi Hasan
 
CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4Irsandi Hasan
 
ITE v5.0 - Chapter 12
ITE v5.0 - Chapter 12ITE v5.0 - Chapter 12
ITE v5.0 - Chapter 12Irsandi Hasan
 
CCNA Exploration 4 - Chapter 8
CCNA Exploration 4 - Chapter 8CCNA Exploration 4 - Chapter 8
CCNA Exploration 4 - Chapter 8Irsandi Hasan
 
CCNAv5 - S4: Chapter3 Point to-point Connections
CCNAv5 - S4: Chapter3 Point to-point ConnectionsCCNAv5 - S4: Chapter3 Point to-point Connections
CCNAv5 - S4: Chapter3 Point to-point ConnectionsVuz Dở Hơi
 
ITE v5.0 - Chapter 6
ITE v5.0 - Chapter 6ITE v5.0 - Chapter 6
ITE v5.0 - Chapter 6Irsandi Hasan
 
ITE v5.0 - Chapter 4
ITE v5.0 - Chapter 4ITE v5.0 - Chapter 4
ITE v5.0 - Chapter 4Irsandi Hasan
 
CCNA Exploration 4 - Chapter 1
CCNA Exploration 4 - Chapter 1CCNA Exploration 4 - Chapter 1
CCNA Exploration 4 - Chapter 1Irsandi Hasan
 
CCNA Security - Chapter 4
CCNA Security - Chapter 4CCNA Security - Chapter 4
CCNA Security - Chapter 4Irsandi Hasan
 
CCNA Exploration 4 - Chapter 6
CCNA Exploration 4 - Chapter 6CCNA Exploration 4 - Chapter 6
CCNA Exploration 4 - Chapter 6Irsandi Hasan
 

En vedette (20)

VMware vShield - Overview
VMware vShield - OverviewVMware vShield - Overview
VMware vShield - Overview
 
CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8CCNA RS_NB - Chapter 8
CCNA RS_NB - Chapter 8
 
CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9CCNA RS_NB - Chapter 9
CCNA RS_NB - Chapter 9
 
CCNA RS_ITN - Chapter 5
CCNA RS_ITN - Chapter 5CCNA RS_ITN - Chapter 5
CCNA RS_ITN - Chapter 5
 
CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1CCNA RS_NB - Chapter 1
CCNA RS_NB - Chapter 1
 
CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2CCNA RS_NB - Chapter 2
CCNA RS_NB - Chapter 2
 
CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11CCNA RS_ITN - Chapter 11
CCNA RS_ITN - Chapter 11
 
ITE v5.0 - Chapter 1
ITE v5.0 - Chapter 1ITE v5.0 - Chapter 1
ITE v5.0 - Chapter 1
 
ITE v5.0 - Chapter 2
ITE v5.0 - Chapter 2ITE v5.0 - Chapter 2
ITE v5.0 - Chapter 2
 
CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7CCNA RS_NB - Chapter 7
CCNA RS_NB - Chapter 7
 
CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3CCNA RS_NB - Chapter 3
CCNA RS_NB - Chapter 3
 
CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4CCNA RS_NB - Chapter 4
CCNA RS_NB - Chapter 4
 
ITE v5.0 - Chapter 12
ITE v5.0 - Chapter 12ITE v5.0 - Chapter 12
ITE v5.0 - Chapter 12
 
CCNA Exploration 4 - Chapter 8
CCNA Exploration 4 - Chapter 8CCNA Exploration 4 - Chapter 8
CCNA Exploration 4 - Chapter 8
 
CCNAv5 - S4: Chapter3 Point to-point Connections
CCNAv5 - S4: Chapter3 Point to-point ConnectionsCCNAv5 - S4: Chapter3 Point to-point Connections
CCNAv5 - S4: Chapter3 Point to-point Connections
 
ITE v5.0 - Chapter 6
ITE v5.0 - Chapter 6ITE v5.0 - Chapter 6
ITE v5.0 - Chapter 6
 
ITE v5.0 - Chapter 4
ITE v5.0 - Chapter 4ITE v5.0 - Chapter 4
ITE v5.0 - Chapter 4
 
CCNA Exploration 4 - Chapter 1
CCNA Exploration 4 - Chapter 1CCNA Exploration 4 - Chapter 1
CCNA Exploration 4 - Chapter 1
 
CCNA Security - Chapter 4
CCNA Security - Chapter 4CCNA Security - Chapter 4
CCNA Security - Chapter 4
 
CCNA Exploration 4 - Chapter 6
CCNA Exploration 4 - Chapter 6CCNA Exploration 4 - Chapter 6
CCNA Exploration 4 - Chapter 6
 

Similaire à CCNA RS_NB - Chapter 10

Chapter 05 - Ethernet
Chapter 05 - EthernetChapter 05 - Ethernet
Chapter 05 - EthernetYaser Rahmati
 
Chapter 5 : Ethernet
Chapter 5 : EthernetChapter 5 : Ethernet
Chapter 5 : Ethernetteknetir
 
Ccna v5-S1-Chapter 5
Ccna v5-S1-Chapter 5Ccna v5-S1-Chapter 5
Ccna v5-S1-Chapter 5Hamza Malik
 
Chapter 03 - Network Protocols and Communications
Chapter 03 - Network Protocols and CommunicationsChapter 03 - Network Protocols and Communications
Chapter 03 - Network Protocols and CommunicationsYaser Rahmati
 
Chapter 3 : Network protocols and communications
Chapter 3 : Network protocols and communicationsChapter 3 : Network protocols and communications
Chapter 3 : Network protocols and communicationsteknetir
 
Chapter 12 : Introduction to switched networks
Chapter 12 : Introduction to switched networksChapter 12 : Introduction to switched networks
Chapter 12 : Introduction to switched networksteknetir
 
rsinstructorpptchapter1final-141024021337-conversion-gate01
rsinstructorpptchapter1final-141024021337-conversion-gate01rsinstructorpptchapter1final-141024021337-conversion-gate01
rsinstructorpptchapter1final-141024021337-conversion-gate01Lema John Michael
 
CCNAv5 - S2: Chapter1 Introsuction to switched networks
CCNAv5 - S2: Chapter1 Introsuction to switched networksCCNAv5 - S2: Chapter1 Introsuction to switched networks
CCNAv5 - S2: Chapter1 Introsuction to switched networksVuz Dở Hơi
 
KPUCC-Rs instructor ppt_chapter1_final
KPUCC-Rs instructor ppt_chapter1_finalKPUCC-Rs instructor ppt_chapter1_final
KPUCC-Rs instructor ppt_chapter1_finalFisal Anwari
 
Chapter 01 - Introduction to Switched Networks
Chapter 01 - Introduction to Switched NetworksChapter 01 - Introduction to Switched Networks
Chapter 01 - Introduction to Switched NetworksYaser Rahmati
 
introduction to switched networks - JARINGAN KOMPUTER
introduction to switched networks - JARINGAN KOMPUTERintroduction to switched networks - JARINGAN KOMPUTER
introduction to switched networks - JARINGAN KOMPUTERhasby if
 
Ccna v5-S1-Chapter 3
Ccna v5-S1-Chapter 3Ccna v5-S1-Chapter 3
Ccna v5-S1-Chapter 3Hamza Malik
 
Local Area Network – Wired LAN
Local Area Network – Wired LANLocal Area Network – Wired LAN
Local Area Network – Wired LANRaj vardhan
 
Ccna PPT
Ccna PPTCcna PPT
Ccna PPTAIRTEL
 

Similaire à CCNA RS_NB - Chapter 10 (20)

Chapter 05 - Ethernet
Chapter 05 - EthernetChapter 05 - Ethernet
Chapter 05 - Ethernet
 
Chapter 5 : Ethernet
Chapter 5 : EthernetChapter 5 : Ethernet
Chapter 5 : Ethernet
 
Ccna v5-S1-Chapter 5
Ccna v5-S1-Chapter 5Ccna v5-S1-Chapter 5
Ccna v5-S1-Chapter 5
 
Chapter 03 - Network Protocols and Communications
Chapter 03 - Network Protocols and CommunicationsChapter 03 - Network Protocols and Communications
Chapter 03 - Network Protocols and Communications
 
Chapter 3 : Network protocols and communications
Chapter 3 : Network protocols and communicationsChapter 3 : Network protocols and communications
Chapter 3 : Network protocols and communications
 
Cisco CCNA module 6
Cisco CCNA module 6Cisco CCNA module 6
Cisco CCNA module 6
 
Ethernet
EthernetEthernet
Ethernet
 
Chapter 12 : Introduction to switched networks
Chapter 12 : Introduction to switched networksChapter 12 : Introduction to switched networks
Chapter 12 : Introduction to switched networks
 
rsinstructorpptchapter1final-141024021337-conversion-gate01
rsinstructorpptchapter1final-141024021337-conversion-gate01rsinstructorpptchapter1final-141024021337-conversion-gate01
rsinstructorpptchapter1final-141024021337-conversion-gate01
 
CCNAv5 - S2: Chapter1 Introsuction to switched networks
CCNAv5 - S2: Chapter1 Introsuction to switched networksCCNAv5 - S2: Chapter1 Introsuction to switched networks
CCNAv5 - S2: Chapter1 Introsuction to switched networks
 
KPUCC-Rs instructor ppt_chapter1_final
KPUCC-Rs instructor ppt_chapter1_finalKPUCC-Rs instructor ppt_chapter1_final
KPUCC-Rs instructor ppt_chapter1_final
 
Chapter 01 - Introduction to Switched Networks
Chapter 01 - Introduction to Switched NetworksChapter 01 - Introduction to Switched Networks
Chapter 01 - Introduction to Switched Networks
 
introduction to switched networks - JARINGAN KOMPUTER
introduction to switched networks - JARINGAN KOMPUTERintroduction to switched networks - JARINGAN KOMPUTER
introduction to switched networks - JARINGAN KOMPUTER
 
Ccna routing and_switching_chapter-4-5
Ccna routing and_switching_chapter-4-5Ccna routing and_switching_chapter-4-5
Ccna routing and_switching_chapter-4-5
 
Pub00138 r2 cip_adv_tech_series_ethernetip
Pub00138 r2 cip_adv_tech_series_ethernetipPub00138 r2 cip_adv_tech_series_ethernetip
Pub00138 r2 cip_adv_tech_series_ethernetip
 
Pub00138 r2 cip_adv_tech_series_ethernetip
Pub00138 r2 cip_adv_tech_series_ethernetipPub00138 r2 cip_adv_tech_series_ethernetip
Pub00138 r2 cip_adv_tech_series_ethernetip
 
Ite pc v40_chapter8
Ite pc v40_chapter8Ite pc v40_chapter8
Ite pc v40_chapter8
 
Ccna v5-S1-Chapter 3
Ccna v5-S1-Chapter 3Ccna v5-S1-Chapter 3
Ccna v5-S1-Chapter 3
 
Local Area Network – Wired LAN
Local Area Network – Wired LANLocal Area Network – Wired LAN
Local Area Network – Wired LAN
 
Ccna PPT
Ccna PPTCcna PPT
Ccna PPT
 

Plus de Irsandi Hasan

CCNA v6.0 ITN - Chapter 11
CCNA v6.0 ITN - Chapter 11CCNA v6.0 ITN - Chapter 11
CCNA v6.0 ITN - Chapter 11Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 10
CCNA v6.0 ITN - Chapter 10CCNA v6.0 ITN - Chapter 10
CCNA v6.0 ITN - Chapter 10Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 09
CCNA v6.0 ITN - Chapter 09CCNA v6.0 ITN - Chapter 09
CCNA v6.0 ITN - Chapter 09Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 05
CCNA v6.0 ITN - Chapter 05CCNA v6.0 ITN - Chapter 05
CCNA v6.0 ITN - Chapter 05Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 04
CCNA v6.0 ITN - Chapter 04CCNA v6.0 ITN - Chapter 04
CCNA v6.0 ITN - Chapter 04Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 02
CCNA v6.0 ITN - Chapter 02CCNA v6.0 ITN - Chapter 02
CCNA v6.0 ITN - Chapter 02Irsandi Hasan
 
CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01Irsandi Hasan
 
CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5Irsandi Hasan
 
CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9Irsandi Hasan
 
CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6Irsandi Hasan
 
CCNA RS_ITN - Chapter 4
CCNA RS_ITN - Chapter 4CCNA RS_ITN - Chapter 4
CCNA RS_ITN - Chapter 4Irsandi Hasan
 

Plus de Irsandi Hasan (15)

CCNA v6.0 ITN - Chapter 11
CCNA v6.0 ITN - Chapter 11CCNA v6.0 ITN - Chapter 11
CCNA v6.0 ITN - Chapter 11
 
CCNA v6.0 ITN - Chapter 10
CCNA v6.0 ITN - Chapter 10CCNA v6.0 ITN - Chapter 10
CCNA v6.0 ITN - Chapter 10
 
CCNA v6.0 ITN - Chapter 09
CCNA v6.0 ITN - Chapter 09CCNA v6.0 ITN - Chapter 09
CCNA v6.0 ITN - Chapter 09
 
CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08CCNA v6.0 ITN - Chapter 08
CCNA v6.0 ITN - Chapter 08
 
CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07CCNA v6.0 ITN - Chapter 07
CCNA v6.0 ITN - Chapter 07
 
CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06CCNA v6.0 ITN - Chapter 06
CCNA v6.0 ITN - Chapter 06
 
CCNA v6.0 ITN - Chapter 05
CCNA v6.0 ITN - Chapter 05CCNA v6.0 ITN - Chapter 05
CCNA v6.0 ITN - Chapter 05
 
CCNA v6.0 ITN - Chapter 04
CCNA v6.0 ITN - Chapter 04CCNA v6.0 ITN - Chapter 04
CCNA v6.0 ITN - Chapter 04
 
CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03CCNA v6.0 ITN - Chapter 03
CCNA v6.0 ITN - Chapter 03
 
CCNA v6.0 ITN - Chapter 02
CCNA v6.0 ITN - Chapter 02CCNA v6.0 ITN - Chapter 02
CCNA v6.0 ITN - Chapter 02
 
CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01CCNA v6.0 ITN - Chapter 01
CCNA v6.0 ITN - Chapter 01
 
CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5CCNA RS_NB - Chapter 5
CCNA RS_NB - Chapter 5
 
CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9CCNA RS_ITN - Chapter 9
CCNA RS_ITN - Chapter 9
 
CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6CCNA RS_ITN - Chapter 6
CCNA RS_ITN - Chapter 6
 
CCNA RS_ITN - Chapter 4
CCNA RS_ITN - Chapter 4CCNA RS_ITN - Chapter 4
CCNA RS_ITN - Chapter 4
 

Dernier

"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate AgentsRyan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate AgentsRyan Mahoney
 

Dernier (20)

"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate AgentsRyan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
Ryan Mahoney - Will Artificial Intelligence Replace Real Estate Agents
 

CCNA RS_NB - Chapter 10

  • 1. Chapter 10: Ethernet Network Basics © 2008 Cisco Systems, Inc. All Presentation_ID rights reserved. Cisco Confidential 1
  • 2. Chapter 10 - Objectives Upon completion of this chapter you will be able to:  Describe the operation of the Ethernet sublayers.  Identify the major fields of the Ethernet frame.  Describe the purpose and characteristics of the Ethernet MAC address.  Compare the roles of the MAC address and the IP address.  Describe the purpose of ARP.  Explain how ARP requests impact network and host performance.  Explain basic switching concepts.  Compare fixed configuration and modular switches.  Configure a Layer 3 switch. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 2
  • 3. Chapter 10 10.0 Introduction 10.1 Ethernet Protocol 10.2 Address Resolution Protocol 10.3 LAN Switches 10.4 Summary Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 3
  • 4. 10.1 Ethernet Protocol Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 4
  • 5. Ethernet Operation LLC and MAC Sublayers Ethernet –  One of the most widely used LAN technologies  Operates in the data link layer and the physical layer  Family of networking technologies that are defined in the IEEE 802.2 and 802.3 standards  Supports data bandwidths of 10, 100, 1000, 10,000, 40,000, and 100,000 Mbps (100 Gbps) Ethernet standards –  Define Layer 2 protocols and Layer 1 technologies  Two separate sub layers of the data link layer to operate - Logical link control (LLC) and the MAC sublayers Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 5
  • 6. Ethernet Operation LLC and MAC Sublayers Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 6
  • 7. Ethernet Operation LLC and MAC Sublayers Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 7
  • 8. Ethernet Operation LLC and MAC Sublayers LLC  Handles communication between upper and lower layers  Takes the network protocol data and adds control information to help deliver the packet to the destination MAC  Constitutes the lower sublayer of the data link layer  Implemented by hardware, typically in the computer NIC  Two primary responsibilities: • Data encapsulation • Media access control Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 8
  • 9. Ethernet Operation MAC Sublayer Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 9
  • 10. Ethernet Operation MAC Sublayer Data encapsulation  Frame assembly before transmission and frame disassembly upon reception of a frame  MAC layer adds a header and trailer to the network layer PDU Provides three primary functions:  Frame delimiting – identifies a group of bits that make up a frame, synchronization between the transmitting and receiving nodes  Addressing – each Ethernet header added in the frame contains the physical address (MAC address) that enables a frame to be delivered to a destination node  Error detection - each Ethernet frame contains a trailer with a cyclic redundancy check (CRC) of the frame contents Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 10
  • 11. Ethernet Operation MAC Sublayer Media Access Control  Responsible for the placement of frames on the media and the removal of frames from the media  Communicates directly with the physical layer  If multiple devices on a single medium attempt to forward data simultaneously, the data will collide resulting in corrupted, unusable data  Ethernet provides a method for controlling how the nodes share access through the use a Carrier Sense Multiple Access (CSMA) technology Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 11
  • 12. Ethernet Operation Media Access Control Carrier Sense Multiple Access (CSMA) process  Used to first detect if the media is carrying a signal  If no carrier signal is detected, the device transmits its data  If two devices transmit at the same time - data collision Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 12
  • 13. Ethernet Operation Media Access Control Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 13
  • 14. Ethernet Operation Media Access Control The two commonly used methods are: CSMA/Collision Detection  The device monitors the media for the presence of a data signal  If a data signal is absent, indicating that the media is free, the device transmits the data  If signals are then detected that show another device was transmitting at the same time, all devices stop sending and try again later  While Ethernet networks are designed with CSMA/CD technology, with today’s intermediate devices, collisions do not occur and the processes utilized by CSMA/CD are really unnecessary  Wireless connections in a LAN environment still have to take collisions into account Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 14
  • 15. Ethernet Operation Media Access Control The two commonly used methods are: CSMA/Collision Avoidance (CSMA/CA) media access method  Device examines the media for the presence of data signal-if the media is free, the device sends a notification across the media of its intent to use it  The device then sends the data.  Used by 802.11 wireless networking technologies Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 15
  • 16. Ethernet Operation Media Access Control Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 16
  • 17. Ethernet Operation MAC Address: Ethernet Identity  Layer 2 Ethernet MAC address is a 48-bit binary value expressed as 12 hexadecimal digits  IEEE requires a vendor to follow two simple rules: • Must use that vendor's assigned OUI as the first 3 bytes • All MAC addresses with the same OUI must be assigned a unique value in the last 3 bytes Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 17
  • 18. Ethernet Operation Frame Processing  MAC addresses assigned to workstations, servers, printers, switches, and routers  Example MACs: 00-05-9A-3C-78-00, 00:05:9A:3C:78:00, or 0005.9A3C.7800.  Forwarded message to an Ethernet network, attaches header information to the packet, contains the source and destination MAC address  Each NIC views information to see if the destination MAC address in the frame matches the device’s physical MAC address stored in RAM  No match, the device discards the frame  Matches the destination MAC of the frame, the NIC passes the frame up the OSI layers, where the decapsulation process takes place Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 18
  • 19. Ethernet Frame Attributes Ethernet Encapsulation  Early versions of Ethernet were relatively slow at 10 Mbps  Now operate at 10 Gigabits per second and faster  Ethernet frame structure adds headers and trailers around the Layer 3 PDU to encapsulate the message being sent Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 19
  • 20. Ethernet Frame Attributes Ethernet Frame Size  Ethernet II and IEEE 802.3 standards define the minimum frame size as 64 bytes and the maximum as 1518 bytes  Less than 64 bytes in length is considered a "collision fragment" or "runt frame”  If size of a transmitted frame is less than the minimum or greater than the maximum, the receiving device drops the frame  At the physical layer, different versions of Ethernet vary in their method for detecting and placing data on the media Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 20
  • 21. Ethernet Frame Attributes Ethernet Frame Size The figure displays the fields contained in the 802.1Q VLAN tag Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 21
  • 22. Ethernet Frame Attributes Introduction to the Ethernet Frame Preamble and Start Frame Delimiter Fields Used for synchronization between the sending and receiving devices Length/Type Field Defines the exact length of the frame's data field/ describes which protocol is implemented Data and Pad Fields Contain the encapsulated data from a higher layer, an IPv4 packet Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 22
  • 23. Ethernet Frame Attributes Introduction to the Ethernet Frame Frame Check Sequence Field Used to detect errors in a frame with cyclic redundancy check, if calculations match at source and receiver, no error occurred. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 23
  • 24. Ethernet MAC MAC Addresses and Hexadecimal Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 24
  • 25. Ethernet MAC MAC Address Representations Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 25
  • 26. Ethernet MAC Unicast MAC Address Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 26
  • 27. Ethernet MAC Broadcast MAC Address Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 27
  • 28. Ethernet MAC Multicast MAC Address Multicast MAC address is a special value that begins with 01-00-5E in hexadecimal Range of IPV4 multicast addresses is 224.0.0.0 to 239.255.255.255 Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 28
  • 29. MAC and IP MAC and IP MAC address  This address does not change  Similar to the name of a person  Known as physical address because physically assigned to the host NIC IP address  Similar to the address of a person  Based on where the host is actually located  Known as a logical address because assigned logically  Assigned to each host by a network administrator Both the physical MAC and logical IP addresses are required for a computer to communicate just like both the name and address of a person are required to send a letter Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 29
  • 30. Ethernet MAC End-to-End Connectivity, MAC, and IP Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 30
  • 31. Ethernet MAC End-to-End Connectivity, MAC, and IP Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 31
  • 32. 10.2 Address Resolution Protocol Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 32
  • 33. ARP Introduction to ARP ARP Purpose –  Sending node needs a way to find the MAC address of the destination for a given Ethernet link ARP protocol provides two basic functions:  Resolving IPv4 addresses to MAC addresses  Maintaining a table of mappings Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 33
  • 34. ARP ARP Functions/Operation ARP Table –  Used to find the data link layer address that is mapped to the destination IPv4 address  As a node receives frames from the media, it records the source IP and MAC address as a mapping in the ARP table ARP request –  Layer 2 broadcast to all devices on the Ethernet LAN  The node that matches the IP address in the broadcast will reply  If no device responds to the ARP request, the packet is dropped because a frame cannot be created Static map entries can be entered in an ARP table, but this is rarely done Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 34
  • 35. ARP ARP Functions/Operation Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 35
  • 36. ARP ARP Functions/Operation Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 36
  • 37. ARP ARP Functions/Operation Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 37
  • 38. ARP ARP Functions/Operation Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 38
  • 39. ARP ARP Functions/Operation Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 39
  • 40. ARP ARP Role in Remote Communication  If the destination IPv4 host is on the local network, the frame will use the MAC address of this device as the destination MAC address  If the destination IPv4 host is not on the local network, the source uses the ARP process to determine a MAC address for the router interface serving as the gateway  In the event that the gateway entry is not in the table, an ARP request is used to retrieve the MAC address associated with the IP address of the router interface Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 40
  • 41. ARP Removing Entries from an ARP Table  ARP cache timer removes ARP entries that have not been used for a specified period of time  Commands may also be used to manually remove all or some of the entries in the ARP table Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 41
  • 42. ARP ARP Tables on Networking Devices Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 42
  • 43. ARP Issues How ARP Can Create Problems Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 43
  • 44. ARP Issues Mitigating ARP Problems Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 44
  • 45. 10.3 LAN Switches Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 45
  • 46. Switching Switch Port Fundamentals Layer 2 LAN switch  Connects end devices to a central intermediate device on most Ethernet networks  Performs switching and filtering based only on the MAC address  Builds a MAC address table that it uses to make forwarding decisions  Depends on routers to pass data between IP subnetworks Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 46
  • 47. Switching Switch MAC Address Table 1. The switch receives a broadcast frame from PC 1 on Port 1. 2. The switch enters the source MAC address and the switch port that received the frame into the address table. 3. Because the destination address is a broadcast, the switch floods the frame to all ports, except the port on which it received the frame. 4. The destination device replies to the broadcast with a unicast frame addressed to PC 1. Continued… Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 47
  • 48. Switching Switch MAC Address Table 5. The switch enters the source MAC address of PC 2 and the port number of the switch port that received the frame into the address table. The destination address of the frame and its associated port is found in the MAC address table. 6. The switch can now forward frames between source and destination devices without flooding, because it has entries in the address table that identify the associated ports. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 48
  • 49. Switching Duplex Settings Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 49
  • 50. Switching Auto-MDIX Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 50
  • 51. Switching Frame Forwarding Methods on Cisco Switches Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 51
  • 52. Switching Cut-through Switching Two variants: Fast-forward switching: • Lowest level of latency immediately forwards a packet after reading the destination address, typical cut-through method of switching Fragment-free switching: • Switch stores the first 64 bytes of the frame before forwarding, most network errors and collisions occur during the first 64 bytes Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 52
  • 53. Switching Memory Buffering on Switches Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 53
  • 54. Fixed or Modular Fixed verses Modular Configuration Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 54
  • 55. Fixed or Modular Fixed verses Modular Configuration Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 55
  • 56. Fixed or Modular Fixed Configuration Cisco Switches Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 56
  • 57. Fixed or Modular Modular Configuration Cisco Switches Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 57
  • 58. Fixed or Modular Module Options for Cisco Switch Slots Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 58
  • 59. Layer 3 Switching Layer 2 verses Layer 3 Switching Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 59
  • 60. Layer 3 Switching Cisco Express Forwarding Two main components:  Forwarding information base (FIB) • Conceptually similar to a routing table • A networking device uses this lookup table to make destination-based switching decisions during Cisco Express Forwarding operation • Updated when changes occur in the network and contains all routes known at the time  Adjacency tables • Maintain layer 2 next-hop addresses for all FIB entries Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 60
  • 61. Layer 3 Switching Cisco Express Forwarding Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 61
  • 62. Layer 3 Switching Types of Layer 3 Interfaces The major types of Layer 3 interfaces are:  Switch Virtual Interface (SVI) – Logical interface on a switch associated with a virtual local area network (VLAN).  Routed Port – Physical port on a Layer 3 switch configured to act as a router port. Configure routed ports by putting the interface into Layer 3 mode with the no switchport interface configuration command.  Layer 3 EtherChannel – Logical interface on a Cisco device associated with a bundle of routed ports. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 62
  • 63. Layer 3 Switching Configuring a Routed Port on a Layer 3 Switch Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 63
  • 64. Ethernet Summary  Ethernet is the most widely used LAN technology used today.  Ethernet standards define both the Layer 2 protocols and the Layer 1 technologies.  The Ethernet frame structure adds headers and trailers around the Layer 3 PDU to encapsulate the message being sent.  As an implementation of the IEEE 802.2/3 standards, the Ethernet frame provides MAC addressing and error checking.  Replacing hubs with switches in the local network has reduced the probability of frame collisions in half-duplex links. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 64
  • 65. Ethernet Summary  The Layer 2 addressing provided by Ethernet supports unicast, multicast, and broadcast communications.  Ethernet uses the Address Resolution Protocol to determine the MAC addresses of destinations and map them against known Network layer addresses.  Each node on an IP network has both a MAC address and an IP address.  The ARP protocol resolves IPv4 addresses to MAC addresses and maintains a table of mappings.  A Layer 2 switch builds a MAC address table that it uses to make forwarding decisions. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 65
  • 66. Ethernet Summary  Layer 3 switches are also capable of performing Layer 3 routing functions, reducing the need for dedicated routers on a LAN.  Layer 3 switches have specialized switching hardware so they can typically route data as quickly as they can switch. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 66
  • 67. Presentation_ID © 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 67