Ethernet Standard. Campus Network Design. Ethernet address. OSI Model. Thana Hongsuwan

Size: px
Start display at page:

Download "Ethernet Standard. Campus Network Design. Ethernet address. OSI Model. Thana Hongsuwan"

Transcription

1 Campus etwork Design Thana Hongsuwan Ethernet Standard 2003, Cisco Systems, Inc. All rights reserved , Cisco Systems, Inc. All rights reserved. BCMS v OSI Model Ethernet address Six bytes = 48 bits Flat address not hierarchical Burned into the IC ROM First three bytes from left specify the vendor. Cisco C, 3Com C and the last 24 bit should be created uniquely by the company Destination Address can be: Unicast: second digit from left is even (one recipient) Multicast: Second digit from left is odd (group of stations to receive the frame conferencing applications) Broadcast (ALL ones) (all stations receive the frame) Source address is always Unicast 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v

2 Ethernet address Ethernet address 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v Example Show how the address 47:20:1B:2E:08:EE is sent out on line. Solution The address is sent left-to-right, byte by byte; for each byte, it is sent right-to-left, bit by bit, as shown below: 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v

3 Example Ethernet Frame Format Define the type of the following destination addresses: a. 4A:30:10:21:10:1A b. 47:20:1B:2E:08:EE c. FF:FF:FF:FF:FF:FF Solution To find the type of the address, we need to look at the second hexadecimal digit from the left. If it is even, the address is unicast. If it is odd, the address is multicast. If all digits are F s, the address is broadcast. Therefore, we have the following: a. This is a unicast address because A in binary is b. This is a multicast address because 7 in binary is c. This is a broadcast address because all digits are F s. 2003, Cisco Systems, Inc. All rights reserved. BCMS v PA SFD DA SA LE LLC PDU Pad calculation of the FCS bytes PA : Preamble s for synchronization SFD : Start of Frame delimiter to start frame DA: Destination Address -- MAC address SA: Source Address -- MAC address LE: Length -- umber of data bytes Type: identify the higher -level protocol (> 0x0800 ; IPv4 = 0x0800) LLC PDU+pad -- minimum 46 bytes, maximum 1500 FCS : Frame Check Sequence -- CRC-32 Obligatory 9.6 ms interval between the emitted frame and the new one. To enable other stations wishing to transmit to take over at this time. IEEE PA DA SA Type Data Pad FCS Ethernet 2003, Cisco Systems, Inc. All rights reserved. BCMS v FCS Unreliable, connectionless service Ethernet CSMA/CD Connectionless: o handshaking between sending and receiving adapter. Unreliable: receiving adapter doesn t send acks or nacks to sending adapter stream of datagrams passed to network layer can have gaps gaps will be filled if app is using TCP otherwise, app will see the gaps 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v

4 Sending and receiving Ethernet frames on a bus nnnn Abbreviated MAC Addresses Sending and receiving Ethernet frames on a bus ope Hey, that s me! ope nnnn Abbreviated MAC Addresses When an Ethernet frame is sent out on the bus all devices on the bus receive it. What do they do with it? Each IC 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 OT match, it ignores the rest of the frame. Unless you are running a Sniffer program 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v Sending and receiving Ethernet frames on a bus Sending and receiving Ethernet frames on a bus nnnn Abbreviated MAC Addresses nnnn Abbreviated MAC Addresses X So, what happens when multiple computers try to transmit at the same time? Collision! 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v

5 Carrier Sense Multiple Access Collision Carrier sense: station listens to media before transmitting Multiple access: multiple stations may access at same time Media idle? Media idle? ES Transmit immediately O -- wait Listen until the media is idle, then transmit More than one station may send a frame during overlapping times. How does a station know that a collision occurred? What does the station do after a collision? 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v Collision Detect Frame transmission Assemble frame carrier sense signal O? Wait interframe gap time Start trnasmission collision detected? transmission done? tranmit OK send jam sequence Increment attempt. attempt limited? Discard frame Compute backoff and wait backoff time 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v

6 Frame reception Binary Backoff delay= 2 start receiving send frame done receiving? Matched DA FCS and frame size OK? Discard frame 1 st wait 0 or 1 slot time 2 nd wait 0,1,2 or 3 slot time 3 rd wait 0,1,2,..7 slot time k th wait k slot time transmission done? tranmit OK collision detected? >16 attempts Discard frame random wait between 0 and delay-1 double delay Pass frame to next layer after 10th collisions the interval is frozen at 1023 slots after 16th collisions, frame is discarded and report failure back to the upper layer limited delay<1024 max delay is limited at 1023*51.2 µs=52.4 ms 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v Ethernet uses CSMA/CD Minimum frame size o slots adapter doesn t transmit if it senses that some other adapter is transmitting, that is, carrier sense transmitting adapter aborts when it senses that another adapter is transmitting, that is, collision detection Before attempting a retransmission, adapter waits a random time, that is, random access A and B locates at the far end of the cable A A (1) packet starts at time 0 (3) B send packet; collision occurs at t B B (2) packet almost at B at t (4) jam signal gets back to A at 2t A frame must take more than 2t to send to prevent the situation that the sender incorrect conclude that the frame was successfully sent. A A B B 5: DataLink Layer 5-23 v , Cisco Systems, Inc. All rights reserved. BCMS 2003, Cisco Systems, Inc. All rights reserved. BCMS v

7 Worst Case Collision Timing Worst Case Collision Timing (cont.) 500 meters 500 meters 2,500 meters Assume delay for repeater is 1 µsec; for transceiver 0.5 µsec. Component Propagation Time Microsecs Five 500 meter segments 2500m/0.77c 10.8 Four repeaters 4 x 1 µsec 4.0 ine 50 meter AUI cables 450m/0.65c 2.3 ine transceivers 9 x 0.5 µsec 4.5 Total one-way time microsecond RTT Under these assumptions, the round trip time would be 43.2 microseconds. Allowing some tolerance for equipment, IEEE chose 51.2 microseconds, equal to 512 bit-times, as the collision detection interval. This is why all frames must be at least 512 bits (64 bytes) long. 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v Collision Detection Rules Late Collision 1. Stations must listen to the cable while transmitting in order to detect a collision. 2. A frame must be at least 64 bytes (512 bits, 51.2 µsec) long to ensure sender hears a collision before he finishes. (The transmission time must be more than the RTT.) 3. If a collision is detected, send a brief jamming signal and then wait before retransmitting. Late collisions are collisions which occur after the first 64 bytes have been transmitted on to the network Primary causes: excessive cable lengths and repeaters Jamming signal Jamming signal More than two station may send a frame at overlapping times. How does a station know that a collision has occurred? What next? 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v

8 Faster Ethernet and Collision Detection Fast Ethernet and Collision Detection 100 Mbps v = 2 x 10 8 m/sec Max etwork Size How does the ethernet collision detection rule limit network size for 100Mbps and 1Gbps ethernet? The collision detection rule states that a sender must detect a collision before he finishes transmission. Using the ethernet minimum frame size of 512 bits, a signal propagation speed 2 x 10 8 m/sec (the speed in fiber or UTP), and assuming no hubs or repeaters (which would add a delay), what is the maximum network size? For Fast Ethernet, without any repeater delay: TransmissionTime = 512 bit /10 9 bps = 5.12 x 10-6 sec Max Round Trip = TransmissionTime x PropagationSpeed = (5.12 x 10-6 sec) x (2 x 10 8 m/sec) = 1024 m Max etwork Diameter = 0.5 x Max Round Trip = 512 m Clearly, the 10 Mbps ethernet diameter (2.5 km) must be reduced for collision detection on fast ethernet! 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v Gigabit Ethernet and Collision Detection Ethernet Speed and Collision Detection 1000 Mbps For Gigabit Ethernet: v = 2 x 10 8 m/sec TransmissionTime = 512 bit /10 10 bps = x 10-6 sec Max Round Trip = TransmissionTime x PropagationSpeed = (0.512 x 10-6 sec) x (2 x 10 8 m/sec) = m Max etwork Diameter = 0.5 x Max Round Trip = 51.2 m Who would buy a network that can only span 51 meters? Max etwork Size So, without any delay due to repeaters or network interfaces, the largest network size in a shared media configuration is: Ethernet Minimum Min Frame Upper Bound Speed Frame Size TX Time on etwork Size 10 Mbps 64 byte 51.2 µsec 5,120 m 100 Mbps 64 byte 5.12 µsec 512 m 1 Gbps 64 byte µsec 51 m ext we will see how the fast and gigabit ethernet standards address these limits. 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v

9 100Mbps Introduction 100BaseTX (UTP) Fast Ethernet IEEE 802.3u Formal Spec July Mbps over Cat 5 UTP/STP/Fiber. Cat 5 UTP = Category 5 Unshielded twisted pair. Up to 125MHz signaling. Star wired using Switches & Hubs. 100Base-TX Unchanged Frame/MAC Protocols. 100 meters hub 5 meters 100 meter maximum cable length using Category-5 UTP or STP up to 2 class A hubs, with a maximum 5 m. between hubs, or one class B hub maximum network diameter is 205 meters a standard for Category-3 UTP using all 4-pairs called 100BaseT4 also exists, but is rarely used Hubs: may support autosensing of 10 Mbps or 100 Mbps links using fast link pulses, and autonegotiation of speed hub 100 meters 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v BaseFX (Fiber Optic) 1,000Mbps Introduction. host or switch uses 62.5/125 multimode fiber and an 850 nm LED source Two configurations: hub 400 meters 300 meters 400 meter maximum direct station-to-station connection; a station can be a host or a switch 300 meter maximum network diameter with 1 hub ote: more complicated configurations are possible using switches with either UTP or fiber optic cable host or switch Gigabit Ethernet IEEE 802.3z. Formal Spec June ,000 Over Cat 5e (802.3ab) /Fiber Only. Star wired using Switches & Hubs. 1000Base-T Unchanged Frame/MAC Protocols. 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v

10 Gigabit Ethernet Collision Detection on Gigabit Ethernet same frame format, media access, and collision detection rules as previous ethernet generations same 64 byte minimum frame and 96 bit interframe gap can combine 10 Mbps, 100 Mbps, and gigabit ethernet on same network (but not on same cable) using a switch 200 meter network diameter (using UTP) requires a minimum transmission time of 512 bytes on shared media several media types: UTP, shielded copper short-wave fiber optics long-wave fiber optics Round Trip 200 meters Hub How long must a frame be for the sender to detect a worst case collision before he finishes transmission? Gigabit Ethernet allows a 200 meter network diameter over UTP. Assuming a 0.5 µsec delay in the hub, the signal RTT is RTT = 400m/0.65c + 2 x 0.5 µsec = 3.05 µsec So the transmission length must be at least 1 Gbps x 3.05 µsec = 3050 bits How can we maintain collision detection and 64 byte frame standard? 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v Carrier Extension and Frame Bursting Standards Frame Frame Frame Frame pad Frame bursting Minimum 4096 bits Carrier extension Gigabit ethernet transmissions must be at least 4096 bit-times long for collision detection, but minimum frame length is still only 64 bytes. On a shared access segment, sender must pad short frames with a special signal to 4096 bits, called carrier extension. Frame bursting: if sender has several short frames, he can send them back-to-back (no interframe gap) to minimize carrier extension. On a dedicated segment (host connected to a switch), carrier extension and frame bursting are not required. Why? IEEE 802.3z standard 1000 BASE-LX 1000 BASE-SX 1000 BASE-CX 1000 BASE-T Two standards of MMF or SMF fiber 1000 Mbps CSMS/ CD MAC Optional GMII Layer Two standards of MMF Two pairs of twinax IEEE 802.3ab standard Four pairs of cat 5 UTP or better 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v

11 Gigabit Ethernet Media Types 1000Mbps And beyond 1000baseLX 1300 nm laser 9 micron single mode fiber 50 or 62.5 micron multimode fiber MHz modal bandwidth 550 m 5 km 10GBps is already issued. IEEE 802.3ae 1000baseSX 850 nm LED 1000baseT 1000baseCX 50 micron multimode 500 MHz modal bandwidth 50 micron multimode 400 MHz modal bandwidth 62.5 micron multimode 200 MHz modal bandwidth 62.5 micron multimode 160 MHz modal bandwidth 4 pair Cat-5 UTP Copper STP 25 m 100 m 220 m 275 m 500 m 550 m 40 KM length. WA Enabled Protocol: FDX only, CSMA/CD off Distance 100m, 300m over MMF 2Km, 10Km, 40Km over SMF 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v Standard IEEE 802.1D Series IEEE 802: Overview and Architecture IEEE 802.1B Management IEEE 802.1D MAC Bridges IEEE 802.1E System Load Protocol IEEE 802.1F Common Definition for Management IEEE 802.1G Remote MAC Bridging IEEE 802.1H Bridging of Ethernet IEEE 802.1Q Virtual Bridged LAs IEEE 802.1X Port Based etwork Access Control 802.1D-1990 MAC Bridges Superseded by 802.1D i-1995 FDDI bridging (see ASI X3T9.5) Superseded 802.1j-1996 Managed objects for MAC Bridges Superseded by 802.1D P802.1p Traffic Class Expediting and Dynamic Merged into 802.1D-1998 Multicast Filtering 802.1D-1998 P802.1r MAC Bridges (rollup of 802.1D-1990, 802.1j, 802.6k, P802.12e and P802.1p) GARP Proprietary Attribute Registration Protocol (GPRP) Superseded by 802.1D Withdrawn 802.1t-2001 Technical and Editorial corrections for Incorporated into 802.1D D w-2001 Rapid Reconfiguration of Spanning Incorporated into 802.1D- Tree 2004 P802.1y Maintenance to 802.1D-1998 Merged into 802.1D , Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v

12 802.3 Standard Encapsulation Ethernet Standard Date Description Experimental Ethernet Mbit/s (367 kb/s) over coaxial cable (coax) bus 10 Mbit/s (1.25 MB/s) over thick coax. Frames have a Type field. This frame format is Ethernet II 1982 used on all forms of Ethernet by protocols in the Internet protocol suite. IEEE standard BASE5 10 Mbit/s (1.25 MB/s) over thick coax. Same as Ethernet II (above) except Type field is replaced by Length, 802.3a BASE2 10 Mbit/s (1.25 MB/s) over thin Coax (a.k.a. thinnet or cheapernet) 802.3e BASE5 or StarLA 802.3i BASE-T 10 Mbit/s (1.25 MB/s) over twisted pair 802.3j BASE-F 10 Mbit/s (1.25 MB/s) over Fiber-Optic 802.3u BASE-TX, 100BASE-T4, 100BASE-FX Fast Ethernet at 100 Mbit/s (12.5 MB/s) w/autonegotiation 802.3z BASE-X Gbit/s Ethernet over Fiber-Optic at 1 Gbit/s (125 MB/s) 802.3ab BASE-T Gbit/s Ethernet over twisted pair at 1 Gbit/s (125 MB/s) 802.3ad 2000 Link aggregation for parallel links, since moved to IEEE 802.1AX 802.3ae Gigabit Ethernet over fiber; 10GBASE-SR, 10GBASE-LR, 10GBASE-ER, 10GBASE- SW, 10GBASE-LW, 10GBASE-EW 802.3af 2003 Power over Ethernet (15.4 W) 802.3an GBASE-T 10 Gbit/s (1,250 MB/s) Ethernet over unshielded twisted pair (UTP) 802.3aq GBASE-LRM 10 Gbit/s (1,250 MB/s) Ethernet over multimode fiber 2003, Cisco Systems, Inc. All rights reserved. BCMS v , Cisco Systems, Inc. All rights reserved. BCMS v Encapsulation 2003, Cisco Systems, Inc. All rights reserved. BCMS v

IEEE 802 LANs SECTION C

IEEE 802 LANs SECTION C IEEE 802 LANs SECTION C Outline of the Lecture Basic characteristics of LAN Topology Transmission Media MAC IEEE 802 LANs 802.3 - CSMA/CD based (Ethernet) 802.4 Token bus-based 802.5 Token ring-based Comparison

More information

Part3. Local Area Networks (LAN)

Part3. Local Area Networks (LAN) Part3 Local Area Networks (LAN) LAN Characteristics Small geographical area Relatively high data rate Single management Topologies Bus, star, ring Specifications at physical and data link layer mostly

More information

Objectives. Hexadecimal Numbering and Addressing. Ethernet / IEEE LAN Technology. Ethernet

Objectives. Hexadecimal Numbering and Addressing. Ethernet / IEEE LAN Technology. Ethernet 2007 Cisco Systems, Inc. All rights reserved. Cisco Public Objectives Ethernet Network Fundamentals Chapter 9 ITE PC v4.0 Chapter 1 1 Introduce Hexadecimal number system Describe the features of various

More information

Introductory to Computer Networks Local Area Networks. Lecture 16 Fall Isfahan University of technology Dr.

Introductory to Computer Networks Local Area Networks. Lecture 16 Fall Isfahan University of technology Dr. Introductory to Computer Networks Local Area Networks Lecture 16 Fall 2010 Isfahan University of technology Dr. Faramarz Hendessi What is a LAN? Local area means: Private ownership freedom from regulatory

More information

Zarządzanie sieciami telekomunikacyjnymi

Zarządzanie sieciami telekomunikacyjnymi Ethernet The term Ethernet refers to the family of local-area network (LAN) products covered by the IEEE 802.3 standard that defines what is commonly known as the CSMA/CD protocol. Four data rates are

More information

Ethernet. Computer Networks. Lecture 4.

Ethernet. Computer Networks. Lecture 4. Ethernet Computer Networks Lecture 4 http://goo.gl/pze5o8 The History of Ethernet Originally: DIX Ethernet (DEC-Intel-Xerox, Ethernet II) - 10Mbps. No LLC sublayer Later standardized as: IEEE 802.3 Frame

More information

Networking Technologies and Applications

Networking Technologies and Applications Networking Technologies and Applications Rolland Vida BME TMIT September 23, 2016 Aloha Advantages: Different size packets No need for synchronization Simple operation If low upstream traffic, the solution

More information

LAN Systems. Bus topology LANs

LAN Systems. Bus topology LANs Bus topology LANs LAN Systems Design problems: not only MAC algorithm, not only collision domain management, but at the Physical level the signal balancing problem (signal adjustment): Signal must be strong

More information

Internet Architecture and Protocol

Internet Architecture and Protocol Internet Architecture and Protocol Set# 03 Local Area Networks Delivered By: Engr Tahir Niazi Layer Reference to Protocol Application Presentation Session Application FTP, Telnet, SMTP, HTTP, SNMP.. Transport

More information

Lecture 4b. Local Area Networks and Bridges

Lecture 4b. Local Area Networks and Bridges Lecture 4b Local Area Networks and Bridges Ethernet Invented by Boggs and Metcalf in the 1970 s at Xerox Local area networks were needed to connect computers, share files, etc. Thick or Thin Ethernet Cable

More information

Data Link Layer, Part 5. Medium Access Control

Data Link Layer, Part 5. Medium Access Control CS 455 Medium Access Control, Page 1 Data Link Layer, Part 5 Medium Access Control These slides are created by Dr. Yih Huang of George Mason University. Students registered in Dr. Huang s courses at GMU

More information

Introduction to LAN Topologies Cabling. 2000, Cisco Systems, Inc. 3-1

Introduction to LAN Topologies Cabling. 2000, Cisco Systems, Inc. 3-1 Introduction to LAN Topologies Cabling 2000, Cisco Systems, Inc. 3-1 Objectives Upon completion of this chapter, you will be able to perform the following tasks: Media / Cabling Local Area Network Cabling

More information

! High Data Rates (0.1 to 1000 Mbps)! Short Distances (0.1 to 25 km) ! Low Error Rate (10 to 10 ) Local Area Networks

! High Data Rates (0.1 to 1000 Mbps)! Short Distances (0.1 to 25 km) ! Low Error Rate (10 to 10 ) Local Area Networks Local Area Networks A Local Area Netw ork is a communications netw ork that provides interconnection of a variety of data communicating devices w ithin a small area. Typical Characteristics! High Data

More information

Ethernet Technologies

Ethernet Technologies Ethernet Technologies CCNA 1 v3 Module 7 NESCOT CATC 1 10 Mbps Ethernet Legacy Ethernet means: 10BASE5 10BASE2 10BASE-T Common features are: frame format timing parameters transmission process basic design

More information

The random access methods we study in this chapter have evolved from a very interesting protocol known as ALOHA, which used a very simple procedure

The random access methods we study in this chapter have evolved from a very interesting protocol known as ALOHA, which used a very simple procedure Multiple Accesses When nodes or stations are connected and use a common link, called a multipoint or broadcast link, we need a multiple-access protocol to coordinate access to the link. The problem of

More information

Local Area Networks. Aloha Slotted Aloha CSMA (non-persistent, 1-persistent, p-persistent) CSMA/CD Ethernet Token Ring

Local Area Networks. Aloha Slotted Aloha CSMA (non-persistent, 1-persistent, p-persistent) CSMA/CD Ethernet Token Ring Local Area Networks Aloha Slotted Aloha CSMA (non-persistent, 1-persistent, p-persistent) CSMA/CD Ethernet Token Ring Networks: Local Area Networks 1 Network Layer Network Layer LLC 802.2 Logical Link

More information

Data Link Layer, Part 3 Medium Access Control. Preface

Data Link Layer, Part 3 Medium Access Control. Preface Data Link Layer, Part 3 Medium Access Control These slides are created by Dr. Yih Huang of George Mason University. Students registered in Dr. Huang's courses at GMU can make a single machine-readable

More information

Computer Networks Principles LAN - Ethernet

Computer Networks Principles LAN - Ethernet Computer Networks Principles LAN - Ethernet Prof. Andrzej Duda duda@imag.fr http://duda.imag.fr 1 Interconnection structure - layer 3 interconnection layer 3 router subnetwork 1 interconnection layer 2

More information

Chapter 6: DataLink Layer - Ethernet Olivier Bonaventure (2010)

Chapter 6: DataLink Layer - Ethernet Olivier Bonaventure (2010) Chapter 6: DataLink Layer - Ethernet Olivier Bonaventure (2010) 6.3.2. Ethernet Ethernet was designed in the 1970s at the Palo Alto Research Center [Metcalfe1976]. The first prototype [5] used a coaxial

More information

CSMA/CD (Collision Detection)

CSMA/CD (Collision Detection) CSMA/CD (Collision Detection) CD (collision detection): easy in wired LANs: measure signal strengths, compare transmitted, received signals difficult in wireless LANs: received signal strength overwhelmed

More information

EECS 122, Lecture 7. Kevin Fall Jean Walrand

EECS 122, Lecture 7. Kevin Fall Jean Walrand EECS 122, Lecture 7 Kevin Fall kfall@cs.berkeley.edu Jean Walrand wlr@eecs.berkeley.edu : Outline Typical Setup Names Physical Layer Frame Fast Ethernet; Gigabit Ethernet 10Base5 Efficiency of CSMA/CD

More information

NT1210 Introduction to Networking. Unit 5:

NT1210 Introduction to Networking. Unit 5: NT1210 Introduction to Networking Unit 5: Chapter 5, Ethernet LANs 1 Objectives Identify the major needs and stakeholders for computer networks and network applications. Identify the classifications of

More information

Ethernet Basics. based on Chapter 4 of CompTIA Network+ Exam Guide, 4 th ed., Mike Meyers

Ethernet Basics. based on Chapter 4 of CompTIA Network+ Exam Guide, 4 th ed., Mike Meyers Ethernet Basics based on Chapter 4 of CompTIA Network+ Exam Guide, 4 th ed., Mike Meyers Ethernet Basics History Ethernet Frames CSMA/CD Obsolete versions 10Mbps versions Segments Spanning Tree Protocol

More information

Introduction to Computer Networks. IEEE Ethernet

Introduction to Computer Networks. IEEE Ethernet Introduction to Computer Networks IEEE 802.3 Ethernet All rights reserved. No part of this publication and file may be reproduced, stored in a retrieval system, or transmitted in any form or by any means,

More information

Chapter 9. Ethernet. Part II

Chapter 9. Ethernet. Part II Chapter 9 Ethernet Part II CCNA1-1 Chapter 9-2 Note for Instructors These presentations are the result of a collaboration among the instructors at St. Clair College in Windsor, Ontario. Thanks must go

More information

The Ethernet Evolution. The 180 Degree Turn

The Ethernet Evolution. The 180 Degree Turn The Ethernet Evolution The 180 Degree Turn (C) Herbert Haas 2010/02/15 1 Use common sense in routing cable. Avoid wrapping coax around sources of strong electric or magnetic fields. Do not wrap the cable

More information

IEEE standards for local area networks

IEEE standards for local area networks IEEE standards for local area networks Telecommunication Networks Group firstname.lastname@polito.it http://www.telematica.polito.it/ COMPUTER NETWORKS Standard for LANs 1 Copyright Quest opera è protetta

More information

LAN Systems. Bus topology LANs

LAN Systems. Bus topology LANs Bus topology LANs LAN Systems Design problems: not only MAC algorithm, not only collision domain management, but at the Physical level the signal balancing problem (signal adjustment): Signal must be strong

More information

The Link Layer II: Ethernet

The Link Layer II: Ethernet Monday Recap The Link Layer II: Ethernet q Link layer services q Principles for multiple access protocols q Categories of multiple access protocols CSC 249 March 24, 2017 1 2 Recap: Random Access Protocols

More information

The Network Access Layer. In This Lecture. Network Access Layer. Hour 3

The Network Access Layer. In This Lecture. Network Access Layer. Hour 3 The Network Access Layer Hour 3 In This Lecture Explain what the Network Access layer is Discuss how TCP/IP's Network Access layer relates to the OSI networking model Explain what a network architecture

More information

Reminder: Datalink Functions Computer Networking. Datalink Architectures

Reminder: Datalink Functions Computer Networking. Datalink Architectures Reminder: Datalink Functions 15-441 15 441 15-641 Computer Networking Lecture 5 Media Access Control Peter Steenkiste Fall 2015 www.cs.cmu.edu/~prs/15-441-f15 Framing: encapsulating a network layer datagram

More information

Ethernet. Networks: Ethernet 1

Ethernet. Networks: Ethernet 1 Ethernet Networks: Ethernet 1 Ethernet [DEC, Intel, Xerox] 1-persistent, CSMA-CD with Binary Exponential Backoff Manchester encoding Networks: Ethernet 2 Ethernet [operational in 1974] Initially 3 Mbps

More information

LAN PROTOCOLS. Beulah A AP/CSE

LAN PROTOCOLS. Beulah A AP/CSE LAN PROTOCOLS Beulah A AP/CSE IEEE STANDARDS In 1985, the Computer Society of the IEEE started a project, called Project 802, to set standards to enable intercommunication among equipment from a variety

More information

ELEC / COMP 177 Fall Some slides from Kurose and Ross, Computer Networking, 5 th Edition

ELEC / COMP 177 Fall Some slides from Kurose and Ross, Computer Networking, 5 th Edition ELEC / COMP 177 Fall 2011 Some slides from Kurose and Ross, Computer Networking, 5 th Edition Project #2 Due Thursday, Nov 10 th By midnight Homework #5 Due Thursday, Nov 17 th Later this semester: Homework

More information

Data and Computer Communications

Data and Computer Communications Data and Computer Communications Chapter 16 High Speed LANs Eighth Edition by William Stallings Why High Speed LANs? speed and power of PCs has risen graphics-intensive applications and GUIs see LANs as

More information

Link Layer and Ethernet

Link Layer and Ethernet Link Layer and Ethernet 14-740: Fundamentals of Computer Networks Bill Nace Material from Computer Networking: A Top Down Approach, 6 th edition. J.F. Kurose and K.W. Ross traceroute Data Link Layer Multiple

More information

Link Layer and Ethernet

Link Layer and Ethernet Link Layer and Ethernet 14-740: Fundamentals of Computer Networks Bill Nace Material from Computer Networking: A Top Down Approach, 6 th edition. J.F. Kurose and K.W. Ross traceroute Data Link Layer Multiple

More information

10- and 100-Mbps Ethernet

10- and 100-Mbps Ethernet Ethernet Basics 10-Mbps Ethernet Three 10-Mbps Ethernet standards: 10BASE5 10BASE2 10BASE-T 10BASE2 and 10BASE5 were around more than 20 years and have been replaced by newer alternatives 10BASE-T s use

More information

Local Area Networks. Ethernet LAN

Local Area Networks. Ethernet LAN Local Area Networks Ethernet 802.3 LAN -7-1 Local Area Networks (Lokale Netze) Wide Area Network LAN -7-2 Local Area Networks What is a LAN? Multiple systems attached to an often shared medium high total

More information

C H A P T E R GIGABIT ETHERNET PROTOCOL

C H A P T E R GIGABIT ETHERNET PROTOCOL C H A P T E R GIGABIT ETHERNET PROTOCOL 2 39 2.1 Objectives of Research Ethernet protocol has been a robust and dominant technology and it is found to be present on more than 90 percent of all networked

More information

Chapter 4. DataLink Layer. Reference: Computer Networking: A Top Down Approach 4 th edition. Jim Kurose, Keith Ross Addison-Wesley, July 2007.

Chapter 4. DataLink Layer. Reference: Computer Networking: A Top Down Approach 4 th edition. Jim Kurose, Keith Ross Addison-Wesley, July 2007. Chapter 4 DataLink Layer Reference: Computer Networking: A Top Down Approach 4 th edition. Jim Kurose, Keith Ross Addison-Wesley, July 2007. DataLink Layer Link Layer 4.1 Link-Layer Addressing 4.2 Ethernet

More information

High Level View. EE 122: Ethernet and Random Access protocols. Medium Access Protocols

High Level View. EE 122: Ethernet and Random Access protocols. Medium Access Protocols High Level View EE 122: Ethernet and 802.11 Ion Stoica September 18, 2002 Goal: share a communication medium among multiple hosts connected to it Problem: arbitrate between connected hosts Solution goals:

More information

LAN Protocols. Required reading: Forouzan 13.1 to 13.5 Garcia 6.7, 6.8. CSE 3213, Fall 2015 Instructor: N. Vlajic

LAN Protocols. Required reading: Forouzan 13.1 to 13.5 Garcia 6.7, 6.8. CSE 3213, Fall 2015 Instructor: N. Vlajic 1 LAN Protocols Required reading: Forouzan 13.1 to 13.5 Garcia 6.7, 6.8 CSE 3213, Fall 2015 Instructor: N. Vlajic What is LAN? 2 Local Area Network (LAN) properties private ownership freedom to choose/change/upgrade

More information

Prof. Shervin Shirmohammadi SITE, University of Ottawa. Design Technologies. Lecture 17: Prof. Shervin Shirmohammadi CEG

Prof. Shervin Shirmohammadi SITE, University of Ottawa. Design Technologies. Lecture 17: Prof. Shervin Shirmohammadi CEG Lecture 17: Design Technologies Prof. Shervin Shirmohammadi SITE, University of Ottawa Prof. Shervin Shirmohammadi CEG 4185 17-1 Design Goals From the architecture and its components and simulation, we

More information

Ethernet. Agenda. Introduction CSMA/CD Elements and Basic Media-Types Repeater, Link Segments Framing. L21 - Ethernet

Ethernet. Agenda. Introduction CSMA/CD Elements and Basic Media-Types Repeater, Link Segments Framing. L21 - Ethernet Ethernet CSMA/CD, Framing, SNAP, Repeater, Hub, 10Mbit/s Technology Agenda Introduction CSMA/CD Elements and Basic Media-Types Repeater, Link Segments Framing Ethernet, v4.7 2 Page 21-1 Origin of IEEE

More information

Origin of IEEE (Ethernet) Ethernet. Agenda. Basic Idea of Ethernet Bus System

Origin of IEEE (Ethernet) Ethernet. Agenda. Basic Idea of Ethernet Bus System Origin of IEEE 802.3 (Ethernet) Ethernet CSMA/CD, Framing, SNAP, Repeater, Hub, 10Mbit/s Technology bus topology based on coax-cables passive, uninterrupted coupling shared media like the Ether of air

More information

Advanced Switches. Chapter 4.

Advanced Switches. Chapter 4. Advanced Switches Chapter 4 Outline Ethernet Technology Principles of Ethernet CSMA/CD Ethernet Switch Features Virtual LANs Access Port Trunks STP Broadcast Storms Link Aggregation PoE Port Monitoring

More information

Review. Error Detection: CRC Multiple access protocols. LAN addresses and ARP Ethernet. Slotted ALOHA CSMA/CD

Review. Error Detection: CRC Multiple access protocols. LAN addresses and ARP Ethernet. Slotted ALOHA CSMA/CD Review Error Detection: CRC Multiple access protocols Slotted ALOHA CSMA/CD LAN addresses and ARP Ethernet Some slides are in courtesy of J. Kurose and K. Ross Overview Ethernet Hubs, bridges, and switches

More information

EE 122: Ethernet and

EE 122: Ethernet and EE 122: Ethernet and 802.11 Ion Stoica September 18, 2002 (* this talk is based in part on the on-line slides of J. Kurose & K. Rose) High Level View Goal: share a communication medium among multiple hosts

More information

The MAC Layer. Contents. Textbook. Jean Yves Le Boudec Fall 2012

The MAC Layer. Contents. Textbook. Jean Yves Le Boudec Fall 2012 The MAC Layer Jean Yves Le Boudec Fall 2012 1 Contents 1. MAC as Shared Medium : The Ethernet Myth and the WiFi Reality 2. MAC as interconnection at small scale : Why Ethernet became a point to point technology

More information

Introduction Computer Networks. Applications Requiring High Speed LANs. Why High Speed LANs? IEEE802.3 Medium Access Control

Introduction Computer Networks. Applications Requiring High Speed LANs. Why High Speed LANs? IEEE802.3 Medium Access Control 168 430 Computer Networks Chapter 16 High Speed LANs Introduction Range of technologies Fast and Gigabit Ethernet Fibre Channel High Speed Wireless LANs Why High Speed LANs? Office LANs used to provide

More information

Goals. Fundamentals of Network Media. More topics. Topics. Multiple access communication. Multiple access solutions

Goals. Fundamentals of Network Media. More topics. Topics. Multiple access communication. Multiple access solutions Fundamentals of Network Media Local Area Networks Ursula Holmström Goals Learn the basic concepts related to LAN technologies, for example use of shared media medium access control topologies Know the

More information

Modern Ethernet variations. based on Chapter 5 of CompTIA Network+ Exam Guide, 4th ed., Mike Meyers

Modern Ethernet variations. based on Chapter 5 of CompTIA Network+ Exam Guide, 4th ed., Mike Meyers Modern Ethernet variations based on Chapter 5 of CompTIA Network+ Exam Guide, 4th ed., Mike Meyers recap: obsolete versions of Ethernet Coaxial cable physical bus topology 10Base5 (standard IEEE 802.3,

More information

Chapter 9 Ethernet Part 1

Chapter 9 Ethernet Part 1 Chapter 9 Ethernet Part 1 Introduction to Ethernet Ethernet Local Area Networks (LANs) LAN (Local Area Network) - A computer network connected through a wired or wireless medium by networking devices (s,

More information

CS 43: Computer Networks Switches and LANs. Kevin Webb Swarthmore College December 5, 2017

CS 43: Computer Networks Switches and LANs. Kevin Webb Swarthmore College December 5, 2017 CS 43: Computer Networks Switches and LANs Kevin Webb Swarthmore College December 5, 2017 Ethernet Metcalfe s Ethernet sketch Dominant wired LAN technology: cheap $20 for NIC first widely used LAN technology

More information

Contention Protocols and Networks

Contention Protocols and Networks 4/13/2005 314 Lecture Contention Protocols and Networks 1 Contention Protocols and Networks Contention Protocols CSMA/CD Network Topologies Ethernet 4/13/2005 314 Lecture Contention Protocols and Networks

More information

Computer Networks Medium Access Control. Mostafa Salehi Fall 2008

Computer Networks Medium Access Control. Mostafa Salehi Fall 2008 Computer Networks Medium Access Control Mostafa Salehi Fall 2008 2008 1 Outline Issues ALOHA Network Ethernet Token Ring Wireless 2 Main Issues Local Area Network (LAN) : Three or more machines are physically

More information

Data and Computer Communications. Chapter 11 Local Area Network

Data and Computer Communications. Chapter 11 Local Area Network Data and Computer Communications Chapter 11 Local Area Network LAN Topologies Refers to the way in which the stations attached to the network are interconnected Bus Topology Used with multipoint medium

More information

High Speed LANs. Range of technologies. Fast and Gigabit Ethernet Fibre Channel High Speed Wireless LANs. CS420/520 Axel Krings Page 2

High Speed LANs. Range of technologies. Fast and Gigabit Ethernet Fibre Channel High Speed Wireless LANs. CS420/520 Axel Krings Page 2 High Speed LANs CS420/520 Axel Krings Page 1 High Speed LANs Range of technologies Fast and Gigabit Ethernet Fibre Channel High Speed Wireless LANs CS420/520 Axel Krings Page 2 1 Why High Speed LANs? Office

More information

Section 3 Understanding Ethernet and Switch Operations

Section 3 Understanding Ethernet and Switch Operations Section 3 Understanding Ethernet and Switch Operations Ethernet is the technology of choice for today s LANs. It is fast, has low costs, and is easy to maintain. Today s Ethernet standards support speeds

More information

Direct Link Communication II: Wired Media. Multi-Access Communication

Direct Link Communication II: Wired Media. Multi-Access Communication Direct Link Communication II: Wired Media Multi-Access Communication Two classes: contention-based e.g., CSMA/CD, CSMA/CA used in Ethernet, WLAN contention-free e.g., TDM, FDM, TDMA, CDMA, token ring used

More information

Campus Network Design

Campus Network Design Campus Network Design Thana Hongsuwan 2003, Cisco Systems, Inc. All rights reserved. 1-1 Content Ethernet Standard Transparent Bridges LAN Switches LAN and Switch Operation Loop Resolution Virtual LANs,

More information

Module 5. Broadcast Communication Networks. Version 2 CSE IIT, Kharagpur

Module 5. Broadcast Communication Networks. Version 2 CSE IIT, Kharagpur Module 5 Broadcast Communication Networks Lesson 5 High Speed LANs Token Ring Based Specific Instructional Objectives On completion, the student will be able to: Explain different categories of High Speed

More information

The Medium Access Sublayer

The Medium Access Sublayer The Medium Access Sublayer shivkuma@ecse.rpi.edu http://www.ecse.rpi.edu/homepages/shivkuma 1-1 Based in part upon the slides of Prof. Raj Jain (OSU), K. Vastola (RPI) Overview Multiple Access: Aloha,

More information

Topics. Link Layer Services (more) Link Layer Services LECTURE 5 MULTIPLE ACCESS AND LOCAL AREA NETWORKS. flow control: error detection:

Topics. Link Layer Services (more) Link Layer Services LECTURE 5 MULTIPLE ACCESS AND LOCAL AREA NETWORKS. flow control: error detection: 1 Topics 2 LECTURE 5 MULTIPLE ACCESS AND LOCAL AREA NETWORKS Multiple access: CSMA/CD, CSMA/CA, token passing, channelization LAN: characteristics, i basic principles i Protocol architecture Topologies

More information

Direct Link Communication II: Wired Media. Multi-Access Communication

Direct Link Communication II: Wired Media. Multi-Access Communication Direct Link Communication II: Wired Media Multi-Access Communication Two classes: contention-based e.g., CSMA/CD, CSMA/CA used in Ethernet, WLAN contention-free e.g., TDM, FDM, TDMA, CDMA, token ring one

More information

Getting Connected (Chapter 2 Part 4) Networking CS 3470, Section 1 Sarah Diesburg

Getting Connected (Chapter 2 Part 4) Networking CS 3470, Section 1 Sarah Diesburg Getting Connected (Chapter 2 Part 4) Networking CS 3470, Section 1 Sarah Diesburg Five Problems Encoding/decoding Framing Error Detection Error Correction Media Access Five Problems Encoding/decoding Framing

More information

Protocols for Multiaccess Networks

Protocols for Multiaccess Networks Protocols for Multiaccess Networks Hosts broadcast packets When a collision occurs, all transmitted packets are lost Lost packets have to be retransmitted => Need Multiaccess Protocol Model - Slotted Aloha

More information

Ethernet. Typical Setup. Names. Operations. Operations Switch: No Collisions EECS 122. Hub: Single Collision Domain

Ethernet. Typical Setup. Names. Operations. Operations Switch: No Collisions EECS 122. Hub: Single Collision Domain Overview Physical Layer MAC Bridged VLAN Link Aggregation XON/XOFF 802.11 Summary Overview Typical Setup Names Operations Perspective TOC TOC Overview Typical Setup Names Structure [rate][modulation][media

More information

LAN. CS 4/55231 Internet Engineering. Kent State University Dept. of Computer Science

LAN. CS 4/55231 Internet Engineering. Kent State University Dept. of Computer Science 1 CS 4/55231 Internet Engineering Kent State University Dept. of Computer Science LECT-4A4 LAN 1 2 LAN Topologies-1 In the last class we saw how two computers can connect to each other. In this class we

More information

Summary of MAC protocols

Summary of MAC protocols Summary of MAC protocols What do you do with a shared media? Channel Partitioning, by time, frequency or code Time Division, Code Division, Frequency Division Random partitioning (dynamic) ALOHA, S-ALOHA,

More information

Introduction to Networks and the Internet

Introduction to Networks and the Internet Introduction to Networks and the Internet HTML tutorial today. Announcements CMPE 80N Spring 2003 Week 5 1 2 MAC Protocols MAC Protocols Round-robin. Scheduled-access. Contention-based. Contention-based

More information

Raj Jain. The Ohio State University Columbus, OH

Raj Jain. The Ohio State University Columbus, OH Columbus, OH 43210 Jain@CIS.Ohio-State.Edu http://www.cis.ohio-state.edu/~jain/ 3-1 Overview ISO/OSI Reference Model TCP/IP Reference Model Differences between ISO and TCP Ethernet/IEEE 802.3 LANs Interconnecting

More information

Computer Networks Principles LAN - Ethernet

Computer Networks Principles LAN - Ethernet Computer s Principles LN - thernet Prof. ndrzej Duda duda@imag.fr Interconnection structure - layer subnetwork interconnection layer interconnection layer subnet subnet router switch (bridge) VLN http://duda.imag.fr

More information

Principles behind data link layer services:

Principles behind data link layer services: Data Link Layer Goals: Principles behind data link layer services: Error detection, correction Sharing a broadcast channel: multiple access Link layer addressing Reliable data transfer, flow control: Done!

More information

Data Communication Prof. A. Pal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture # 29 High Speed LANs

Data Communication Prof. A. Pal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture # 29 High Speed LANs Data Communication Prof. A. Pal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture # 29 High Speed LANs Hello and welcome to today s lecture on high speed

More information

Computer Networks. Lecture 8 Local Area Network, IEEE 802.x

Computer Networks. Lecture 8 Local Area Network, IEEE 802.x Computer Networks Lecture 8 Local Area Network, IEEE 802.x Local area network A local area network (LAN) is a computer network that interconnects computers within a limited area such as a home, school,

More information

Fibre Channel: This standard provides a low-cost, easily scalable approach to achieving very high data rates in local areas.

Fibre Channel: This standard provides a low-cost, easily scalable approach to achieving very high data rates in local areas. Chapter 16 High Speed LANs by William Stallings The most important of these are Fast Ethernet and Gigabit Ethernet: The extension of 10-Mbps CSMA/CD (carrier sense multiple access with collision detection)

More information

CS 455/555 Intro to Networks and Communications. Link Layer Addressing, Ethernet, and a Day in the Life of a Web Request

CS 455/555 Intro to Networks and Communications. Link Layer Addressing, Ethernet, and a Day in the Life of a Web Request CS 455/555 Intro to Networks and Communications Link Layer Addressing, ernet, and a Day in the Life of a Web Request Dr. Michele Weigle Department of Computer Science Old Dominion University mweigle@cs.odu.edu

More information

Arhitecturi și Protocoale de Comunicații (APC) Rețele locale (I)

Arhitecturi și Protocoale de Comunicații (APC) Rețele locale (I) Arhitecturi și Protocoale de Comunicații (APC) Rețele locale (I) Outline Shared media LANs Classes of (MAC) protocols, standards. CSMA/CD (Ethernet). Bridged/Switched LANs Types of bridges, standards.

More information

! High Data Rates (0.1 Mbps to 10 Gbps)! Short Distances (0.1 to 40 km) ! Low Error Rate (10 to 10 ) Local Area Networks

! High Data Rates (0.1 Mbps to 10 Gbps)! Short Distances (0.1 to 40 km) ! Low Error Rate (10 to 10 ) Local Area Networks Local Area Networks A Local Area Network is a communications network that provides interconnection of a variety of data communicating devices within a small area. Typical Characteristics! High Data Rates

More information

Classical Ethernet (10 Mbps)

Classical Ethernet (10 Mbps) Lecture 10: Ethernet Standards and Ethernet Wiring Dr. Mohammed Hawa Electrical Engineering Department University of Jordan EE426: Communication Networks Classical Ethernet (10 Mbps) Classical Ethernet

More information

CCNA Exploration Network Fundamentals. Chapter 09 Ethernet

CCNA Exploration Network Fundamentals. Chapter 09 Ethernet CCNA Exploration Network Fundamentals Chapter 09 Ethernet Updated: 07/07/2008 1 9.0.1 Introduction 2 9.0.1 Introduction Internet Engineering Task Force (IETF) maintains the functional protocols and services

More information

Concept Questions Demonstrate your knowledge of these concepts by answering the following questions in the space provided.

Concept Questions Demonstrate your knowledge of these concepts by answering the following questions in the space provided. 83 Chapter 6 Ethernet Technologies and Ethernet Switching Ethernet and its associated IEEE 802.3 protocols are part of the world's most important networking standards. Because of the great success of the

More information

Principles behind data link layer services

Principles behind data link layer services Data link layer Goals: Principles behind data link layer services Error detection, correction Sharing a broadcast channel: Multiple access Link layer addressing Reliable data transfer, flow control: Done!

More information

Network Media and Layer 1 Functionality

Network Media and Layer 1 Functionality Network Media and Layer 1 Functionality BSAD 146 Dave Novak Dean, Chapter 3, pp 93-124 Objectives Introduction to transmission media Basic cabling Coaxial Twisted pair Optical fiber Basic wireless (NIC)

More information

1: Review Of Semester Provide an overview of encapsulation.

1: Review Of Semester Provide an overview of encapsulation. 1: Review Of Semester 1 1.1.1.1. Provide an overview of encapsulation. Networking evolves to support current and future applications. By dividing and organizing the networking tasks into separate layers/functions,

More information

Adaptors Communicating. Link Layer: Introduction. Parity Checking. Error Detection. Multiple Access Links and Protocols

Adaptors Communicating. Link Layer: Introduction. Parity Checking. Error Detection. Multiple Access Links and Protocols Link Layer: Introduction daptors ommunicating Terminology: hosts and routers are nodes communication channels that connect adjacent nodes along communication path are links wired links wireless links LNs

More information

Lecture 05 Chapter 16 High Speed LANs

Lecture 05 Chapter 16 High Speed LANs NET 456 High Speed Networks Lecture 05 Chapter 16 High Speed LANs Dr. Anis Koubaa Reformatted slides from textbook Data and Computer Communications, Ninth Edition by William Stallings, 1 (c) Pearson Education

More information

The following pages contain a guide for the installation

The following pages contain a guide for the installation INDEX The goal of this section is to illustrate how Siemon Company products can be used to support some of the most popular and emerging networks on the market. Section Contents 100Base-T....................................

More information

Data Link Layer. Our goals: understand principles behind data link layer services: instantiation and implementation of various link layer technologies

Data Link Layer. Our goals: understand principles behind data link layer services: instantiation and implementation of various link layer technologies Data Link Layer Our goals: understand principles behind data link layer services: link layer addressing instantiation and implementation of various link layer technologies 1 Outline Introduction and services

More information

THE OSI MODEL. Application Presentation Session Transport Network Data-Link Physical. OSI Model. Chapter 1 Review.

THE OSI MODEL. Application Presentation Session Transport Network Data-Link Physical. OSI Model. Chapter 1 Review. THE OSI MODEL Application Presentation Session Transport Network Data-Link Physical OSI Model Chapter 1 Review By: Allan Johnson Table of Contents Go There! Go There! Go There! Go There! Go There! Go There!

More information

Computer Network Fundamentals Spring Week 3 MAC Layer Andreas Terzis

Computer Network Fundamentals Spring Week 3 MAC Layer Andreas Terzis Computer Network Fundamentals Spring 2008 Week 3 MAC Layer Andreas Terzis Outline MAC Protocols MAC Protocol Examples Channel Partitioning TDMA/FDMA Token Ring Random Access Protocols Aloha and Slotted

More information

Redes de Computadores. Medium Access Control

Redes de Computadores. Medium Access Control Redes de Computadores Medium Access Control Manuel P. Ricardo Faculdade de Engenharia da Universidade do Porto 1 » How to control the access of computers to a communication medium?» What is the ideal Medium

More information

Local Area Network Overview

Local Area Network Overview Local Area Network Overview Chapter 15 CS420/520 Axel Krings Page 1 LAN Applications (1) Personal computer LANs Low cost Limited data rate Back end networks Interconnecting large systems (mainframes and

More information

Multiple Access Channels

Multiple Access Channels Multiple Access Channels Some Queuing Theory MAC: Aloha, ethernet Exponential backoff & friends LANs: Local Area Networks Goal: extend benefits of simple connection as far as possible Means: Share medium

More information

Lectures Ethernet

Lectures Ethernet Lectures 22-23 Ethernet EECS 122 University of California Berkeley Overview Robert Metcalfe at Xerox in Palo Alto developed the original Ethernet in 1973. Digital Equipment Corporation, Intel, and Xerox

More information

CSC 4900 Computer Networks: Link Layer (2)

CSC 4900 Computer Networks: Link Layer (2) CSC 4900 Computer Networks: Link Layer (2) Professor Henry Carter Fall 2017 Link Layer 6.1 Introduction and services 6.2 Error detection and correction 6.3 Multiple access protocols 6.4 LANs addressing,

More information

Technically Speaking. James Antonakos

Technically Speaking. James Antonakos In this portion of his series, James walks us through the operation of Fast Ethernet and Gigabit Ethernet. Join him as he discusses each 100- and 1000-Mbps technology, looks at their individual encoding

More information

Medium Access Protocols

Medium Access Protocols Medium Access Protocols Summary of MAC protocols What do you do with a shared media? Channel Partitioning, by time, frequency or code Time Division,Code Division, Frequency Division Random partitioning

More information