Introduction to Ethernet and lab3.3

Size: px
Start display at page:

Download "Introduction to Ethernet and lab3.3"

Transcription

1 Introduction to Ethernet and lab3.3 Nov 200 Computation structures Agenda Introduction History Components (MAC, PHY) Packet format CRC Bit order Hubs, Switches and Routers Questions

2 Computation structures 2 What is (the) Ethernet Ethernet is a network BUS Ethernet is packet based Ethernet is available as 0 Mbit/s - 0 Gbit/s Ethernet is based on the CSMA/CD (Carrier Sense Multiple Access with Collision Detect access) protocol Computation structures 3 Ethernet Basics Ethernet Packets are from 64 bytes up to 58 bytes Since Ethernet is a BUS several Attached Units can talk on the BUS at the same time Collisions occur and the talking parties backoff for a time and then try again For each failed attempt the backoff time is increased exponentially

3 Computation structures 4 OSI model OSI Model Application L7 Presentation Session Transport Network Datalink Physical L On The OSI model with 7 layers, Ethernet is in the bottom two layers: Data Link Layer and Physical Layer OSI (Open Systems Interconnection) Computation structures 5 History of Ethernet Developed by Xerox at their PARC Research Facility by Bob Metcalfe and David Boggs First version was 3 Mbit /s Initial Ethernet standard developed by Digital, Intel and Xerox in the DIX consortium Standard for 0 Mbit/s called The Blue book was ready in 980 Standard was then submitted to a newly formed working group in IEEE called 802 IEEE splits the 802 working group in four parts becomes the Ethernet working group

4 Computation structures 6 History of Ethernet Late 982 DIX s Bluebook and the IEEE specifications merge into one standard Ethernet was already multi vendor and more company s endorsed the standard Ethernet vs CSMA/CD Ethernet patents where inexpensive and easy to license Ethernet was developed into several different mediums. Coaxial/UTP/Optical Computation structures 7 Components MAC PHY MAU FPGA MII MDI MAC Media Access Control PHY Physical layer device MAU Medium Attachment Unit (RJ45 connector) MII Media Independant Interface MDI Media Dependant Interface

5 Computation structures 8 MAC - Media Access Controller Does statistical functions : Packet Lengths, Packet collisions etc. Does the stripping and adding of the preamble bits and the CRC calculations Communicates with the rest of the design Back off mechanism with random delay in case of collision A MAC usually has two different datapaths one for internal clock (Sending) and one external (Receiving) Computation structures 9 Media Independent Interface - MII This is the interface between the PHY and the MAC Regardless of the underlying Media this interface always stays the same MII is for 0 and 00 Mbit Ethernet. First bit from MAC First Nibble Second Nibble D0 D D2 D3 D4 D5 D6 D7 MSB D0 D D2 LSB D3

6 Computation structures 0 Media Independent Interface - MII The MII consists of 0 different signals Transmit Clock (TX_CLK) which runs at either 2.5 Mhz for 0 Mbit or 25 Mhz for 00 Mbit Transmit Data (TXD <3:0>) data nibble to the PHY circuit from MAC Transmit Enable (TX_EN) is high when data on the TXD pins are valid Transmit Error (TX_ERR) goes high when the PHY is coding incorrectly, not used in 0 Mbit Computation structures Media Independent Interface - MII Receive Clock (RX_CLK) generated by the PHY for incoming data Receive Data (RXD <3:0>) data from the sender decoded by the PHY to MAC Receive Data Valid (RX_DV) asserted when there is valid data on the RXD path Receive Error (RX_ER) asserted to indicate that something in the coding layer is wrong etc Carrier Sense (CRS) asserted by the PHY to indicate someone else is sending data Collision (COL) asserted by the PHY when a collision has taken/is taking place, useless if working in full duplex mode

7 Computation structures 2 MII - Sending Packets TX_CLK TX_EN TXD<3:0> COL CRS Computation structures 3 MII - Receiving Packets RX_CLK RX_DV RXD<3:0> COL CRS

8 Computation structures 4 PHY Encodes/Decodes (Manchester coding for 0 Mbit/s) Converts from parallel to serial Detects collisions Auto-negotiation Computation structures 5 Ethernet Packet Format Preamble Destination Addr. Source Addr. Etype/Length Data FCS 8 Bytes 6 Bytes 6 Bytes 2 Bytes Bytes 4 Bytes

9 Computation structures 6 Preamble Preamble is used by the PHY to sync its RX_CLK to the transmitters TX_CLK. The Preamble consists of 8 bytes of alternating ones and zeros The two last bits of the preamble field are both high and are called the synch sequence, it is used to signal that the preamble ends and the Destination address begins. Computation structures 7 Destination and Source address Both Addresses are 6 bytes each and consists of two parts: 3 Bytes Vendor code (0x00003F = Syntrex Inc) 3 Bytes Serial number (0x000000) This address are sometimes callad MAC-address Stored in ROM in a NIC 0xFFFFFFFFFFFF is the broadcast address.

10 Computation structures 8 Type/Length Length / Etype field is either a type field or length. if the value is smaller than 0x0600 it contains length, otherwise it is an Ethernet Type 0x0800 is IPv4 Datagram 0x0806 is ARP 0x8DD is IPv6 Datagram 0x00 is experimental(below 0x0600?) Computation structures 9 Data Minimum data size 46 Bytes Maximum data size 500 Bytes If actual data is less than 46 Bytes the packet is padded with zeros

11 Computation structures 20 Frame Check Sequence (FCS) 4 Bytes used to detect bit faults in the packet Computed with the CRC-32 algorithm Computed on the Destination Address, Source Address, type and data fields. Computation structures 2 CRC theory () M F T P DA, SA, type and data fields, k bits long. The FCS field, n bits long. M and F concatenated.(k+n bits long). The CRC Polynomial. A pattern of n+ bits. (2) (3)

12 Computation structures 22 (4) But any binary number added to itself in a modulo 2 field yields zero so: (5) Computation structures 23 CRC polynomial The CRC polynomial for Ethernet is: CRC =

13 Computation structures 24 CRC in hardware The VHDL code for the -bit wide data bus implementation with polynomial crc(0) <= data_in xor crc(4); is shown below: crc() <= crc(0); crc(2) <= data_in xor crc() xor crc(4); crc(3) <= crc(2); crc(4) <= data_in xor crc(3) xor crc(4); Computation structures 25 Data In Q D CRC in hardware Q D Q D Q D Q D P(x) = x 5 + x 5 x 4 x 3 x 2 x x 0 x 4 + x 2 + Load the CRC register with 0xFFFFFFFFFF initially The resulting CRC must be inverted and reflected.

14 Computation structures 26 Bit Order Byte-order Bit-order Bit-order Highest Byte Lowest Byte MSB LSB MSB LSB Preamble Synch DA SA Type Data FCS 62 Bits 2 Bits 6 Bytes 6 Bytes 2 Bytes Bytes 4 Bytes Note that the Bit order is reversed compared to the Byte order Computation structures 27 Bit Order example When sending the two Bytes 0x3F0 the following bit order is used. 0 3 F Tx_d(3) Tx_d(0)

15 Computation structures 28 Bit Order CRC When sending 0xD0D5 the following bit order is used. Note that the CRC is not sent bytewise. D 0 D Tx_d(3) Tx_d(0) Computation structures 29 Hubs & Switches & Routers Hubs = Is an extension cord for networks, all signals are sent to all computers on network, all users share the same bandwidth Switches = Each signal is connected to a specific link to a switch. The switch receives the packet looks where it is heading and sends it to the appropriate port Router = Is working on higher level than the Ethernet Protocol, it usually works on IP level and looks at the IP address instead of the Ethernet Address

16 )( &' '' '& && $ % % $ # " #"!! Computation structures 30 Clip-art Every presentation needs some clip-art Ethernet Switch NIC Computation structures 3 Questions?

Introduction to Ethernet. Guy Hutchison 8/30/2006

Introduction to Ethernet. Guy Hutchison 8/30/2006 Introduction to Ethernet Guy Hutchison 8/30/2006 What is Ethernet? Local area transport protocol Layer 2 of the OSI stack Zero/minimal configuration Low-cost, high performance Best-effort delivery Original

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

EE-379 Embedded Systems and Applications Introduction to Ethernet

EE-379 Embedded Systems and Applications Introduction to Ethernet EE-379 Embedded Systems and Applications Introduction to Ethernet Cristinel Ababei Department of Electrical Engineering, University at Buffalo Spring 2013 Note: This course is offered as EE 459/500 in

More information

Canova Tech The Art of Silicon Sculpting

Canova Tech The Art of Silicon Sculpting Canova Tech The Art of Silicon Sculpting PIERGIORGIO BERUTO ANTONIO ORZELLI TF PLCA overview November 7 th, 2017 Overview What is PLCA? PHY-Level Collision Avoidance is meant to provide improved performance

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

Clause BASE-X Physical Coding Sublayer (PCS) UNIVERSITY of NEW HAMPSHIRE INTEROPERABILITY LABORATORY

Clause BASE-X Physical Coding Sublayer (PCS) UNIVERSITY of NEW HAMPSHIRE INTEROPERABILITY LABORATORY 100BASE-X Physical Coding Sublayer (PCS) Presentation Overview: Location in the OSI Stack Interface with Reconciliation sublayer Interface with Physical Medium Attachment (PMA) sublayer PCS Sublayer Functionality

More information

Ethernet 101 Siemens Industry Inc All rights reserved. usa.siemens.com/industry

Ethernet 101 Siemens Industry Inc All rights reserved. usa.siemens.com/industry Connected Manufacturing Ethernet 101 usa.siemens.com/industry Why Ethernet Ethernet is Everywhere! Page 2 Ethernet is everywhere Ethernet is the most common computer networking medium Standardization on

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

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

Canova Tech The Art of Silicon Sculpting

Canova Tech The Art of Silicon Sculpting Canova Tech The Art of Silicon Sculpting PIERGIORGIO BERUTO ANTONIO ORZELLI TF PHY-Level Collision Avoidance Addendum #2 August 30 th, 2017 Overview PHY Level Collision Avoidance (PLCA) Media access multiplexing

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

10/100M Ethernet-FIFO convertor

10/100M Ethernet-FIFO convertor 10/100M Ethernet-FIFO convertor Author: Gurenliang gurenliang@gmail.com Rev 1.0 September 23, 2009 List of Contents List of Contents... II List of Tables... III List of Figures... IV 1 Introduction...

More information

Discontinued IP. OPB Ethernet Lite Media Access Controller (v1.01b) Introduction. Features. LogiCORE Facts

Discontinued IP. OPB Ethernet Lite Media Access Controller (v1.01b) Introduction. Features. LogiCORE Facts 0 OPB Ethernet Lite Media Access Controller (v1.01b) DS441 March 3, 2006 0 0 Introduction The Ethernet Lite MAC (Media Access Controller) is designed to incorporate the applicable features described in

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

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

Lecture 9 The Data Link Layer part II. Antonio Cianfrani DIET Department Networking Group netlab.uniroma1.it

Lecture 9 The Data Link Layer part II. Antonio Cianfrani DIET Department Networking Group netlab.uniroma1.it Lecture 9 The Data Link Layer part II Antonio Cianfrani DIET Department Networking Group netlab.uniroma1.it Physical Addresses Physical (or LAN or MAC) address: 48 bit string Hexadecimal representation

More information

PHY-Less Ethernet Implementation Using Freescale Power Architecture Based Microprocessors

PHY-Less Ethernet Implementation Using Freescale Power Architecture Based Microprocessors June 24, 2010 PHY-Less Ethernet Implementation Using Freescale Power Architecture Based Microprocessors FTF-NET-F0568 Patrick B. Billings NMG, NPD Applications Engineering and VortiQa are trademarks of

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

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

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

DP83848 Single 10/100 Mb/s Ethernet Transceiver Reduced Media Independent Interface (RMII ) Mode

DP83848 Single 10/100 Mb/s Ethernet Transceiver Reduced Media Independent Interface (RMII ) Mode DP83848 Single 10/100 Mb/s Ethernet Transceiver Reduced Media Independent Interface (RMII ) Mode 1.0 Introduction National s DP83848 10/100 Mb/s single port Physical Layer device incorporates the low pin

More information

Canova Tech. IEEE Plenary Meeting, San Diego (CA) cg draft 2.0 PLCA (Clause 148) Overview July 9 th, 2018

Canova Tech. IEEE Plenary Meeting, San Diego (CA) cg draft 2.0 PLCA (Clause 148) Overview July 9 th, 2018 Canova Tech The Art of Silicon Sculpting PIERGIORGIO BERUTO ANTONIO ORZELLI IEEE 802.3 Plenary Meeting, San Diego (CA) 2018 802.3cg draft 2.0 PLCA (Clause 148) Overview July 9 th, 2018 Introduction PHY-Level

More information

Lecture 6 The Data Link Layer. Antonio Cianfrani DIET Department Networking Group netlab.uniroma1.it

Lecture 6 The Data Link Layer. Antonio Cianfrani DIET Department Networking Group netlab.uniroma1.it Lecture 6 The Data Link Layer Antonio Cianfrani DIET Department Networking Group netlab.uniroma1.it Link Layer: setting the context two physically connected devices: host-router, router-router, host-host,

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

Lecture 7: Ethernet Hardware Addressing and Frame Format. Dr. Mohammed Hawa. Electrical Engineering Department, University of Jordan.

Lecture 7: Ethernet Hardware Addressing and Frame Format. Dr. Mohammed Hawa. Electrical Engineering Department, University of Jordan. Lecture 7: Ethernet Hardware Addressing and Frame Format Dr. Mohammed Hawa Electrical Engineering Department University of Jordan EE426: Communication Networks MAC Addresses The shared medium in a LAN

More information

Physical and Link Layers. CS144 Review Session 6 November 6 th, 2008 Roger Liao Based on slides by Ben Nham

Physical and Link Layers. CS144 Review Session 6 November 6 th, 2008 Roger Liao Based on slides by Ben Nham Physical and Link Layers CS144 Review Session 6 November 6 th, 2008 Roger Liao Based on slides by Ben Nham Outline Physical layer Encoding of signals Chips vs. bits Link layer Communication through shared

More information

CMPE 150/L : Introduction to Computer Networks. Chen Qian Computer Engineering UCSC Baskin Engineering Lecture 18

CMPE 150/L : Introduction to Computer Networks. Chen Qian Computer Engineering UCSC Baskin Engineering Lecture 18 CMPE 150/L : Introduction to Computer Networks Chen Qian Computer Engineering UCSC Baskin Engineering Lecture 18 1 Final project demo Please do the demo THIS week to the TAs. Or you are allowed to use

More information

Lecture 5 The Data Link Layer. Antonio Cianfrani DIET Department Networking Group netlab.uniroma1.it

Lecture 5 The Data Link Layer. Antonio Cianfrani DIET Department Networking Group netlab.uniroma1.it Lecture 5 The Data Link Layer Antonio Cianfrani DIET Department Networking Group netlab.uniroma1.it Link Layer: setting the context two physically connected devices: host-router, router-router, host-host,

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 Link Layer and LANs: Ethernet and Swiches

The Link Layer and LANs: Ethernet and Swiches The Link Layer and LNs: Ethernet and Swiches EECS3214 2018-03-21 Link layer, LNs: outline 6.1 introduction, services 6.2 error detection, correction 6.3 multiple access protocols 6.4 LNs addressing, RP

More information

80220/ BASE-TX/10BASE-T Ethernet Media Interface Adapter

80220/ BASE-TX/10BASE-T Ethernet Media Interface Adapter 822/8221 822/8221 1BASE-TX/1BASE-T Ethernet Media Interface Adapter 98184 Features Single Chip 1Base-TX / 1Base-T Physical Layer Solution Dual Speed - 1/1 Mbps Half And Full Duplex MII Interface To Ethernet

More information

ECE 158A: Lecture 13. Fall 2015

ECE 158A: Lecture 13. Fall 2015 ECE 158A: Lecture 13 Fall 2015 Random Access and Ethernet! Random Access! Basic idea: Exploit statistical multiplexing Do not avoid collisions, just recover from them When a node has packet to send Transmit

More information

ECE 4450:427/527 - Computer Networks Spring 2017

ECE 4450:427/527 - Computer Networks Spring 2017 ECE 4450:427/527 - Computer Networks Spring 2017 Dr. Nghi Tran Department of Electrical & Computer Engineering Lecture 5.5: Ethernet Dr. Nghi Tran (ECE-University of Akron) ECE 4450:427/527 Computer Networks

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

Tri-Speed Ethernet MAC IP User Guide

Tri-Speed Ethernet MAC IP User Guide Tri-Speed Ethernet MAC IP User Guide April 2015 IPUG51_3.3 Table of Contents Chapter 1. Introduction... 5 Quick Facts... 5 Features... 6 Chapter 2. Functional Description... 7 Configuration Options...

More information

Computer and Network Security

Computer and Network Security CIS 551 / TCOM 401 Computer and Network Security Spring 2009 Lecture 6 Announcements First project: Due: 6 Feb. 2009 at 11:59 p.m. http://www.cis.upenn.edu/~cis551/project1.html Plan for Today: Networks:

More information

Housekeeping. Fall /5 CptS/EE 555 1

Housekeeping. Fall /5 CptS/EE 555 1 Housekeeping Lab access HW turn-in Jin? Class preparation for next time: look at the section on CRCs 2.4.3. Be prepared to explain how/why the shift register implements the CRC Skip Token Rings section

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

Canova Tech The Art of Silicon Sculpting

Canova Tech The Art of Silicon Sculpting Canova Tech The Art of Silicon Sculpting PIERGIORGIO BERUTO ANTONIO ORZELLI IEEE802.3cg WG PHY-Level Collision Avoidance rev. 1.0 August 2 nd, 2017 Idea for half-duplex multi-drop short-reach PHY Media

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

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

Ethernet. Network Fundamentals Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 1

Ethernet. Network Fundamentals Chapter Cisco Systems, Inc. All rights reserved. Cisco Public 1 Ethernet Network Fundamentals Chapter 9 1 Objectives Identify the basic characteristics of network media used in Ethernet. Describe the physical and data link features of Ethernet. Describe the function

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

CS 3516: Advanced Computer Networks

CS 3516: Advanced Computer Networks Welcome to CS 3516: Advanced Computer Networks Prof. Yanhua Li Time: 9:00am 9:50am M, T, R, and F Location: Fuller 320 Fall 2017 A-term 1 Some slides are originally from the course materials of the textbook

More information

Chapter 3: Industrial Ethernet

Chapter 3: Industrial Ethernet 3.1 Introduction Previous versions of this handbook have dealt extensively with Ethernet so it is not our intention to revisit all the basics. However, because Smart Grid protocols are increasingly reliant

More information

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

ECPE / COMP 177 Fall Some slides from Kurose and Ross, Computer Networking, 5 th Edition ECPE / COMP 177 Fall 2016 Some slides from Kurose and Ross, Computer Networking, 5 th Edition Course Organization Top-Down! Starting with Applications / App programming Then Transport Layer (TCP/UDP) Then

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

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

CIS 551 / TCOM 401 Computer and Network Security. Spring 2007 Lecture 7

CIS 551 / TCOM 401 Computer and Network Security. Spring 2007 Lecture 7 CIS 551 / TCOM 401 Computer and Network Security Spring 2007 Lecture 7 Announcements Reminder: Project 1 is due on Thursday. 2/1/07 CIS/TCOM 551 2 Network Architecture General blueprints that guide the

More information

Quad 100BaseTX/FX/10BaseT Physical Layer Device

Quad 100BaseTX/FX/10BaseT Physical Layer Device Quad 1BaseTX/FX/1BaseT Physical Layer Device 9961 Features Single Chip 1BaseTX/1BaseFX/1BaseT Physical Layer Solution Four Independent Channels in One IC 3.3V Power Supply with 5V Tolerant I/O Dual Speed

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

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

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

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

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

FCC Ethernet Controller

FCC Ethernet Controller FCC Ethernet Controller The FCC is in Ethernet mode when the GFMR [28:31] is set to %1010 This controller supports both Ethernet and IEEE 802.3 protocols, which are very similar, handling the necessary

More information

8 PORT LOW COST 10/100 SWITCH

8 PORT LOW COST 10/100 SWITCH 8 PORT LOW COST 10/100 SWITCH AL103 Revision 1.0 Supports 8 10/100 Mbit/s MII ports Capable of trunking up to 800 Mbit/s link Trunk fail-over feature Full- and half-duplex mode operation Speed auto-negotiation

More information

Lab Using Wireshark to Examine Ethernet Frames

Lab Using Wireshark to Examine Ethernet Frames Topology Objectives Part 1: Examine the Header Fields in an Ethernet II Frame Part 2: Use Wireshark to Capture and Analyze Ethernet Frames Background / Scenario When upper layer protocols communicate with

More information

Communication (III) Kai Huang

Communication (III) Kai Huang Communication (III) Kai Huang Ethernet Turns 40 12/17/2013 Kai.Huang@tum 2 Outline Bus basics Multiple Master Bus Network-on-Chip Examples o SPI o CAN o FlexRay o Ethernet Basic OSI model Real-Time Ethernet

More information

TELECOMMUNICATION STANDARDIZATION SECTOR

TELECOMMUNICATION STANDARDIZATION SECTOR INTERNATIONAL TELECOMMUNICATION UNION TELECOMMUNICATION STANDARDIZATION SECTOR STUDY PERIOD 1997-2000 COM 7-268-E April 2000 Original: English Question: 10/7 Texte disponible seulement en Text available

More information

IMPLEMENTATION OF IEEE MAC TRANSMITTER USING VHDL

IMPLEMENTATION OF IEEE MAC TRANSMITTER USING VHDL JOURNAL OF INFORMATION, KNOWLEDGE AND RESEARCH IN COMMUNICATION ENGINEERING ELECTRONICS AND IMPLEMENTATION OF IEEE 802.3 MAC TRANSMITTER USING VHDL 1 MR. JANAK A.PATEL, 2 PROF. PANKAJ P.PRAJAPATI 1 M.E.[Communication

More information

Data Link Protocols. TCP/IP Suite and OSI Reference Model

Data Link Protocols. TCP/IP Suite and OSI Reference Model Data Link Protocols Relates to Lab. This module covers data link layer issues, such as local area networks (LANs) and point-to-point links, Ethernet, and the Point-to-Point Protocol (PPP). 1 TCP/IP Suite

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

Introduction to Information Science and Technology 2017 Networking I. Sören Schwertfeger 师泽仁

Introduction to Information Science and Technology 2017 Networking I. Sören Schwertfeger 师泽仁 I Sören Schwertfeger 师泽仁 Outline Internet History of the Internet Internet Structure Internet Protocols Network layer details 1. Physical Layer 2. Data Link Layer 3. Network Layer Internet: Huge network

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

INTERNATIONAL TELECOMMUNICATION UNION

INTERNATIONAL TELECOMMUNICATION UNION INTERNATIONAL TELECOMMUNICATION UNION ITU-T TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU X.86/Y.1323 (02/2001) SERIES X: DATA NETWORKS AND OPEN SYSTEM COMMUNICATIONS Public data networks Transmission,

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

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

Chapter 5 Link Layer and LANs

Chapter 5 Link Layer and LANs Chapter 5 Link Layer and LANs A note on the use of these ppt slides: All material copyright 1996-2007 J.F Kurose and K.W. Ross, All Rights Reserved Computer Networking: A Top Down Approach 4 th edition.

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 5: Ethernet. Introduction to Networks - R&S 6.0. Cisco Networking Academy. Mind Wide Open

Chapter 5: Ethernet. Introduction to Networks - R&S 6.0. Cisco Networking Academy. Mind Wide Open Chapter 5: Ethernet Introduction to Networks - R&S 6.0 Cisco Networking Academy Mind Wide Open Chapter 5 - Sections 5.1 Ethernet Protocol Describe the Ethernet MAC address and frame fields 5.2 LAN 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

Ethernet Hub. Campus Network Design. Hubs. Sending and receiving Ethernet frames via a hub

Ethernet Hub. Campus Network Design. Hubs. Sending and receiving Ethernet frames via a hub Campus Network Design Thana Hongsuwan Ethernet Hub 2003, Cisco Systems, Inc. All rights reserved. 1-1 2003, Cisco Systems, Inc. All rights reserved. BCMSN v2.0 1-2 Sending and receiving Ethernet frames

More information

THE ETHERNET IN THE FIRST MILE CONSORTIUM. Annex 4A MAC Conformance Test Suite Version 1.0 Technical Document

THE ETHERNET IN THE FIRST MILE CONSORTIUM. Annex 4A MAC Conformance Test Suite Version 1.0 Technical Document EFM THE ETHERNET IN THE FIRST MILE CONSORTIUM Annex 4A MAC Conformance Test Suite Version 1.0 Technical Document COVER PAGE Last Updated: February 14, 2005 12:30 pm Ethernet in the First Mile Consortium

More information

Medium Access Control. CSCI370 Lecture 5 Michael Hutt New York Institute of Technology

Medium Access Control. CSCI370 Lecture 5 Michael Hutt New York Institute of Technology Medium Access Control CSCI370 Lecture 5 Michael Hutt New York Institute of Technology The Data Link Layer Logical Link Control (LLC) IEEE 802.2 Standard RFC 1042 Provides three service options Unreliable

More information

MAC-PHY Rate Adaptation Baseline. Arthur Marris

MAC-PHY Rate Adaptation Baseline. Arthur Marris MAC-PHY Rate Adaptation Baseline Arthur Marris arthurm@tality.com IEEE802.3ah EFM Task Force March 2002 1 The Rate Matching Problem The data rate for the EFM copper PHY is not fixed The data rate for the

More information

Lab Using Wireshark to Examine Ethernet Frames

Lab Using Wireshark to Examine Ethernet Frames Topology Objectives Part 1: Examine the Header Fields in an Ethernet II Frame Part 2: Use Wireshark to Capture and Analyze Ethernet Frames Background / Scenario When upper layer protocols communicate with

More information

cs144 Midterm Review Fall 2010

cs144 Midterm Review Fall 2010 cs144 Midterm Review Fall 2010 Administrivia Lab 3 in flight. Due: Thursday, Oct 28 Midterm is this Thursday, Oct 21 (during class) Remember Grading Policy: - Exam grade = max (final, (final + midterm)/2)

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

CCNA 1 Chapter 5 v5.0 Exam Answers 2013

CCNA 1 Chapter 5 v5.0 Exam Answers 2013 CCNA 1 Chapter 5 v5.0 Exam Answers 2013 1 2 A host is trying to send a packet to a device on a remote LAN segment, but there are currently no mappings in its ARP cache. How will the device obtain a destination

More information

Hubs. twisted pair. hub. 5: DataLink Layer 5-1

Hubs. twisted pair. hub. 5: DataLink Layer 5-1 Hubs Hubs are essentially physical-layer repeaters: bits coming from one link go out all other links at the same rate no frame buffering no CSMA/CD at : adapters detect collisions provides net management

More information

2. What is a characteristic of a contention-based access method?

2. What is a characteristic of a contention-based access method? CCNA 1 Chapter 5 v5.0 Exam Answers 2015 (100%) 1. Which statement is true about MAC addresses? MAC addresses are implemented by software. A NIC only needs a MAC address if connected to a WAN. The first

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

Bit A binary digit. The smallest unit of data, either a zero or a one. Bus A shared connection for multiple devices over a cable or backplane.

Bit A binary digit. The smallest unit of data, either a zero or a one. Bus A shared connection for multiple devices over a cable or backplane. The interest in Industrial Ethernet has brought about a completely new dictionary of terms. Here are some of the most important terms introduced to date. 4B/5B A block encoding scheme used to send Fast

More information

ISO/OSI Model and Collision Domain NETWORK INFRASTRUCTURES NETKIT - LECTURE 1 MANUEL CAMPO, MARCO SPAZIANI

ISO/OSI Model and Collision Domain NETWORK INFRASTRUCTURES NETKIT - LECTURE 1 MANUEL CAMPO, MARCO SPAZIANI ISO/OSI Model and Collision Domain NETWORK INFRASTRUCTURES NETKIT - LECTURE 1 MANUEL CAMPO, MARCO SPAZIANI ISO/OSI Model ISO: International Organization for Standardization OSI: Open Systems Interconnection

More information

Fast Ethernet Consortium

Fast Ethernet Consortium Fast Ethernet Consortium Version 1.2 Technical Document Last Updated: March 6, 2015 Fast Ethernet Consortium 121 Technology Drive, Suite 2 Durham, NH 03824 University of New Hampshire Phone: (603) 862-1529

More information

CW-Net. 100 Mbit/s Data Transmission and Device Control System 2007/1

CW-Net. 100 Mbit/s Data Transmission and Device Control System 2007/1 Content: - Introduction - Fundamentals - The CW-Net Principal network handler - Structure of the CW-Net instructions - CW-Net instruction set - Additional facilities - The Read Data instruction - Programming

More information

FPGA Implementation of Low Power Serial to High Speed Data Networks

FPGA Implementation of Low Power Serial to High Speed Data Networks FPGA Implementation of Low Power Serial to High Speed Data Networks Padmaneela Nallani M. Tech, Embedded systems, BVRIT E.C.E Dept, Hyderabad, India Mr. T. Vasudeva Reddy M. Tech (PhD), Associate Professor,

More information

Chapter 5 Reading Organizer After completion of this chapter, you should be able to:

Chapter 5 Reading Organizer After completion of this chapter, you should be able to: Chapter 5 Reading Organizer After completion of this chapter, you should be able to: Describe the operation of the Ethernet sublayers. Identify the major fields of the Ethernet frame. Describe the purpose

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

Overview of Ethernet Networking

Overview of Ethernet Networking Overview of Ethernet Networking Renesas Electronics America Inc. 1/31/2011 Rev. 0.02 00000-A Agenda This course contains an overview of Ethernet technology and its advantages and limits. Contained in this

More information

Link Layer Review. CS244A Winter 2008 March 7, 2008 Ben Nham

Link Layer Review. CS244A Winter 2008 March 7, 2008 Ben Nham Link Layer Review CS244A Winter 2008 March 7, 2008 Ben Nham Announcements PA3 due today PS3 due next Wednesday PA4 due next Friday Final Exam Review session next Friday 7-10 PM on Thursday, March 20 Multiple

More information

80C300. Full Duplex CMOS Ethernet 10/100 Mega Bit/Sec Data Link Controller 98012

80C300. Full Duplex CMOS Ethernet 10/100 Mega Bit/Sec Data Link Controller 98012 Full Duplex HURRICANE TM 80C300 Full Duplex CMOS Ethernet 10/100 Mega Bit/Sec Data Link Controller 98012 Features Low Power CMOS Technology 10/100 MBit Ethernet Controller Optimized for Switching Hub,

More information

CS 416: Operating Systems Design April 11, 2011

CS 416: Operating Systems Design April 11, 2011 Modes of connection Operating Systems Design 3. Client-Server Networking Paul Krzyzanowski pxk@cs.rutgers.edu Circuit-switched dedicated path guaranteed (fixed) bandwidth [almost] constant latency Packet-switched

More information

CS 640 Lecture 4: 09/11/2014

CS 640 Lecture 4: 09/11/2014 CS 640 Lecture 4: 09/11/2014 A) Bandwidth-delay product B) Link layer intro C) Encoding, Framing, Error Detection D) Multiple access Ethernet A. Bandwidth-delay product This in the above example is C *

More information

REV CHANGE DESCRIPTION NAME DATE. A Release

REV CHANGE DESCRIPTION NAME DATE. A Release REV CHANGE DESCRIPTION NAME DATE A Release 11-07-12 Any assistance, services, comments, information, or suggestions provided by SMSC (including without limitation any comments to the effect that the Company

More information

M242 COMPUTER NETWORS AND SECURITY

M242 COMPUTER NETWORS AND SECURITY M242 COMPUTER NETWORS AND SECURITY 2.1. Network Models: UNIT - II OSI MODEL AND LAN PROTOCOLS 1. Explain Network model A network is a combination of hardware and software that sends data from one location

More information

Worked solutions for EG/S /2007

Worked solutions for EG/S /2007 Worked solutions for EG/S 3567 2006/2007 UNIVERSITY OF ABERDEEN SESSION 2006-07 Degree Examination in EG 3567 Communications Engineering 1A Degree Examination in ES 3567 Communications Engineering 1B EG/ES

More information

Relationship of 1000BASE-T1 to other standards

Relationship of 1000BASE-T1 to other standards 97.1.2 Relationship of 1000BASE-T1 to other standards Relations between the 1000BASE-T1 PHY, the ISO Open Systems Interconnection (OSI) Reference Model, and the IEEE 802.3 CSMA/CD LAN Model are shown in

More information