Download Data Networking Fundamentals

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

Asynchronous Transfer Mode wikipedia , lookup

Zigbee wikipedia , lookup

CAN bus wikipedia , lookup

Net bias wikipedia , lookup

Piggybacking (Internet access) wikipedia , lookup

IEEE 1355 wikipedia , lookup

Computer network wikipedia , lookup

Cracking of wireless networks wikipedia , lookup

Network tap wikipedia , lookup

Zero-configuration networking wikipedia , lookup

Deep packet inspection wikipedia , lookup

List of wireless community networks by region wikipedia , lookup

Airborne Networking wikipedia , lookup

Recursive InterNetwork Architecture (RINA) wikipedia , lookup

Internet protocol suite wikipedia , lookup

UniPro protocol stack wikipedia , lookup

Transcript
Data Networking
Fundamentals
Unit 7
1
Modified by: Brierley
5/25/2017
Objectives
Discuss basic networking concepts - elements common to clientserver
Provide examples of multiple network services
Describe differences between LANs, MANs, and WANs
Understand the function of each layer of the OSI model
Describe the purpose of protocols and recognize core protocols
and addressing scheme for the TCP/IP protocol suite
2
Modified by: Brierley
5/25/2017
Terminology
Standalone workstation - a workstation not connected to a network.
Relies on its own hard disk for data storage and applications. A
Personal computer (PC).
Client - a workstation or PC connected to a network. The person
whose workstation is part of a network may also be called a
“client”, or more informally a “user”.
Servers - store shared data and programs on their hard disks. They
perform management functions - such as determining a user’s
access to certain applications, data and services.
Client-server – an architecture that uses a server to enable clients
with sharing data storage space, networked devices and services.
3
Modified by: Brierley
5/25/2017
Terminology
4
Modified by: Brierley
5/25/2017
Requirements for Connectivity
5
Modified by: Brierley
5/25/2017
Requirements for Communications
Node - any device (a server, client, printer, mobile
device, etc.) that can receive messages across a
network. To receive data, each node must have a
unique address.
Protocol – a set of rules
6
Modified by: Brierley
5/25/2017
Servers
Server - A computer on the network that manages
shared resources.
Redundancy – Replica - Using more than one
component to guard against failure.
Network operating system (NOS) - software that can
manage data, users, groups, security, and
applications on the network.
7
Modified by: Brierley
5/25/2017
How Networks are Used
The purpose of using networks is to share services programs, data, and devices - known as resources.
Network services can be categorized as follows:






File services
Print services
Communication services
Mail services
Internet services
Management services
8
Modified by: Brierley
5/25/2017
LANS, MANS, and WANS
Local area network (LAN) - a network of computers
and other devices that is limited to a relatively small
area, such as a building, rooms, or office.
Connectivity device - when multiple networks or
multiple parts of one network need to communicate
with each other, this device is used to exchange data
between them, ie hubs, routers and switches.
Hub – forward messages to all its connected devices.
Hubs today are Legacy replaced with switches.
9
Modified by: Brierley
5/25/2017
LANS, MANS, and WANS
Metropolitan area network (MAN) - a network that
connects LANs between multiple buildings in a region.
Wide area network (WAN) - a network that connects
geographically distinct LANs, MANs, CANs, PANs –
wired and/or wireless
10
Modified by: Brierley
5/25/2017
LANS, MANS, and WANS
11
Modified by: Brierley
5/25/2017
LANS, MANS, and WANS
12
Modified by: Brierley
5/25/2017
LANS, MANS, and WANS
13
Modified by: Brierley
5/25/2017
LANS, MANS, and WANS
14
Modified by: Brierley
5/25/2017
The Internet
The Internet is a unique WAN in size, and diversity. It is used to:

Transmit confidential information between two offices or it may
transmit public information to anyone who requests it.

Connect users from around the globe, the Internet relies on a
hierarchical structure of connection points, just as the PSTN relies
on a hierarchy of LEC and IXC switches.

Connect to Internet Service Providers (ISP) – Companies that
operates a network and provides consumers links to the Internet.
15
Modified by: Brierley
5/25/2017
The Internet
16
Modified by: Brierley
5/25/2017
The Internet
17
Modified by: Brierley
5/25/2017
The OSI Model ( 7 layers)
7
6
5
4
3
2
1
18
Modified by: Brierley
5/25/2017
Application Layer
LAYER 7
Provides interfaces to software that enable
applications to use network services.
Application program interface (API) - A set of
instructions that allows a program to interact with an
operating system.
19
Modified by: Brierley
5/25/2017
Presentation Layer
LAYER 6
Establishes translation between the application and the
network.
Data becomes formatted in a schema that identifies the
application.
Encryption - A mathematical schema executed by both
the sender and receiver of the payload for security.
20
Modified by: Brierley
5/25/2017
Session Layer
LAYER 5
Functions include:

Establishing and keeping alive the communications link for
the duration of the session

Synchronizing the dialog between the two nodes

Determining whether communications have been cut off and
establish where to restart transmission
21
Modified by: Brierley
5/25/2017
Transport Layer
LAYER 4
Responsible for ensuring that data is transferred from point A to
point B reliably, in the correct sequence, and without errors.
Handles flow control, a method of gauging the appropriate rate of
transmission.
Segmentation - the process “chunking up” the Payload when
moving data to the network layer into smaller units.
22
Modified by: Brierley
5/25/2017
Network Layer
LAYER 3
Translates network addresses into their physical
counterparts and decide how to route data from the
sender to the receiver.
Addressing is handled at the Network layer.
23
Modified by: Brierley
5/25/2017
Data Link Layer
LAYER 2
Controls communications between the Network layer
and the Physical layer.
Frame - a structured package for moving data that
includes not only data, or "payload," but also the
sender’s and receiver’s network addresses, and
error checking and control information.
24
Modified by: Brierley
5/25/2017
Data Link Layer
25
Modified by: Brierley
5/25/2017
Data Link Layer
26
Modified by: Brierley
5/25/2017
Physical Layer
LAYER 1
Generates and detects voltage (pulses of light) to transmit and
receive signals representing data.
Sets the data transmission rate and monitors data error rates.
Physical network problems, cut cable, disconnected cable,
improperly defined interface
27
Modified by: Brierley
5/25/2017
Applying the OSI Model
7
6
5
4
3
2
1
28
Modified by: Brierley
5/25/2017
Applying the OSI Model
7
6
5
4
3
2
1
29
Modified by: Brierley
5/25/2017
Applying the OSI Model
7
6
5
4
3
2
1
30
Modified by: Brierley
5/25/2017
TCP/IP Compared to the OSI
Model
The TCP/IP model includes the following:

Layer 4 - Application layer - provides authentication and
compression services, and is roughly equivalent to the
Application, Presentation, and Session layers of the OSI model.

Layer 3 - Transport layer - roughly corresponds to the
Transport layer of the OSI model.

Layer 2 - Network layer - equivalent to the Network layer of
the OSI model.

Layer 1 - Link layer - roughly equivalent to the Data Link and
Physical layers of the OSI model.
31
Modified by: Brierley
5/25/2017
The OSI and TCP/IP Models
7
4
6
5
4
3
3
2
2
1
1
32
Modified by: Brierley
5/25/2017
Internet Protocol
Belongs to the Network layer of the OSI model and to the Internet
layer of the TCP/IP model. It provides information about how
and where data should be delivered.
Datagram - the IP portion of a data frame, acts as an envelope for
data and contains information for routers to transmit data
between networks.
IP is an unreliable, connectionless protocol, which means that it
does not guarantee delivery of data.
33
Modified by: Brierley
5/25/2017
Internet Protocol
34
Modified by: Brierley
5/25/2017
Transmission Control Protocol (TCP)
35
Modified by: Brierley
5/25/2017
Transmission Control Protocol (TCP)
36
Modified by: Brierley
5/25/2017
The TCP/IP Application Layer
Protocols
Dynamic Host Configuration Protocol (DHCP) – automatically
assigns a unique Network layer (IP) address to devices that
access the network.
File Transfer Protocol (FTP) - sends and receive files between
hosts.
Hypertext Transfer Protocol (HTTP) - Enables Web browsers to
issue requests to Web servers and interpret the response.
37
Modified by: Brierley
5/25/2017
The TCP/IP Application Layer
Protocols
Simple Mail Transfer Protocol (SMTP) - Responsible for moving
messages from one mail server to another over the Internet.
Telnet - a terminal emulation protocol used to log on to remote
hosts to issue configuration instructions.
38
Modified by: Brierley
5/25/2017
Addressing in TCP/IP
39
Modified by: Brierley
5/25/2017
Addressing in TCP/IP
To view your current IP information on a Windows 2000-2008, XP,
Vista, 7 Windows XP Operating System:




Click Start, then click Run. The Run dialog box opens.
In the Open text box, type cmd, then click OK. The Command
Prompt window opens.
At the DOS prompt, type ipconfig /all.Your workstation’s IP
address information is displayed
Type exit, then press Enter to close the Command Prompt
window.
40
Modified by: Brierley
5/25/2017
Addressing in TCP/IP
41
Modified by: Brierley
5/25/2017
Data Networks Summary
Workstations – client computers on a network share
data, programs, and devices through a central
computer called a server.
Servers - using a server to enable client computers to
share data storage space and devices constitutes a
client-server network.
Reference Models
OSI and TCP/IP
42
Modified by: Brierley
5/25/2017
The OSI and TCP/IP Models
7
4
6
5
4
3
3
2
2
1
1
43
Modified by: Brierley
5/25/2017