SlideShare uma empresa Scribd logo
1 de 36
1. M.Usman khan
2. Zameer Abbas
3. Sulaiman Ahmad Khan
GROUP MEMBERS
TOPIC
Switching Concepts
OVERVIEW
• Routers
• Switches
• Bridges
• Hub
• Repeaters
BRIDGES
• A bridge is a Layer 2 device used to divide, or segment, a network.
• A bridge is capable of collecting and selectively passing data frames
between two network segments.
• Bridges do this by learning the MAC address of all devices on each
connected segment. Using this information, the bridge builds a
bridging table and forwards or blocks traffic based on that table.
• This results in smaller collision domains and greater network
efficiency.
• Bridges do NOT restrict broadcast traffic.
BRIDGE
SWITCHES
• Switches create a virtual circuit between two connected devices,
establishing a dedicated communication path between two devices.
• Switches on the network provide micro segmentation.
• This allows maximum utilization of the available bandwidth.
• A switch is also able to facilitate multiple, simultaneous virtual circuit
connections.
• Broadcast frames to all connected devices on the network.
SWITCH
ROUTER
• A router is a Layer 3 device.
• Used to “route” traffic between two or more Layer 3 networks.
• Routers make decisions based on groups of network addresses, or
classes, as opposed to individual Layer 2 MAC addresses.
• Routers use routing tables to record the Layer 3 addresses of the
networks that are directly connected to the local interfaces and
network paths learned from neighboring routers.
• Routers are not compelled to forward broadcasts.
HALF-DUPLEX
• Using half-duplex, a host could either transmit or receive at one time,
but not both.
• If the network is already in use, the transmission is delayed.
• When a collision occurs, the host that first detects the collision will
send out a jam signal to the other hosts.
• Upon receiving the jam signal, each host will stop sending data, then
wait for a random period of time before attempting to retransmit.
• The back-off algorithm generates this random delay.
• As more hosts are added to the network and begin transmitting,
collisions are more likely to occur.
DUPLEX TRANSMISSIONS
• Simplex Transmission: One way and one way only.
• One way street
• Half-duplex Transmission: Either way, but only one way at a time.
• Two way street, but only one way at a time (land slide).
• Full-duplex Transmission: Both ways at the same time.
• Two way street
SENDING AND RECEIVING ETHERNET
FRAMES VIA A HUB
• The hub will flood it out all ports except for the incoming port.
• Hub is a layer 1 device.
• A hub does NOT look at layer 2 addresses, so it is fast in transmitting
data.
• Disadvantage with hubs: A hub or series of hubs is a single collision
domain.
• A collision will occur if any two or more devices transmit at the same
time within the collision domain.
SENDING AND RECEIVING ETHERNET
FRAMES ON A BUS
• When an Ethernet frame is sent out on the “bus” all devices on the
bus receive it.
• Each NIC card compares its own MAC address with the Destination MAC
Address.
• If it matches, it copies in the rest of the frame.
• If it does NOT match, it ignores the rest of the frame.
• Unless you are running a Sniffer program
NEXT
ETHERNET/802.3 LAN DEVELOPMENT
• Distance limitations
• Ethernet is fundamentally a shared technology where all users on a given
LAN segment compete for the same available bandwidth.
• This situation is analogous to a number of cars all trying to access a one-
lane road at the same time.
• Because the road has only one lane, only one car can access it at a time.
• The introduction of hubs into a network resulted in more users competing for
the same bandwidth.
• Collisions are a by-product of Ethernet networks.
ELEMENTS OF ETHERNET 802.3 NETWORKS
• Broadcast data frame delivery of Ethernet/802.3
• The carrier sense multiple access/collision detect (CSMA/CD) method
allows only one station to transmit at a time.
• Multimedia applications with higher bandwidth demand such as video
and the Internet, coupled with the broadcast nature of Ethernet, can
create network congestion.
• Normal latency as the frames travel across the layers
• Extending the distances and increasing latency of the Ethernet/802.3
LANs by using Layer 1 repeaters.
NETWORK LATENCY
• Latency, or delay, is the time a frame or a packet takes to travel
from the source station to the final destination.
• It is important to quantify the total latency of the path between the
source and the destination for LANs and WANs.
• Latency has at least three sources:
• First, there is the time it takes the source NIC to place voltage
pulses on the wire and the time it takes the receiving NIC to
interpret these pulses. This is sometimes called NIC delay.
• Second, there is the actual propagation delay as the signal
takes time to travel along the cable.
• Third, latency is added according to which networking
devices, whether they are Layer 1, Layer 2, or Layer 3, are
added to the path between the two communicating computers.
SENDING AND RECEIVING ETHERNET
FRAMES VIA A SWITCH
• Switches are also known as learning bridges or learning switches.
• A switch has a source address table in cache (RAM) where it stores
source MAC address after it learns about them.
• A switch receives an Ethernet frame it searches the source address
table for the Destination MAC address.
• If it finds a match, it filters the frame by only sending it out that port.
• If there is not a match if floods it out all ports.
COLLISION DOMAINS
• When there is only one device on a switch port, the collision domain is only between
the PC and the switch.
• With a full-duplex PC and switch port, there will be no collision, since the devices
and the medium can send and receive at the same time.
TRANSPARENT BRIDGE PROCESS - JEFF DOYLE
LAN SEGMENTATION WITH ROUTERS
• Routers provide segmentation of networks, adding a latency factor of
20% to 30% over a switched network.
• This increased latency is because a router operates at the network
layer and uses the IP address to determine the best path to the
destination node.
• Bridges and switches provide segmentation within a single network or
subnetwork.
• Routers provide connectivity between networks and
subnetworks.
• Routers also do not forward broadcasts while switches and
bridges must forward broadcast frames.
LAN SEGMENTATION WITH ROUTERS
SYMMETRIC AND ASYMMETRIC SWITCHING
NEXT
ETHERNET SWITCH LATENCY
• Latency is the period of time from when the beginning of a frame
enters to when the end of the frame exits the switch.
• Latency is directly related to the configured switching process and
volume of traffic.
MEMORY BUFFERING
• An Ethernet switch may use a buffering technique to store and forward
frames.
• Buffering may also be used when the destination port is busy.
• The area of memory where the switch stores the data is called the
memory buffer.
• This memory buffer can use two methods for forwarding frame:
• port-based memory buffering
• shared memory buffering
• In port-based memory buffering frames are stored in queues that are
linked to specific incoming ports.
• Shared memory buffering deposits all frames into a common memory
buffer which all the ports on the switch share.
SWITCHING METHODS
1. Store-and-forward – The entire frame is received before any
forwarding takes place.
• The destination and source addresses are read and filters
are applied before the frame is forwarded.
• CRC Check done
2. Cut-through – The frame is forwarded through the switch
before the entire frame is received.
• This mode decreases the latency of the transmission, but
also reduces error detection.
• In1900 and 2800 series switches, this is configurable,
otherwise depends on the model of the switch.
CUT-THROUGH
• Fast-forward – Offers the lowest level of latency.
• Fast-forward switching immediately forwards a packet after reading
the destination address.
• There may be times when packets are relayed with errors.
• Although this occurs infrequently and the destination network adapter
will discard the faulty packet upon receipt.
• Fragment-free – Fragment-free switching filters out collision fragments before
• forwarding begins.
• Collision fragments are the majority of packet errors.
• In a properly functioning network, collision fragments must be smaller than 64
bytes.
• Anything greater than 64 bytes is a valid packet and is usually received without
error.
• Fragment-free switching waits until the packet is determined not to be a
collision fragment before forwarding.
. Adaptive cut-through
• In this mode, the switch uses cut-through until it detects a given
number of errors.
• Once the error threshold is reached, the switch changes to store-and-
forward mode.
USING HUBS
• Layer 1 devices
• Inexpensive
• In one port, out the others
• One collision domain
• One broadcast domain
SINGLE HUB
USING SWITCHES
• Layer 2 devices
• Layer 2 filtering based on Destination MAC addresses and Source
Address Table
• One collision domain per port
• One broadcast domain across all switches
INTRODUCING VLANS
• VLAN = Subnet
• VLANs create separate broadcast domains within the switch.
• Routers are needed to pass information between different VLANs
INTER-VLAN TRAFFIC
Remember that VLAN IDs (numbers) are assigned to the switch port and
not to the host. (Port-centric VLAN switches)
2. Be sure to have all of the hosts on the same subnet belong to the
same VLAN, or you will have problems.
• Hosts on subnet 172.30.1.0/24 - VLAN 1
• Hosts on subnet 172.30.2.0/24 - VLAN 2
INTER-VLAN ROUTING NEEDS A ROUTER
• A router is need to route traffic between VLANs (VLAN = Subnet).
• There are various methods of doing this including Router-on-a-stick
with trunking (more than one VLAN on the link).
• This will be discussed later when we get to the chapter on VLANs and
Inter-VLAN Routing.
END

Mais conteúdo relacionado

Mais procurados

Computer network switches & their structures
Computer network switches & their structuresComputer network switches & their structures
Computer network switches & their structuresSweta Kumari Barnwal
 
Introduction to switching & circuit switching
Introduction to switching & circuit switchingIntroduction to switching & circuit switching
Introduction to switching & circuit switchingDr Rajiv Srivastava
 
Introduction to network switches
Introduction to network switchesIntroduction to network switches
Introduction to network switchesNetProtocol Xpert
 
Internetworking devices
Internetworking devicesInternetworking devices
Internetworking devicesOnline
 
Open shortest path first (ospf)
Open shortest path first (ospf)Open shortest path first (ospf)
Open shortest path first (ospf)Respa Peter
 
QOS (Quality of Services) - Computer Networks
 QOS (Quality of Services) - Computer Networks QOS (Quality of Services) - Computer Networks
QOS (Quality of Services) - Computer NetworksIIIT Manipur
 
Packet switching
Packet switchingPacket switching
Packet switchingasimnawaz54
 
difference between hub, bridge, switch and router
difference between hub, bridge, switch and routerdifference between hub, bridge, switch and router
difference between hub, bridge, switch and routerAkmal Cikmat
 
networking device router,switches & bridges
networking device router,switches & bridgesnetworking device router,switches & bridges
networking device router,switches & bridgeskeyur Nandaniya
 
Networking and Internetworking Devices
Networking and Internetworking DevicesNetworking and Internetworking Devices
Networking and Internetworking Devices21viveksingh
 
Classless inter domain routing
Classless inter domain routingClassless inter domain routing
Classless inter domain routingVikash Gangwar
 
Transmission media
Transmission mediaTransmission media
Transmission mediakinish kumar
 

Mais procurados (20)

Network switch
Network switchNetwork switch
Network switch
 
Computer network switches & their structures
Computer network switches & their structuresComputer network switches & their structures
Computer network switches & their structures
 
Introduction to switching & circuit switching
Introduction to switching & circuit switchingIntroduction to switching & circuit switching
Introduction to switching & circuit switching
 
Introduction to network switches
Introduction to network switchesIntroduction to network switches
Introduction to network switches
 
Hub,Switch.Router
Hub,Switch.RouterHub,Switch.Router
Hub,Switch.Router
 
Media Access Control
Media Access ControlMedia Access Control
Media Access Control
 
WLAN
WLANWLAN
WLAN
 
Vlan
Vlan Vlan
Vlan
 
Internetworking devices
Internetworking devicesInternetworking devices
Internetworking devices
 
Open shortest path first (ospf)
Open shortest path first (ospf)Open shortest path first (ospf)
Open shortest path first (ospf)
 
QOS (Quality of Services) - Computer Networks
 QOS (Quality of Services) - Computer Networks QOS (Quality of Services) - Computer Networks
QOS (Quality of Services) - Computer Networks
 
Circuit Switching
Circuit SwitchingCircuit Switching
Circuit Switching
 
Hub vs-switch
Hub vs-switchHub vs-switch
Hub vs-switch
 
Packet switching
Packet switchingPacket switching
Packet switching
 
difference between hub, bridge, switch and router
difference between hub, bridge, switch and routerdifference between hub, bridge, switch and router
difference between hub, bridge, switch and router
 
networking device router,switches & bridges
networking device router,switches & bridgesnetworking device router,switches & bridges
networking device router,switches & bridges
 
Networking and Internetworking Devices
Networking and Internetworking DevicesNetworking and Internetworking Devices
Networking and Internetworking Devices
 
Networking devices
Networking devicesNetworking devices
Networking devices
 
Classless inter domain routing
Classless inter domain routingClassless inter domain routing
Classless inter domain routing
 
Transmission media
Transmission mediaTransmission media
Transmission media
 

Destaque

Network switches, functions & role in networks
Network switches, functions & role in networksNetwork switches, functions & role in networks
Network switches, functions & role in networksIT Tech
 
Expl sw chapter_02_switches_part_2
Expl sw chapter_02_switches_part_2Expl sw chapter_02_switches_part_2
Expl sw chapter_02_switches_part_2aghacrom
 
Infographic: Journey through a DMP pixel
Infographic: Journey through a DMP pixel Infographic: Journey through a DMP pixel
Infographic: Journey through a DMP pixel Switch Concepts
 
Switched networks (LAN Switching – Switches)
Switched networks (LAN Switching – Switches)Switched networks (LAN Switching – Switches)
Switched networks (LAN Switching – Switches)Fleurati
 
Layer3protocols
Layer3protocolsLayer3protocols
Layer3protocolsassinha
 
Switching characteristics of power electronic devices
Switching characteristics of power electronic devicesSwitching characteristics of power electronic devices
Switching characteristics of power electronic devicesSunny Purani
 
11 Trends That Are Changing the Marketing World
11 Trends That Are Changing the Marketing World11 Trends That Are Changing the Marketing World
11 Trends That Are Changing the Marketing WorldInside Social
 
Reference frame theory
Reference frame theoryReference frame theory
Reference frame theoryRamesh Babu
 
Switching techniques
Switching techniquesSwitching techniques
Switching techniquesGupta6Bindu
 
Switching Techniques
Switching TechniquesSwitching Techniques
Switching Techniquestameemyousaf
 
The Future of Marketing 2016: New Roles, and Trends
The Future of Marketing 2016: New Roles, and Trends The Future of Marketing 2016: New Roles, and Trends
The Future of Marketing 2016: New Roles, and Trends Mathew Sweezey
 
Circuit switching packet switching
Circuit switching  packet  switchingCircuit switching  packet  switching
Circuit switching packet switchingSneha Dalvi
 
Computer networking devices
Computer networking devicesComputer networking devices
Computer networking devicesRajesh Sadhukha
 

Destaque (16)

Network switches, functions & role in networks
Network switches, functions & role in networksNetwork switches, functions & role in networks
Network switches, functions & role in networks
 
Chap 8 switching
Chap 8 switchingChap 8 switching
Chap 8 switching
 
Switching
SwitchingSwitching
Switching
 
Expl sw chapter_02_switches_part_2
Expl sw chapter_02_switches_part_2Expl sw chapter_02_switches_part_2
Expl sw chapter_02_switches_part_2
 
Infographic: Journey through a DMP pixel
Infographic: Journey through a DMP pixel Infographic: Journey through a DMP pixel
Infographic: Journey through a DMP pixel
 
Switched networks (LAN Switching – Switches)
Switched networks (LAN Switching – Switches)Switched networks (LAN Switching – Switches)
Switched networks (LAN Switching – Switches)
 
Layer3protocols
Layer3protocolsLayer3protocols
Layer3protocols
 
Switching characteristics of power electronic devices
Switching characteristics of power electronic devicesSwitching characteristics of power electronic devices
Switching characteristics of power electronic devices
 
11 Trends That Are Changing the Marketing World
11 Trends That Are Changing the Marketing World11 Trends That Are Changing the Marketing World
11 Trends That Are Changing the Marketing World
 
Reference frame theory
Reference frame theoryReference frame theory
Reference frame theory
 
Switching techniques
Switching techniquesSwitching techniques
Switching techniques
 
Switching seminar ppt
Switching seminar pptSwitching seminar ppt
Switching seminar ppt
 
Switching Techniques
Switching TechniquesSwitching Techniques
Switching Techniques
 
The Future of Marketing 2016: New Roles, and Trends
The Future of Marketing 2016: New Roles, and Trends The Future of Marketing 2016: New Roles, and Trends
The Future of Marketing 2016: New Roles, and Trends
 
Circuit switching packet switching
Circuit switching  packet  switchingCircuit switching  packet  switching
Circuit switching packet switching
 
Computer networking devices
Computer networking devicesComputer networking devices
Computer networking devices
 

Semelhante a Switching Concepts presentation

Multiple Access Protocal
Multiple Access ProtocalMultiple Access Protocal
Multiple Access Protocaltes31
 
Unit-2 Media Access Protocols.pdf
Unit-2 Media Access Protocols.pdfUnit-2 Media Access Protocols.pdf
Unit-2 Media Access Protocols.pdfSmtPArunaKumari
 
CSC 424 -Lecture 5n8 2022.pptx
CSC 424 -Lecture 5n8 2022.pptxCSC 424 -Lecture 5n8 2022.pptx
CSC 424 -Lecture 5n8 2022.pptxNoraNjepuome3
 
Internetworking devices(networking)
Internetworking devices(networking)Internetworking devices(networking)
Internetworking devices(networking)welcometofacebook
 
Media Access Control
Media Access ControlMedia Access Control
Media Access ControlHusnainHadi
 
1 networking devices 2014
1 networking devices 20141 networking devices 2014
1 networking devices 2014Zuhaib Zaroon
 
Networking devices
Networking devicesNetworking devices
Networking devicesrupinderj
 
Routing and switching
Routing and switchingRouting and switching
Routing and switchingAashif Raza
 
MEDIUM-ACCESS CONTROL SUB LAYER.ppt
MEDIUM-ACCESS CONTROL SUB LAYER.pptMEDIUM-ACCESS CONTROL SUB LAYER.ppt
MEDIUM-ACCESS CONTROL SUB LAYER.pptDrTThendralCompSci
 
12 ipt 0303 transmitting and receiving
12 ipt 0303   transmitting and receiving12 ipt 0303   transmitting and receiving
12 ipt 0303 transmitting and receivingctedds
 
Networkingdevices 120505003202-phpapp02
Networkingdevices 120505003202-phpapp02Networkingdevices 120505003202-phpapp02
Networkingdevices 120505003202-phpapp02Aman Jaiswal
 
CN Unit 2 - cs8591.pptx
CN Unit 2 - cs8591.pptxCN Unit 2 - cs8591.pptx
CN Unit 2 - cs8591.pptxPondinesh2
 
Ccna day4-140715152437-phpapp01
Ccna day4-140715152437-phpapp01Ccna day4-140715152437-phpapp01
Ccna day4-140715152437-phpapp01Sachin Morya
 

Semelhante a Switching Concepts presentation (20)

Switching
SwitchingSwitching
Switching
 
Multiple Access Protocal
Multiple Access ProtocalMultiple Access Protocal
Multiple Access Protocal
 
Unit-2 Media Access Protocols.pdf
Unit-2 Media Access Protocols.pdfUnit-2 Media Access Protocols.pdf
Unit-2 Media Access Protocols.pdf
 
CSC 424 -Lecture 5n8 2022.pptx
CSC 424 -Lecture 5n8 2022.pptxCSC 424 -Lecture 5n8 2022.pptx
CSC 424 -Lecture 5n8 2022.pptx
 
Internetworking devices(networking)
Internetworking devices(networking)Internetworking devices(networking)
Internetworking devices(networking)
 
Media Access Control
Media Access ControlMedia Access Control
Media Access Control
 
Network devices
Network devicesNetwork devices
Network devices
 
1 networking devices 2014
1 networking devices 20141 networking devices 2014
1 networking devices 2014
 
Networking devices
Networking devicesNetworking devices
Networking devices
 
Chapter 4
Chapter 4Chapter 4
Chapter 4
 
Routing and switching
Routing and switchingRouting and switching
Routing and switching
 
MEDIUM-ACCESS CONTROL SUB LAYER.ppt
MEDIUM-ACCESS CONTROL SUB LAYER.pptMEDIUM-ACCESS CONTROL SUB LAYER.ppt
MEDIUM-ACCESS CONTROL SUB LAYER.ppt
 
12 ipt 0303 transmitting and receiving
12 ipt 0303   transmitting and receiving12 ipt 0303   transmitting and receiving
12 ipt 0303 transmitting and receiving
 
Networkingdevices 120505003202-phpapp02
Networkingdevices 120505003202-phpapp02Networkingdevices 120505003202-phpapp02
Networkingdevices 120505003202-phpapp02
 
CN Unit 2 - cs8591.pptx
CN Unit 2 - cs8591.pptxCN Unit 2 - cs8591.pptx
CN Unit 2 - cs8591.pptx
 
Ccna day4
Ccna day4Ccna day4
Ccna day4
 
CCNA PPT
CCNA PPTCCNA PPT
CCNA PPT
 
Ccna day4-140715152437-phpapp01
Ccna day4-140715152437-phpapp01Ccna day4-140715152437-phpapp01
Ccna day4-140715152437-phpapp01
 
Ccna day4
Ccna day4Ccna day4
Ccna day4
 
Ccna day4
Ccna day4Ccna day4
Ccna day4
 

Último

ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
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
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
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
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
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
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
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
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesEnergy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesShubhangi Sonawane
 

Último (20)

ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
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
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
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
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
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
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
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.
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural ResourcesEnergy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
Energy Resources. ( B. Pharmacy, 1st Year, Sem-II) Natural Resources
 

Switching Concepts presentation

  • 1. 1. M.Usman khan 2. Zameer Abbas 3. Sulaiman Ahmad Khan GROUP MEMBERS
  • 3. OVERVIEW • Routers • Switches • Bridges • Hub • Repeaters
  • 4. BRIDGES • A bridge is a Layer 2 device used to divide, or segment, a network. • A bridge is capable of collecting and selectively passing data frames between two network segments. • Bridges do this by learning the MAC address of all devices on each connected segment. Using this information, the bridge builds a bridging table and forwards or blocks traffic based on that table. • This results in smaller collision domains and greater network efficiency. • Bridges do NOT restrict broadcast traffic.
  • 6. SWITCHES • Switches create a virtual circuit between two connected devices, establishing a dedicated communication path between two devices. • Switches on the network provide micro segmentation. • This allows maximum utilization of the available bandwidth. • A switch is also able to facilitate multiple, simultaneous virtual circuit connections. • Broadcast frames to all connected devices on the network.
  • 8. ROUTER • A router is a Layer 3 device. • Used to “route” traffic between two or more Layer 3 networks. • Routers make decisions based on groups of network addresses, or classes, as opposed to individual Layer 2 MAC addresses. • Routers use routing tables to record the Layer 3 addresses of the networks that are directly connected to the local interfaces and network paths learned from neighboring routers. • Routers are not compelled to forward broadcasts.
  • 9. HALF-DUPLEX • Using half-duplex, a host could either transmit or receive at one time, but not both. • If the network is already in use, the transmission is delayed. • When a collision occurs, the host that first detects the collision will send out a jam signal to the other hosts. • Upon receiving the jam signal, each host will stop sending data, then wait for a random period of time before attempting to retransmit. • The back-off algorithm generates this random delay. • As more hosts are added to the network and begin transmitting, collisions are more likely to occur.
  • 10. DUPLEX TRANSMISSIONS • Simplex Transmission: One way and one way only. • One way street • Half-duplex Transmission: Either way, but only one way at a time. • Two way street, but only one way at a time (land slide). • Full-duplex Transmission: Both ways at the same time. • Two way street
  • 11. SENDING AND RECEIVING ETHERNET FRAMES VIA A HUB • The hub will flood it out all ports except for the incoming port. • Hub is a layer 1 device. • A hub does NOT look at layer 2 addresses, so it is fast in transmitting data. • Disadvantage with hubs: A hub or series of hubs is a single collision domain. • A collision will occur if any two or more devices transmit at the same time within the collision domain.
  • 12. SENDING AND RECEIVING ETHERNET FRAMES ON A BUS • When an Ethernet frame is sent out on the “bus” all devices on the bus receive it. • Each NIC card compares its own MAC address with the Destination MAC Address. • If it matches, it copies in the rest of the frame. • If it does NOT match, it ignores the rest of the frame. • Unless you are running a Sniffer program
  • 13. NEXT
  • 14. ETHERNET/802.3 LAN DEVELOPMENT • Distance limitations • Ethernet is fundamentally a shared technology where all users on a given LAN segment compete for the same available bandwidth. • This situation is analogous to a number of cars all trying to access a one- lane road at the same time. • Because the road has only one lane, only one car can access it at a time. • The introduction of hubs into a network resulted in more users competing for the same bandwidth. • Collisions are a by-product of Ethernet networks.
  • 15. ELEMENTS OF ETHERNET 802.3 NETWORKS • Broadcast data frame delivery of Ethernet/802.3 • The carrier sense multiple access/collision detect (CSMA/CD) method allows only one station to transmit at a time. • Multimedia applications with higher bandwidth demand such as video and the Internet, coupled with the broadcast nature of Ethernet, can create network congestion. • Normal latency as the frames travel across the layers • Extending the distances and increasing latency of the Ethernet/802.3 LANs by using Layer 1 repeaters.
  • 16. NETWORK LATENCY • Latency, or delay, is the time a frame or a packet takes to travel from the source station to the final destination. • It is important to quantify the total latency of the path between the source and the destination for LANs and WANs. • Latency has at least three sources: • First, there is the time it takes the source NIC to place voltage pulses on the wire and the time it takes the receiving NIC to interpret these pulses. This is sometimes called NIC delay. • Second, there is the actual propagation delay as the signal takes time to travel along the cable. • Third, latency is added according to which networking devices, whether they are Layer 1, Layer 2, or Layer 3, are added to the path between the two communicating computers.
  • 17. SENDING AND RECEIVING ETHERNET FRAMES VIA A SWITCH • Switches are also known as learning bridges or learning switches. • A switch has a source address table in cache (RAM) where it stores source MAC address after it learns about them. • A switch receives an Ethernet frame it searches the source address table for the Destination MAC address. • If it finds a match, it filters the frame by only sending it out that port. • If there is not a match if floods it out all ports.
  • 18. COLLISION DOMAINS • When there is only one device on a switch port, the collision domain is only between the PC and the switch. • With a full-duplex PC and switch port, there will be no collision, since the devices and the medium can send and receive at the same time.
  • 20. LAN SEGMENTATION WITH ROUTERS • Routers provide segmentation of networks, adding a latency factor of 20% to 30% over a switched network. • This increased latency is because a router operates at the network layer and uses the IP address to determine the best path to the destination node. • Bridges and switches provide segmentation within a single network or subnetwork. • Routers provide connectivity between networks and subnetworks. • Routers also do not forward broadcasts while switches and bridges must forward broadcast frames.
  • 23.
  • 24. NEXT
  • 25. ETHERNET SWITCH LATENCY • Latency is the period of time from when the beginning of a frame enters to when the end of the frame exits the switch. • Latency is directly related to the configured switching process and volume of traffic.
  • 26. MEMORY BUFFERING • An Ethernet switch may use a buffering technique to store and forward frames. • Buffering may also be used when the destination port is busy. • The area of memory where the switch stores the data is called the memory buffer. • This memory buffer can use two methods for forwarding frame: • port-based memory buffering • shared memory buffering • In port-based memory buffering frames are stored in queues that are linked to specific incoming ports. • Shared memory buffering deposits all frames into a common memory buffer which all the ports on the switch share.
  • 27. SWITCHING METHODS 1. Store-and-forward – The entire frame is received before any forwarding takes place. • The destination and source addresses are read and filters are applied before the frame is forwarded. • CRC Check done 2. Cut-through – The frame is forwarded through the switch before the entire frame is received. • This mode decreases the latency of the transmission, but also reduces error detection. • In1900 and 2800 series switches, this is configurable, otherwise depends on the model of the switch.
  • 28. CUT-THROUGH • Fast-forward – Offers the lowest level of latency. • Fast-forward switching immediately forwards a packet after reading the destination address. • There may be times when packets are relayed with errors. • Although this occurs infrequently and the destination network adapter will discard the faulty packet upon receipt. • Fragment-free – Fragment-free switching filters out collision fragments before • forwarding begins. • Collision fragments are the majority of packet errors. • In a properly functioning network, collision fragments must be smaller than 64 bytes. • Anything greater than 64 bytes is a valid packet and is usually received without error. • Fragment-free switching waits until the packet is determined not to be a collision fragment before forwarding.
  • 29. . Adaptive cut-through • In this mode, the switch uses cut-through until it detects a given number of errors. • Once the error threshold is reached, the switch changes to store-and- forward mode.
  • 30. USING HUBS • Layer 1 devices • Inexpensive • In one port, out the others • One collision domain • One broadcast domain
  • 32. USING SWITCHES • Layer 2 devices • Layer 2 filtering based on Destination MAC addresses and Source Address Table • One collision domain per port • One broadcast domain across all switches
  • 33. INTRODUCING VLANS • VLAN = Subnet • VLANs create separate broadcast domains within the switch. • Routers are needed to pass information between different VLANs
  • 34. INTER-VLAN TRAFFIC Remember that VLAN IDs (numbers) are assigned to the switch port and not to the host. (Port-centric VLAN switches) 2. Be sure to have all of the hosts on the same subnet belong to the same VLAN, or you will have problems. • Hosts on subnet 172.30.1.0/24 - VLAN 1 • Hosts on subnet 172.30.2.0/24 - VLAN 2
  • 35. INTER-VLAN ROUTING NEEDS A ROUTER • A router is need to route traffic between VLANs (VLAN = Subnet). • There are various methods of doing this including Router-on-a-stick with trunking (more than one VLAN on the link). • This will be discussed later when we get to the chapter on VLANs and Inter-VLAN Routing.
  • 36. END