Download OSI Data Link Layer

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Telecommunications in Russia wikipedia , lookup

Windows Vista networking technologies wikipedia , lookup

Communication protocol wikipedia , lookup

H.323 wikipedia , lookup

PSTN network topology wikipedia , lookup

Last mile wikipedia , lookup

5G wikipedia , lookup

Quality of service wikipedia , lookup

Computer network wikipedia , lookup

Deep packet inspection wikipedia , lookup

Telecommunications engineering wikipedia , lookup

Packet switching wikipedia , lookup

CAN bus wikipedia , lookup

Airborne Networking wikipedia , lookup

Telecommunication wikipedia , lookup

IEEE 1355 wikipedia , lookup

Internet protocol suite wikipedia , lookup

Recursive InterNetwork Architecture (RINA) wikipedia , lookup

Transcript
Chapter 2
(handout 1– only sections 2.1, 2.2 and 2.3)
Dr. Clincy
Professor of CS
Exam #3 Monday (3/14/16): Opened Book, No Computer, No Phone: All
Chapter 4 (except 4.14) and sections 5.1 and 5.2 (and all related lectures)
Lab 8 Posted on website
1 of 10
Dr. Clincy
Lecture
1
In understanding the “full scope” of data communications and
networking is VERY COMPLEX (and convoluted)
Open Systems Interconnection
(OSI) Reference Model
•
•
•
Why Study OSI?
An excellent model for conceptualizing and understanding data communications
More granularity in functionality - more functional delineation
Key points:
–
–
–
Modular
Hierarchical (chain of command, pecking order)
Boundaries between layers (called interfaces)
Packet Switch Versus Circuit Switch
Dr. Clincy
Lecture
2
Internet – Underlying Technologies
• The Internet is an interconnection of “backbone” networks
JOINED together via routers, gateways and switches
•
•
•
•
Internet is comprised of LANs, Point-to-Point WANs and Switched
WANs
LAN Examples: Ethernet, Token Ring (not in book), Wireless and
FDDI Ring (not in book)
Pt-to-Pt WAN Examples: Telephony Modem, DSL, Cable/Modem,
T-Lines and SONET
Switched WAN Examples: X.25, Frame Relay and ATM
Domain also includes
•
•
•
•
•
Tx Issues
Rx Issues
Networked Applications
Servers
Storage Systems
Dr. Clincy
Routers, Gateways, Bridges,
Brouters, Modems, Switches
Lecture 2
3
OSI Model
• Open Systems Interconnection
• Developed by ISO
(International Organization for Standardization)
• Contains seven layers
•
•
•
•
•
•
•
Application
Presentation
Session
Transport
Network
Data Link
Physical
Note 1: CS3501 focuses on layer 1 (Physical Layer)
Note 2: CS4622 focuses on layers 2 – 4 (TCP/IP)
Dr. Clincy
Lecture
4
OSI Reference Model ?
• Bottom 3 layers
•
•
•
•
Responsible for getting data or info to destination
Routing and switching occurs
Define the electrical and physical standards
Performs bit ordering, transmission of the bits, and error
detecting and correcting
• Top 4 layers
• Creation and interpretation of the data
• Protocols for data formatting, message syntax, dialogue
management, message sequences and info presentation are
used
Dr. Clincy
Lecture
5
OSI Physical Layer
• Responsible for transmission of bits
• Always implemented through hardware
• Encompasses mechanical, electrical, and functional
interfaces
• Encoding and Decoding issues: how 0’s and 1’s are
converted to signals
• Signal translation (ie. electrical to optical)
• Signal Multiplexing and Demultiplexing
• Signal Modulation and Demodulation
• Transport medium: Coaxial, Twisted Pair, Optical, etc..
• Transmission Rate/Data Rate – how fast to send bits
• Transmission mode: transmission direction (simplex,
duplex)
• Dr.Physical
Topology: networkLecture
layout
Clincy
6
OSI Data Link Layer
• Responsible for error-free, reliable transmission of data
• Framing, Flow control, Error control
(detection/correction), Access Methods
• Makes use of physical address because with in the same
network
Network Layer
Actually sends the packets (groups of
frames) from node to node using a routing
algorithm
Data Link Layer
Takes raw data (bits) and transform
them into frames, error control, etc.
Physical Layer
Transmit and receive the raw data
(bits)
Dr. Clincy
Lecture
7
OSI Network Layer
•
•
•
•
•
•
•
•
Responsible for routing of messages through networks
Concerned with type of switching used (circuit v. packet)
Handles routing among different networks
NOTE: with in the same network, only the DATA LINK
layer is needed – amongst multiple networks, the
NETWORK LAYER is needed
No need for routing with in the same network (LAN)
Routing across “internetworks”
Makes use of logical address vs physical address because
not with in the same network
Fragmentation occurs at this layer - explain
Dr. Clincy
Lecture
8
OSI Network Layer
High Level View of Network Layer’s Functions:
1. Transmitting data packets through a network in a timely
manner
2. There are more than one route between the source and
destination, the network layer chooses the best route (next
hop) based on some criteria.
Examples
-
A
Node Cost
Link Cost
Distance
Spare Cap.
Low Util.
Z
3. Makes sure the network does not become congested when
link or node failures occur.
Passes data between two networks (differing networks)
Dr. Clincy
Lecture
9
OSI Transport Layer
• Isolates messages from lower and upper layers
• Breaks down message size (segmentation) (down) and
performs re-assembly (up)
• Monitors quality of communications channel (oversee
all hops)
• Selects most efficient communication service
necessary for a given transmission (could change over
hops)
• Flow and Error control for Source and Sink
Dr. Clincy
Lecture
10
OSI Session Layer
• Establishes logical connections between systems
(up/down)
• Manages log-ons, password exchange, log-offs
(up/down)
• Terminates connection at end of session (up/down)
• Three-way handshake
Dr. Clincy
Lecture
11
OSI Presentation Layer
• Provides format and code conversion services
• Examples
– File conversion from ASCII to EBDIC
– Invoking character sequences to generate bold, italics, etc on
a printer
• The source and sink could operate using different
encoding schemes – the presentation layer makes the
translations
• Security
• Compression
Dr. Clincy
Lecture
12
OSI Application Layer
• Provides access to network for end-user (end-user
being a human being or software application)
• User’s capabilities are determined by what items are
available on this layer (ie. remote log-in, file transfer,
email service, directory service, etc.)
Dr. Clincy
Lecture
13