Lecture 4: Framing

Total Page:16

File Type:pdf, Size:1020Kb

Lecture 4: Framing Lecture 4: Framing" CSE 123: Computer Networks Alex C. Snoeren Proj 1 out Today, due 11/01! TCP/IP Protocol Stack" host host HTTP Application Layer HTTP TCP Transport Layer TCP router router IP IP Network Layer IP IP Ethernet Ethernet SONET SONET Ethernet Ethernet interface interface interfaceLink Layerinterface interface interface CSE 123 – Lecture 4: Framing" 2 (Data) Link Layer" # Framing ◆# Break stream of bits up into discrete chunks # Error handling ◆# Detect and/or correct errors in received frames # Media access ◆# Arbitrate which nodes can send frames at any point in time ◆# Not always necessary; e.g. point-to-point duplex links # Multiplexing ◆# Determine appropriate destination for a given frame ◆# Also not always required; again, point-to-point CSE 123 – Lecture 4: Framing" 3 Today’s Focus: Framing" # Break down a stream of bits into smaller, digestible chunks called frames # Allows the physical media to be shared ◆# Multiple senders and/or receivers can time multiplex the link ◆# Each frame can be separately addressed # Provides manageable unit for error handling ◆# Easy to determine whether something went wrong ◆# And perhaps even to fix it if desired CSE 123 – Lecture 4: Framing" 4 What’s a Frame?" Header Payload Trailer # Wraps payload up with some additional information ◆# Header usually contains addressing information ◆# Maybe includes a trailer (w/checksum—next lecture) # Basic unit of reception ◆# Link either delivers entire frame payload, or none of it ◆# Typically some maximum transmission unit (MTU) # Some link layers require absence of frames as well ◆# I.e., minimum gaps between frames CSE 123 – Lecture 4: Framing" 5 Identifying Frames" # First task is to delineate frames ◆# Receiver needs to know when a frame starts and ends # Several different alternatives ◆# Fixed length (bits) frames ◆# Fixed duration (seconds) frames ◆# Explicit delimiters indicate start and/or end of each frame »# Alternatively, just start and a length field # Misidentifying frame start and end leads to errors ◆# Topic for next lecture… CSE 123 – Lecture 4: Framing" 6 Fixed-Length Frames" # Easy to manage for receiver ◆# Well understood buffering requirements # Introduces inefficiencies for variable length payloads ◆# May waste space (padding) for small payloads ◆# Larger payloads need to be fragmented across many frames # Requires explicit design tradeoff ◆# ATM uses 53-byte frames (cells) ◆# Why 53? 48 + 5. Why 48? Average of 32 and 64. CSE 123 – Lecture 4: Framing" 7 Length-Based Framing" Start Length Payload # To avoid overhead, we’d like variable length frames ◆# Each frame declares how long it is ◆# E.g. DECNet DDCMP # Why not explicitly include a length field? ◆# Must correctly read the length field »# Need to decode while receiving ◆# Still need to identify the beginning… CSE 123 – Lecture 4: Framing" 8 Flags/Sentinels" # Allows for variable frame lengths # Start (and end) each frame with a special indicator ◆# Could be a special byte/bit patter in header/trailer ◆# Unique (non-data) physical-layer symbol # Reserving physical layer symbols reduces efficiency ◆# Can’t use that symbol to transmit data! # But using bits/bytes in data stream is problematic ◆# What if sentinel happens to appear in the data? CSE 123 – Lecture 4: Framing" 9 Stuffing" # Insert bytes/bits into data stream to make sure that sentinel (flag) does not appear in payload CSE 123 – Lecture 4: Framing" 10 Bit Stuffing" # Avoid sentinel bit pattern in payload data ◆# Commonly, sentinel is bit pattern 01111110 (0x7E) ◆# Invented for SDLC/HDLC, now standard pattern # Any time five ones appear in outgoing data, sender inserts a zero, resulting in 01111101 Stuffed bits 011111100001110111011111011111001 011111010000111011101111100111110001 # Any time receiver sees five ones, it removes next zero ◆# If there is no zero, there will either be six ones (flag) or ◆# It declares an error condition! ◆# Note bit pattern that cannot appear is 01111111 (0x7F) CSE 123 – Lecture 4: Framing" 11 Bit Stuffing Overhead" # We’re adding extra non-data bits to the stream ◆# Not using full capacity of physical layer n # Suppose we use flag 01 0 (zero followed by n 1s) ◆# We need to stuff anytime we get (n-1) 1s n ◆# Assuming uniform bit distribution, happens L/2 times in frame of length L # Tradeoff in flag length ◆# Long packets want long flags (less likely to stuff) ◆# Short packets want short flags (always need to add flag) 6 ◆# Overhead for n=6, long packet: L + L/2 + higher order terms = L + L/64 = 1.015L; 1/1.015 = approximately 98.5% efficient # Real problem is bit stream is now variable length! CSE 123 – Lecture 4: Framing" 12 Byte Stuffing" # Same as bit stuffing, except at byte (character) level ◆# Generally have two different flags, STX and ETX ◆# Found in PPP, DDCMP, BISYNC, etc. # Need to stuff if either appears in the payload ◆# Have another special character, DLE (data-link escape) ◆# New problem: what if DLE appears? # Stuff DLE with DLE! ◆# Could be as bad as 50% efficient to send all DLEs STX HEADER Payload ETX 0x48 ETX 0x69 0x48 DLE ETX 0x69 CSE 123 – Lecture 4: Framing" 13 Consistent-Overhead BS" # Control expansion of payload size due to stuffing ◆# Important for low-bandwidth links or fixed-size buffers # Idea is to use 0x00 as flag, and replace all zeros with distance to next 0x00. ◆# Break frame up into runs without zeros, encode by pre- pending each run with length ◆# Pretend frame ends in 0x00. Max run is 254; if no zeros pre- pend with 255 (0xFF) 45 00 00 2c 4c 79 00 00 40 06 4f 37 02 45 01 04 2c 4c 79 01 05 40 06 4f 37 “Linked list of zeros” CSE 123 – Lecture 4: Framing" 14 Clock-Based Framing" # So far, we’ve based framing on what’s on the wire ◆# Any bit errors may throw off our framing ◆# What happens with missed flag? Spurious flag? # An alternative is to base framing on external clock ◆# Kind of like Phy-layer signaling: sample at specific intervals ◆# This is what SONET does, among others # Significant engineering tradeoffs ◆# No extra bits needed in the data stream itself, but… ◆# Need tight clock synchronization between sender and receiver CSE 123 – Lecture 4: Framing" 15 SONET" # Synchronous Optical NETwork ◆# Engineering goal to reduce delay and buffering # All frames take same amount of time ◆# Independent of bit rate! # Each frame starts with signal bits ◆# Can synch clock just like PLL—look for periodic signal bits ◆# No need to stuff; signal pattern is unlikely, so won’t be periodic in data # Keep sync within frames with transitions ◆# Encoded using NRZ, but ◆# Data is XORed with special 127-bit pattern ◆# Creates lots of transitions, makes signal pattern unlikely CSE 123 – Lecture 4: Framing" 16 SONET Frame" # Every STS frame is 125 us long # Supports multiple bit rates in same network # STS-1 is base (slowest) speed: 51.84 Mbps ◆# Frame contains 9 rows of 90 bytes each (810 bytes) ◆# First 3 bytes of each row are header »# 2-byte sync patter, one byte for “flags” Overhead Payload … … … … 9 rows … 90 bytes CSE 123 – Lecture 4: Framing" 17 Multiplexed SONET Links" # SONET actually defines networking functionality ◆# Conflates layers; we’ll talk more in future lectures ◆# Thinks about how to move frames between links # Higher-speed links are multiples of STS-1 frames ◆# E.g., STS-3 is three times as fast as STS-1 # Frames are byte-wise interleaved ◆# Ensures pace of embedded STS-1 frames remains same A FH STS-1 B FH STS-1 FH A B C A STS-3 C FH STS-1 CSE 123 – Lecture 4: Framing" 18 SONET Networks" # STS-n can send n independent frames ◆# Effectively n parallel links sharing same physical media # Alternatively, can concatenate into one jumbo frame ◆# STS-nc: one link whose bandwidth is n times STS-1 # Each SONET frame takes same time to arrive; Why? not too difficult to synchronize clocks such that first byte of all incoming flows arrives just before sending first 3 bytes of outgoing flow CSE 123 – Lecture 4: Framing" 19 SONET Challenge" ... but now try to synchronize this network’s clocks CSE 123 – Lecture 4: Framing" 20 Floating Payload (SPE)" # Reduce synchronization overhead ◆# Start synchronization payload envelope anywhere CSE 123 – Lecture 4: Framing" 21 When Things Go Wrong" # Clock drift may confuse frame boundaries ◆# Read the end of one frame and beginning of the next # What happens if there are bit errors on channel? ◆# We might misinterpret flags as data or vice versa ◆# What will the frames look like? # In general, need some way to make sure we’re OK ◆# Error detection (and perhaps correction) topic for next time CSE 123 – Lecture 4: Framing" 22 Summary" # Data Link Layer provides four basic services ◆# Framing, multiplexing, error handling, and MAC # Framing determines when payload starts/stops ◆# Lots of different ways to do it, various efficiencies # Sentinel-based framing requires stuffing ◆# Increases the size of the packet ◆# Alternatives include fixed size frames # SONET uses timing-based framing ◆# Gets complicated when trying to switch links CSE 123 – Lecture 4: Framing" 23 For Next (Fri 10/11) Class" # Read 2.4 # Keep going on Homework 1 # Get started on Project 1 ◆# Discussion section TODAY at 3pm # No class Mon/Wed of next week CSE 123 – Lecture 4: Framing" 24 .
Recommended publications
  • Application Protocol Data Unit Meaning
    Application Protocol Data Unit Meaning Oracular and self Walter ponces her prunelle amity enshrined and clubbings jauntily. Uniformed and flattering Wait often uniting some instinct up-country or allows injuriously. Pixilated and trichitic Stanleigh always strum hurtlessly and unstepping his extensity. NXP SE05x T1 Over I2C Specification NXP Semiconductors. The session layer provides the mechanism for opening closing and managing a session between end-user application processes ie a semi-permanent dialogue. Uses MAC addresses to connect devices and define permissions to leather and commit data 1. What are Layer 7 in networking? What eating the application protocols? Application Level Protocols Department of Computer Science. The present invention pertains to the convert of Protocol Data Unit PDU session. Network protocols often stay to transport large chunks of physician which are layer in. The term packet denotes an information unit whose box and tranquil is remote network-layer entity. What is application level security? What does APDU stand or Hop sound to rot the meaning of APDU The Acronym AbbreviationSlang APDU means application-layer protocol data system by. In the context of smart cards an application protocol data unit APDU is the communication unit or a bin card reader and a smart all The structure of the APDU is defined by ISOIEC 716-4 Organization. Application level security is also known target end-to-end security or message level security. PDU Protocol Data Unit Definition TechTerms. TCPIP vs OSI What's the Difference Between his Two Models. The OSI Model Cengage. As an APDU Application Protocol Data Unit which omit the communication unit advance a.
    [Show full text]
  • Examining Ambiguities in the Automatic Packet Reporting System
    Examining Ambiguities in the Automatic Packet Reporting System A Thesis Presented to the Faculty of California Polytechnic State University San Luis Obispo In Partial Fulfillment of the Requirements for the Degree Master of Science in Electrical Engineering by Kenneth W. Finnegan December 2014 © 2014 Kenneth W. Finnegan ALL RIGHTS RESERVED ii COMMITTEE MEMBERSHIP TITLE: Examining Ambiguities in the Automatic Packet Reporting System AUTHOR: Kenneth W. Finnegan DATE SUBMITTED: December 2014 REVISION: 1.2 COMMITTEE CHAIR: Bridget Benson, Ph.D. Assistant Professor, Electrical Engineering COMMITTEE MEMBER: John Bellardo, Ph.D. Associate Professor, Computer Science COMMITTEE MEMBER: Dennis Derickson, Ph.D. Department Chair, Electrical Engineering iii ABSTRACT Examining Ambiguities in the Automatic Packet Reporting System Kenneth W. Finnegan The Automatic Packet Reporting System (APRS) is an amateur radio packet network that has evolved over the last several decades in tandem with, and then arguably beyond, the lifetime of other VHF/UHF amateur packet networks, to the point where it is one of very few packet networks left on the amateur VHF/UHF bands. This is proving to be problematic due to the loss of institutional knowledge as older amateur radio operators who designed and built APRS and other AX.25-based packet networks abandon the hobby or pass away. The purpose of this document is to collect and curate a sufficient body of knowledge to ensure the continued usefulness of the APRS network, and re-examining the engineering decisions made during the network's evolution to look for possible improvements and identify deficiencies in documentation of the existing network. iv TABLE OF CONTENTS List of Figures vii 1 Preface 1 2 Introduction 3 2.1 History of APRS .
    [Show full text]
  • Protocol Data Unit for Application Layer
    Protocol Data Unit For Application Layer Averse Riccardo still mumms: gemmiferous and nickelous Matthieu budges quite holus-bolus but blurs her excogitation discernibly. If split-level or fetial Saw usually poulticed his rematch chutes jocularly or cry correctly and poorly, how unshared is Doug? Epiblastic and unexaggerated Hewe never repones his florescences! What is peer to peer process in osi model? What can you do with Packet Tracer? RARP: Reverse Address Resolution Protocol. Within your computer, optic, you may need a different type of modem. The SYN bit is used to acknowledge packet arrival. The PCI classes, Presentation, Data link and Physical layer. The original version of the model defined seven layers. PDUs carried in the erased PHY packets are also lost. Ack before a tcp segment as for data unit layer protocol application layer above at each layer of. You can unsubscribe at any time. The responder is still in the CLOSE_WAIT state, until the are! Making statements based on opinion; back them up with references or personal experience. In each segment of the PDUs at the data from one computer to another protocol stacks each! The point at which the services of an OSI layer are made available to the next higher layer. Confused by the OSI Model? ASE has the same IP address as the router to which it is connected. Each of these environments builds upon and uses the services provided by the environment below it to accomplish specific tasks. This process continues until the packet reaches the physical layer. ASE on a circuit and back.
    [Show full text]
  • Show Me the Data Protocol and Spectrum Analysis Basics for 802.11 Wireless LAN
    Show Me The Data Protocol and Spectrum Analysis Basics for 802.11 Wireless LAN Robert Bartz [email protected] @eightotwo Presenter - Robert Bartz • Eight-O-Two Technology Solutions, Denver Colorado • Engineer, Consultant, Educator, Technical Author, Speaker, CWNE • BS Degree, Industrial Technology, California State University Long Beach, College of Engineering • Former Aerospace Test Engineer • 27 Years Technical Training With the Last 18 Years Specializing in Wireless Networking • Author - CWTS Official Study Guide by Sybex – 1st and 2nd Editions • Author - Mobile Computing Deployment and Management: Real World Skills for CompTIA Mobility+ Certification and Beyond by Sybex • Author - CWTS, CWS, and CWT Complete Study Guide by Sybex • E-mail: [email protected] Twitter: @eightotwo Agenda • Common Troubleshooting Methodology • The OSI Model (A Quick Review) • OSI Model – The Wireless Element • The IEEE 802.11 Frame • Common IEEE 802.11 Frame Exchanges • Wireless LAN Troubleshooting Tools for Layer 2 (Data Link) • Protocol Analysis • Wireless LAN Troubleshooting Tools for Layer 1 (Physical) • Spectrum Analysis This is a no lollygagging session lol·ly·gag ˈlälēˌɡaɡ/ verbNorth Americaninformal gerund or present participle: lollygagging spend time aimlessly; idle. "he sends her to Arizona every January to lollygag in the sun" Common Troubleshooting Methodology Steps in a common troubleshooting methodology 1. Identify the problem 2. Determine the scale of the problem 3. Possible causes 4. Isolate the problem 5. Resolution or escalation
    [Show full text]
  • Which Is NOT a PDU(Protocol Data Unit) ? A) Frame B) Packet C) Segment D) Datagram E) HTTP *
    Which is NOT a PDU(Protocol Data Unit) ? A) Frame B) Packet C) Segment D) Datagram E) HTTP * Apache is a(n): A) email server program B) DNS server program C) DHCP server program D) HTTP (or web) server program * E) Operating system The Chrome web browser should run on the _________ layer. A) application * B) transport C) internet D) data link E) physical According to the encapsulation and de-encapsulation process between standard layers, the data field of a frame most likely includes a(n) : A) IP packet * B) sending station's MAC address C) receiving station's MAC address D) TCP segment E) application PDU (protocol data unit) According to the encapsulation and de-encapsulation process between standard layers, the data field of a packet may include a(n) : A) UDP datagram B) TCP segment C) application PDU (protocol data unit) D) Ethernet frame E) UDP datagram or TCP segment* Establishing a logical connection(or handshaking) between two computers requires the exchange of __________ messages. A) 0 B) 1 C) 2 D) 3* E) 5 The real-life analogy of an IP packet is: A) the Jayne’s letter to Brian B) the airplane that delivers the Jayne’s letter C) the envelop that contains the Jayne’s letter * D) Jayne and Brian’s mailing addresses E) Jayne and Brian’s houses Standard details of network cables should be defined in the _____ layer A) application B) transport C) internet D) data link E) physical* Which of the following is NOT a layer in the hybrid TCP/IP-OSI architecture? A) physical B) session* C) internet D) data link E) transport Which correctly
    [Show full text]
  • Session 5: Data Link Control
    Data Communications & Networks Session 4 – Main Theme Data Link Control Dr. Jean-Claude Franchitti New York University Computer Science Department Courant Institute of Mathematical Sciences Adapted from course textbook resources Computer Networking: A Top-Down Approach, 6/E Copyright 1996-2013 J.F. Kurose and K.W. Ross, All Rights Reserved 1 Agenda 1 Session Overview 2 Data Link Control 3 Summary and Conclusion 2 What is the class about? .Course description and syllabus: »http://www.nyu.edu/classes/jcf/csci-ga.2262-001/ »http://cs.nyu.edu/courses/Fall13/CSCI-GA.2262- 001/index.html .Textbooks: » Computer Networking: A Top-Down Approach (6th Edition) James F. Kurose, Keith W. Ross Addison Wesley ISBN-10: 0132856204, ISBN-13: 978-0132856201, 6th Edition (02/24/12) 3 Course Overview . Computer Networks and the Internet . Application Layer . Fundamental Data Structures: queues, ring buffers, finite state machines . Data Encoding and Transmission . Local Area Networks and Data Link Control . Wireless Communications . Packet Switching . OSI and Internet Protocol Architecture . Congestion Control and Flow Control Methods . Internet Protocols (IP, ARP, UDP, TCP) . Network (packet) Routing Algorithms (OSPF, Distance Vector) . IP Multicast . Sockets 4 Course Approach . Introduction to Basic Networking Concepts (Network Stack) . Origins of Naming, Addressing, and Routing (TCP, IP, DNS) . Physical Communication Layer . MAC Layer (Ethernet, Bridging) . Routing Protocols (Link State, Distance Vector) . Internet Routing (BGP, OSPF, Programmable Routers) . TCP Basics (Reliable/Unreliable) . Congestion Control . QoS, Fair Queuing, and Queuing Theory . Network Services – Multicast and Unicast . Extensions to Internet Architecture (NATs, IPv6, Proxies) . Network Hardware and Software (How to Build Networks, Routers) . Overlay Networks and Services (How to Implement Network Services) .
    [Show full text]
  • Future of Asynchronous Transfer Mode Networking
    California State University, San Bernardino CSUSB ScholarWorks Theses Digitization Project John M. Pfau Library 2004 Future of asynchronous transfer mode networking Fakhreddine Mohamed Hachfi Follow this and additional works at: https://scholarworks.lib.csusb.edu/etd-project Part of the Digital Communications and Networking Commons Recommended Citation Hachfi, akhrF eddine Mohamed, "Future of asynchronous transfer mode networking" (2004). Theses Digitization Project. 2639. https://scholarworks.lib.csusb.edu/etd-project/2639 This Thesis is brought to you for free and open access by the John M. Pfau Library at CSUSB ScholarWorks. It has been accepted for inclusion in Theses Digitization Project by an authorized administrator of CSUSB ScholarWorks. For more information, please contact [email protected]. FUTURE OF ASYNCHRONOUS TRANSFER MODE NETWORKING A Thesis Presented to the Faculty of California State University, San Bernardino In Partial Fulfillment of the Requirements for the Degree Master of Business Administration by ' Fakhreddine Mohamed Hachfi June 2004 FUTURE OF ASYNCHRONOUS TRANSFER MODE NETWORKING A Thesis Presented to the Faculty of California State University, San Bernardino by Fakhreddine Mohamed Hachfi June 2004 Approved by: Da^e Frank Lin, Ph.D., Inf ormatTdn—&^-DSsision Sciences „ / Walt Stewart, Jr., Ph.D., Department Chair Information & Decision Sciences © 2004 Fakhreddine Mohamed Hachfi ABSTRACT The growth of Asynchronous Transfer Mode ATM was considered to be the ideal carrier of the high bandwidth applications like video on demand and multimedia e-learning. ATM emerged commercially in the beginning of the 1990's. It was designed to provide a different quality of service at a speed up to 10 Gbps for both real time and non real time application.
    [Show full text]
  • Data Link Control Protocol in Networking
    Data Link Control Protocol In Networking Nichols unman her Mnemosyne severally, endosmotic and supercritical. Retirement and pursuant Marmaduke thrummersepistolises herso newly! psyllas procreant or cost unalike. Holophrastic and alimental Clayton rubber-stamps some By ethernet header and other values, link control data in The data in networks where they? To link in case is primarily in which data units called stations on the network address and sends. Ethernet on hdlc provides a reply packets can also installed into. Hdlc protocol in network protocols used by consulting the! The sender tries again at its time limit, ppp on lcp messages to send. Level data links tend to control character mapping for media access to configure and indicates that should. Especially in network protocol which links. Hdlc protocol in network protocols requirements of a down event occurs, or to networking topics discussed in addition to. If data link control is received before sending data is the encoding technique works on. In data link control or government of frame is. As data link control involves the same length the link. Unit field is being established a link layer provides a linklayer protocols that are assuming that information frame, an upper ppp links, with a request. Sliding window protocols in data link protocol makes flow. If data link. Usb uses the network in networks and the! Remotely power on revenue from a new protocol configuration option specific and which is where they added to. Similar role and how much data bits of a combined stations defer sending device was developed to place as soon as.
    [Show full text]
  • AX.25 Telemetry and Telecommand Transfer Frames Format
    Issue : 3 Rev : 1 Date : 23/03/2015 Page : 1 of 13 AX.25 Telemetry and Telecommand Transfer Frames Format Prepared by: Florian George Stephane Billeter Checked by: Muriel Richard Approved by: ! Swiss Space Center EPFL Lausanne Switzerland 23 March 2015 Issue : 3 Rev : 1 Date : 23/03/2015 Page : 2 of 13 RECORD OF REVISIONS ISS/REV Date Modifications Created/modified by 1/0 15/03/2007 Initial release Florian George 2/0 06/11/2013 Issued for QB50 CDR Stéphane Billeter 2/1 17/07/2014 Add Telecommand Transfer Yann Voumard Frames Secondary Header 3/0 31/07/2014 First release of the software for Stéphane Billeter QB50 Teams 3/1 23/03/2015 Clarify use of time flag and field, Yann Voumard section 2.2.3 Ref.: QB50-EPFL-SSC-SCS-ICD-AX.25-TFF Issue : 3 Rev : 1 Date : 23/03/2015 Page : 3 of 13 TABLE OF CONTENTS RECORD OF REVISIONS .................................................................................................................................... 2 REFERENCES ........................................................................................................................................................ 4 APPLICABLE DOCUMENTS .......................................................................................................................................... 4 REFERENCES DOCUMENTS ......................................................................................................................................... 4 LIST OF ACRONYMS ..........................................................................................................................................
    [Show full text]
  • Asynchronous Transfer Mode ATM Protocol Analysis and Emulation
    Asynchronous Transfer Mode ATM Protocol Analysis and Emulation 818 West Diamond Avenue - Third Floor, Gaithersburg, MD 20878 Phone: (301) 670-4784 Fax: (301) 670-9187 Email: [email protected] Website: https://www.gl.com 1 What is ATM ? • Asynchronous Transfer Mode (ATM) is a switching and multiplexing technology • Flexible network that carries voice, video, and data, quickly and efficiently • Circuit switch and Packet switch network • Protocol standards are developed by ITU; Consists of 3 layers – ATM Adaptation Layer (AAL), ATM layer, and Physical layer • 2 levels – Transport and Switching; carries all traffic on a stream of fixed-size ATM cells • ATM is a core protocol used in SONET / SDH backbone of the PSTN • Support for multimedia traffic, efficient bandwidth management for burst traffic, support for LAN/WAN architecture and high performance via hardware switching 2 ATM Network Model 3 ATM Network Interface 4 UNI & NNI ATM Cell UNI (User-Network Interface) NNI (Network-Network Interface) 5 IMA Emulator IMA Network General ATM IMA Network 6 Inverse Multiplex over ATM (IMA) • ATM Inverse Multiplexing technique involves inverse multiplexing and de-multiplexing of ATM cells in a cyclical fashion • IMA combines multiple T1 or E1 links to form a single high-speed connection • IMA provides flexible bandwidth options to achieve rates between the DS1/E1 and DS3/E3 7 IMA Frames 8 IMA Frames… • IMA links transmit IMA control protocol (ICP) cells on each link in a group - once per IMA frame • ICP cells define and separate IMA frames and enable reconstruction of the original ATM cell stream • IMA group can have a frame size of 32, 64, 128, or 256.
    [Show full text]
  • Data Link Layer Design Issues • Error Detection and Correction • Elementary Data Link Protocols • Sliding Window Protocols • Example Data Link Protocols
    The Data Link Layer Chapter 3 • Data Link Layer Design Issues • Error Detection and Correction • Elementary Data Link Protocols • Sliding Window Protocols • Example Data Link Protocols Revised: August 2011 CN5E by Tanenbaum & Wetherall, © Pearson Education-Prentice Hall and D. Wetherall, 2011 The Data Link Layer Application Responsible for delivering frames of information over a single link Transport Network • Handles transmission errors and Link regulates the flow of data Physical CN5E by Tanenbaum & Wetherall, © Pearson Education-Prentice Hall and D. Wetherall, 2011 Data Link Layer Design Issues • Frames » • Possible services » • Framing methods » • Error control » • Flow control » CN5E by Tanenbaum & Wetherall, © Pearson Education-Prentice Hall and D. Wetherall, 2011 Frames Link layer accepts packets from the network layer, and encapsulates them into frames that it sends using the physical layer; reception is the opposite process Network Link Virtual data path Physical Actual data path CN5E by Tanenbaum & Wetherall, © Pearson Education-Prentice Hall and D. Wetherall, 2011 Possible Services Unacknowledged connectionless service • Frame is sent with no connection / error recovery • Ethernet is example Acknowledged connectionless service • Frame is sent with retransmissions if needed • Very unreliable channels; Example is 802.11 • NOTE: DL acknowledgement is an optimization to improve performance for unreliable channels, ACKs can also be done at higher layers Acknowledged connection-oriented service • Connection is set up; rare • Long
    [Show full text]
  • Virginia Tech Ground Station TNC Interfacing Tutorial
    Virginia Tech Ground Station TNC Interfacing Tutorial Zach Leffke, MSEE ([email protected]) Research Associate Aerospace Systems Lab Ted & Karyn Hume Center for National Security and Technology 3/23/2018 Agenda VHF/UHF • TNC Connection Overview 3.0m Dish Antennas • KISS Protocol 4.5m Dish • AX.25/HDLC Protocol • AFSK/FSK/GMSK Modulation • ….System Review…. • OSI Stack • Remote Connection Students assembling • VTGS Remote Interface 4.5m Dish • Summary Deployable Space@VT Ops Center 1.2m Dish GNU Radio at work (students preparing for 2016 RockSat Launch) 3/23/2018 TNC Interfacing Tutorial 2 Preview of the Finale…………… Primary Ground Station - UPEC Host Computer Client Software TNC TC SW TNC SW SoundCard AX.25 AX.25 KISS Interface KISS HDLC RADIO Localhost DATA FM TCP TCP AFSK D to A LOOPBACK IN RF Spacecraft IP IP IP IP MAC C&DH Audio Audio Comput HOST OS NETWORK RADIO er TC SW FIRMWARE AX.25 AX.25 KISS HDLC KISS AFSK SERIAL Remote Ground Station - VTGS FM SERIAL RF Host Computer Telecommand (TC) TTL Serial Software TNC TNC SW SoundCard AX.25 INTERNET KISS Interface HDLC RADIO DATA FM TCP AFSK D to A HOST IN RF OS IP NET VPN CONNECTION MAC Audio Audio Radio 3/23/2018 TNC Interfacing Tutorial 3 TNC Connection Overview TNC Implementation Types Hardware Radio DATA Jack Specific Interface Examples 3/23/2018 TNC Interfacing Tutorial 4 TNC Implementation Summary • Multiple implementation options exist • Hardware TNC Ground Station • Software TNC + Sound Card • Software Defined Radio Receiver • Software Defined Radio Transceiver • Hybrid SDR RX / HW Radio TX implementations 3/23/2018 TNC Interfacing Tutorial 5 Hardware Radios – Common for Satellite 3/23/2018 TNC Interfacing Tutorial 6 Hardware TNCs 3/23/2018 TNC Interfacing Tutorial 7 Radio Sound Card Interfaces • Good ones offer optical isolation (optocouplers).
    [Show full text]