SlideShare une entreprise Scribd logo
1  sur  50
Télécharger pour lire hors ligne
BITS 2513
INTERNET TECHNOLOGY
LECTURE 2: UNDERSTANDING
NETWORKS
1
• Network Terminology
• Network Components
• Operating Systems on the
Network
TOPICS
Network
• The OSI Model and
Networking
• Addressing on a Network
• How Data Travels on the
Network: an Example
2
• Network Adapter
– Usually an expansion card called NIC
(Network Interface Card)
• Network Protocol
– A set of rules for network communications.
Examples:
Network Terminology
• OS protocols: TCP/IP, NetBEUI
• Hardware protocols: Ethernet, Token Ring
• Segments, Packets, Datagrams
– Small “chunks” of data that travel on
network
– In the network media, the packets travel in
frames, which carry each data packet with
a header and trailer to identify each packet
3
Network Components
4
• Hardware:
– Network Interface Card
(NIC)
– Servers
– Workstations
• Software:
– Operating Systems
– Applications
– Middleware
Network Components
– Workstations
– Hub, MAU,
Concentrator, Switch
– Connectors (RJ-45, BNC)
– Cable(UTP, coax)
– UPS (Uninterruptable
Power Supply)
5
NIC
Hub
switch
UPS
MAU
RJ-45 and
UTP
BNC male
Operating Systems on
the Networkthe Network
7
Introduction
• Communications between computers
require network OS(es) and network
protocols.
• Functions of OS in a computer:
– manage applications, hardware, and
connection to the network.
– enabling the computers on the local area
8
– enabling the computers on the local area
network (LAN) to share their resources
• Protocols specify network functionality.
– Using the same set of network protocols,
different devices can communicate.
– The selected network protocol must be
supported by every operating system on
the network.
– Example : HTTP, SMTP and FTP
Introduction (continued)
How resources are shared:
◦ peer-to-peer model: several computers using
different operating systems in a small business or
home can be connected to form a small LAN.
◦ client/server model, a.k.a. domain model, a
server is used to control which resources on the
LAN are shared, and who can access these
resources.
9
Network OSes are used to manage
resource sharing through mechanisms
such as
◦ user account: a collection of all of the
information that pertains to a user on a
computer
◦ authentication, validation, or logging on:
The process of entering a correct user ID and
password to gain access to a computer
• Windows 98 and Windows Me
• Windows NT Workstation, Windows
2000 Professional, Windows XP
• Linux
• Macintosh OSes e.g. Mac OS X
Client OSes
• Macintosh OSes e.g. Mac OS X
10
• can be installed on a server and used
to manage network resources,
including user accounts, printers, and
file sharing across the LAN.
• Windows NT Server, Windows NT
Network OSes
• Windows NT Server, Windows NT
Enterprise Server
• Windows 2000
• Windows Server 2003
• Novell NetWare
• UNIX, Linux
11
Network Operating Systems
• Some criteria to consider when selecting a
NOS are as follows:
– Reliability – stably perform in any condition
– Performance – serve the clients in a seamless way
– Adaptability – adapt request of diff. platform
12
– Adaptability – adapt request of diff. platform
– Security – ability to eliminate and repel threats
– Scalability – cont. function well when size expand
– Affordability
– Ease of use and ease of installation
The OSI Model and Networking
13
Variety – OS: Apple OS X, Windows, Linux,
Unix, Sun. Hardware: Cisco, 3Com,Huawei
In an effort to identify and standardize all
the levels of communication needed in
networking, ISO developed a networking
Understanding the OSI Model
networking, ISO developed a networking
model called the Open Systems
Interconnection (OSI) reference model.
The OSI reference model provides a
universally accepted reference illustrating
how data is transmitted on a network or
between two or more networked devices.
14
Understanding the OSI Model
15
Understanding the OSI Model
(Continued)
Physical Layer
Physical layer is responsible for: Passing data packets on
to the cabling or wireless media (whether the media be
cabling or wireless).
Data is in ‘bit’ form
16
Data Link Layer
Data Link layer is responsible for: Receiving packets of
data from the Network layer and presenting them to the
Physical layer for transport.
E.g: NIC (with firmware)
When software is permanently embedded on a hardware
device, it is called firmware.
Data is called ‘frame’
Network Layer
• Network layer is responsible for:
Dividing a block of data into
segments that are small enough to
travel over a network.
Understanding the OSI Model
(Continued)
travel over a network.
• Segments of data are called packets,
data packets, or datagrams and contain
data, along with special identifying
information in headers and trailers at the
beginning and end of the packet.
17
Transport Layer
Transport layer is responsible for: Error checking and
requests retransmission of data if it detects errors.
The Transport layer might or might not guarantee
successful delivery of data (depends on the transport
protocol used).
Understanding the OSI Model
(Continued)
protocol used).
Data is called ‘segment’
Session Layer
Session layer is responsible for: Establishing and
maintaining a session between two networked
stations or hosts.
A host is any computer or other device on a
network that has been assigned an IP address.
18
Presentation Layer
• Presentation layer is responsible for: receiving
requests for files from the Application layer, and
presents the requests to the Session layer.
• The Presentation layer reformats, compresses, or
encrypts data as necessary.
Understanding the OSI Model
(Continued)
• The Presentation layer reformats, compresses, or
encrypts data as necessary.
Application Layer
• The Application layer of the OSI model is
responsible for interfacing with application
software, such as Web browsers or Web
servers.
19
TCP/IP Protocols at Each Layer
(Continued)
20
The OSI Model Applied to a TCP/IP
Network
The Web browser wants to make a request to a Web server, and
processes the request using an API (Application Program Interface
)call to the OS.
The API process packages the data using HTTP format, which
includes an HTTP header, and addresses it to an IP address and
port 80, which is the default port for a Web server.
21
Fig 5-33 An application asks the OS to do something using an API call
The OSI Model Applied to a TCP/IP
Network (Continued)
• HTTP delivers the package to TCP, giving the
destination IP address and port.
22
The OSI Model Applied to a TCP/IP
Network (Continued)
• TCP hands the data off to IP, which resides in
the network layer and is also managed by
the OS.
23
The OSI Model Applied to a TCP/IP
Network (Continued)
The data with its header information is a long
stream of bytes. IP breaks it into individual
packets. IP adds its own IP header that contains
its own IP address (source) and the server’s IP
address (destination). IP passes the packets off
to the hardware (NIC).to the hardware (NIC).
24
Fig 5-36 IP divides data into packets, which are then released to the network
The OSI Model Applied to a TCP/IP
Network (Continued)
On the NIC, each
packet is given
information at its
beginning and end
in the form of frame.
A checksum is
calculated using acalculated using a
technique called
cyclical
redundancy check
(CRC). Then each
frame is sent off to
the Ethernet cable.
At the destination,
the checksum is
verified and passed
to the IP layer to be
regrouped.
25
The OSI Model Applied to a TCP/IP
Network (Continued)
• IP then passes the reassembled data and
header stream on to the TCP layer who
acknowledges the TCP layer on the client.
26
The OSI Model Applied to a TCP/IP
Network (Continued)
• The HTTP server, listening at port 80, receives
the data and passes it on to the Web server.
27
TCP/IP Protocols at Each Layer
(Continued)
28
• TCP/IP covers the first five layers of the OSI
model, and is included in an operating system
as a group of utilities called the TCP/IP stack.
TCP/IP Protocols at Each Layer
• Figure 5-41 shows the four major
groupings of the OSI model as
applied to TCP/IP networks.
29
30
• The first three layers of the OSI model
are handled by the protocol specific to
the application using it and are best
treated as a single group rather than
Protocols at the Application,
Presentation, and Session
Layers
treated as a single group rather than
unique layers.
• The language or protocol each
of these applications uses is listed
at the Application, Presentation,
and Session layers.
31
• A TCP/IP network has two protocols
that work at the Transport layer; one
protocol guarantees delivery and the
other does not.
• With TCP/IP, the protocol that
guarantees delivery is TCP and the
Protocols at the Transport Layer
• With TCP/IP, the protocol that
guarantees delivery is TCP and the
protocol that does not is UDP (User
Datagram Protocol).
• TCP is used for client and server
requests and responses.
• UDP ??
32
• Because TCP establishes a connection, it is
called a connection-oriented protocol.
• UDP is a protocol that sends data
Protocols at the Transport
Layer (Continued)
• UDP is a protocol that sends data
without caring about whether the
data is received.
• It does not establish a connection
first; thus, it is called a connectionless
protocol.
33
• TCP and UDP communicate with the Network
layer, which is sometimes called the Internet
layer.
• Some of the other supporting protocols include ARP
(Address Resolution Protocol), responsible for
locating a host on a LAN; RARP (Reverse Address
Protocols at the Network Layer
locating a host on a LAN; RARP (Reverse Address
Resolution Protocol), responsible for
discovering the Internet address of
a host on a LAN; and ICMP (Internet
Control Message Protocol), responsible
for communicating problems with
transmission to devices that need to
know about these problems.
35
• PPP (Point-to-Point Protocol) is used over
telephone lines, and allows a computer to
connect to a network using a modem.
• PPP is the most popular protocol for
Protocols at the Data Link and
Physical Layers
• PPP is the most popular protocol for
managing network transmission
from one modem to another.
36
Addressing on a Network
37
• MAC addresses function at the lowest
(Data Link) networking level.
• If a host does not know the MAC address
of another host on a local area network, it
uses the operating system to discover the
MAC (Media Access Control)Addresses
uses the operating system to discover the
MAC address.
• MAC-48 addresses in human-friendly form is
six groups of two hexadecimal digits
• e.g. 01-23-45-67-89-ab or 01:23:45:67:89:ab
38
• All the protocols of the TCP/IP suite
identify a device on the Internet or an
intranet by its IP address.
• An IP address is 32 bits long, made up of
4 bytes separated by periods.
• Within an IP address, each of the four
IP Addresses
• Within an IP address, each of the four
numbers separated by periods is
called an octet.
• The first part of an IP address
identifies the network, and the last
part identifies the host.
39
• IP addresses that can be used by
companies and individuals are divided
into three classes: Class A, Class B, and
Class C, based on the number of possible
IP addresses in each network within each
class.
Classes of IP Addresses
class.
• The group of IP addresses assigned
to an organization are unique to all
other IP addresses on the Internet
and are available for use on the Internet.
• The IP addresses available to the Internet
are called public IP addresses.
40
• Private IP addresses are IP addresses that
are assigned by a network administrator for
use on private intranets that are isolated
from the Internet.
• The RFC 1918 recommends that the
Private IP Addresses
• The RFC 1918 recommends that the
following IP addresses be used for private
networks:
– 10.0.0.0 through 10.255.255.255
– 172.16.0.0 through 172.31.255.255
– 192.168.0.0 through 192. 168. 255.255
41
• Instead of IP addresses permanently
being assigned to computers (called
static IP addresses), an IP address is
assigned for the current session only
Dynamically Assigned IP
Addresses
assigned for the current session only
(called a dynamic IP address).
• Internet service providers (ISPs) are
organizations through which individuals
and businesses connect to the Internet.
42
• If the hosts on a network using private IP
addresses need to access the Internet, a
problem arises because the private IP
addresses are not allowed on the Internet.
Network Address Translation
• The solution is to use NAT (Network
Address Translation), which uses a
single public IP address to access the
Internet on behalf of all hosts on the
network using other IP addresses.
43
• Because of an impending shortage of IP
addresses, as well as some limitations in
the current standards for IP, a new
scheme of IP addresses called the IPv6
(IP version 6) standard is currently being
Plans for New IP Addresses
(IP version 6) standard is currently being
developed and implemented.
• Current IP addresses using the current
IPv4 (IP version 4) have 32 bits with
eight bits in each of four octets.
45
• With the new system, each address
segment can have 32 bits, for a total of
128 bits for the entire address.
• A disadvantage of IPv6 is the fact that so
much software used on the Internet would
Plans for New IP Addresses
(Continued)
much software used on the Internet would
become outdated because current
software is designed to hold 32-bit IP
addresses and, with the new system,
this number would no longer be
sufficient.
46
IPv6 Status April 2013
• IPv6 address allocation has
happened and is happening
very smoothly
• More work in regional and local
transit networkstransit networks
• Content providers (especially
local content) and enterprise
customers need to keep working
on enabling IPv6 in their Internet
resources
• A port is a number used to address
software or services running on a
computer.
• A host computer might have several
services running on it.
Ports
services running on it.
• Each server running on the host is
assigned a port.
• The port is written at the end of the IP
address, separated from the IP address
with a colon—like this: 169.49.209.19:80
49
Lecture 2 -_understanding_networks_2013

Contenu connexe

Tendances (20)

communication-protocols
 communication-protocols communication-protocols
communication-protocols
 
MVA slides lesson 2
MVA slides lesson 2MVA slides lesson 2
MVA slides lesson 2
 
Skr+3200+chapter+2+(kweh)
Skr+3200+chapter+2+(kweh)Skr+3200+chapter+2+(kweh)
Skr+3200+chapter+2+(kweh)
 
02 protocol architecture
02 protocol architecture02 protocol architecture
02 protocol architecture
 
Aerial links
Aerial linksAerial links
Aerial links
 
98 366 mva slides lesson 7
98 366 mva slides lesson 798 366 mva slides lesson 7
98 366 mva slides lesson 7
 
TCP/IP model
TCP/IP modelTCP/IP model
TCP/IP model
 
02 protocols and tcp-ip
02 protocols and tcp-ip02 protocols and tcp-ip
02 protocols and tcp-ip
 
6 osi vimp
6 osi vimp6 osi vimp
6 osi vimp
 
TCP/IP MODEL
TCP/IP MODEL TCP/IP MODEL
TCP/IP MODEL
 
OSI model and TCP/IP model
OSI model and TCP/IP modelOSI model and TCP/IP model
OSI model and TCP/IP model
 
Basic ip and networking ver 3 kl
Basic ip and networking ver 3 klBasic ip and networking ver 3 kl
Basic ip and networking ver 3 kl
 
Chapter13
Chapter13Chapter13
Chapter13
 
MVA slides lesson 5
MVA slides lesson 5MVA slides lesson 5
MVA slides lesson 5
 
TCP IP Model | Computer Science
TCP IP Model | Computer ScienceTCP IP Model | Computer Science
TCP IP Model | Computer Science
 
Introduction to Computer Networks (Lecture #1 ET3003 Sem1 2014/2015)
Introduction to Computer Networks (Lecture #1 ET3003 Sem1 2014/2015)Introduction to Computer Networks (Lecture #1 ET3003 Sem1 2014/2015)
Introduction to Computer Networks (Lecture #1 ET3003 Sem1 2014/2015)
 
Ns lecture1: Introduction to Routing Protocol
Ns lecture1: Introduction to Routing ProtocolNs lecture1: Introduction to Routing Protocol
Ns lecture1: Introduction to Routing Protocol
 
MVA slides lesson 8
MVA slides lesson 8MVA slides lesson 8
MVA slides lesson 8
 
Chapter 2 Networking
Chapter 2 NetworkingChapter 2 Networking
Chapter 2 Networking
 
02 network models
02  network models02  network models
02 network models
 

Similaire à Lecture 2 -_understanding_networks_2013

Lecture 2 -_understanding_networks_with_presenter_notes
Lecture 2 -_understanding_networks_with_presenter_notesLecture 2 -_understanding_networks_with_presenter_notes
Lecture 2 -_understanding_networks_with_presenter_notesSerious_SamSoul
 
The Theoretical Network
The Theoretical NetworkThe Theoretical Network
The Theoretical Networkzaisahil
 
Lecture 1 Network Reference Models Final.pptx
Lecture 1 Network Reference Models Final.pptxLecture 1 Network Reference Models Final.pptx
Lecture 1 Network Reference Models Final.pptxRonoh Kennedy
 
Web technologies: recap on TCP-IP
Web technologies: recap on TCP-IPWeb technologies: recap on TCP-IP
Web technologies: recap on TCP-IPPiero Fraternali
 
Computer network coe351- part2- final
Computer network coe351- part2- finalComputer network coe351- part2- final
Computer network coe351- part2- finalTaymoor Nazmy
 
1.- Networking Models, Devices.pdf
1.- Networking Models, Devices.pdf1.- Networking Models, Devices.pdf
1.- Networking Models, Devices.pdfOpositorGonzalez1
 
3131471Scanned.ppt
3131471Scanned.ppt3131471Scanned.ppt
3131471Scanned.pptssuserf21d85
 
Unit 2 ppt-idc
Unit 2 ppt-idcUnit 2 ppt-idc
Unit 2 ppt-idchiya123jes
 
ENC_254_PPT_ch04.pdf
ENC_254_PPT_ch04.pdfENC_254_PPT_ch04.pdf
ENC_254_PPT_ch04.pdfshaker402
 
Sargation university's open system interconnection
Sargation university's open system interconnectionSargation university's open system interconnection
Sargation university's open system interconnectionKingPinYT
 
Sept 2017 network standards and models
Sept 2017   network standards and modelsSept 2017   network standards and models
Sept 2017 network standards and modelsshahin raj
 
Basics concept of network and internet mansi
Basics concept of network and internet   mansiBasics concept of network and internet   mansi
Basics concept of network and internet mansiMansiGupta298
 
02 coms 525 tcpip - introduction to tcpip
02   coms 525 tcpip -  introduction to tcpip02   coms 525 tcpip -  introduction to tcpip
02 coms 525 tcpip - introduction to tcpipPalanivel Kuppusamy
 
osireferencemodel-170703104058 (1).pdf
osireferencemodel-170703104058 (1).pdfosireferencemodel-170703104058 (1).pdf
osireferencemodel-170703104058 (1).pdfFira253524
 
computer network and chapter 7 OSI layers.pptx
computer network and chapter 7 OSI layers.pptxcomputer network and chapter 7 OSI layers.pptx
computer network and chapter 7 OSI layers.pptxgadisaAdamu
 

Similaire à Lecture 2 -_understanding_networks_2013 (20)

Lecture 2 -_understanding_networks_with_presenter_notes
Lecture 2 -_understanding_networks_with_presenter_notesLecture 2 -_understanding_networks_with_presenter_notes
Lecture 2 -_understanding_networks_with_presenter_notes
 
The Theoretical Network
The Theoretical NetworkThe Theoretical Network
The Theoretical Network
 
Lecture 1 Network Reference Models Final.pptx
Lecture 1 Network Reference Models Final.pptxLecture 1 Network Reference Models Final.pptx
Lecture 1 Network Reference Models Final.pptx
 
Web technologies: recap on TCP-IP
Web technologies: recap on TCP-IPWeb technologies: recap on TCP-IP
Web technologies: recap on TCP-IP
 
Computer network coe351- part2- final
Computer network coe351- part2- finalComputer network coe351- part2- final
Computer network coe351- part2- final
 
1.- Networking Models, Devices.pdf
1.- Networking Models, Devices.pdf1.- Networking Models, Devices.pdf
1.- Networking Models, Devices.pdf
 
3131471Scanned.ppt
3131471Scanned.ppt3131471Scanned.ppt
3131471Scanned.ppt
 
Unit 2 ppt-idc
Unit 2 ppt-idcUnit 2 ppt-idc
Unit 2 ppt-idc
 
ENC_254_PPT_ch04.pdf
ENC_254_PPT_ch04.pdfENC_254_PPT_ch04.pdf
ENC_254_PPT_ch04.pdf
 
Bhargava Presentation.ppt
Bhargava Presentation.pptBhargava Presentation.ppt
Bhargava Presentation.ppt
 
Bhargava Presentation.ppt
Bhargava Presentation.pptBhargava Presentation.ppt
Bhargava Presentation.ppt
 
Sargation university's open system interconnection
Sargation university's open system interconnectionSargation university's open system interconnection
Sargation university's open system interconnection
 
chapter 4.pptx
chapter 4.pptxchapter 4.pptx
chapter 4.pptx
 
Sept 2017 network standards and models
Sept 2017   network standards and modelsSept 2017   network standards and models
Sept 2017 network standards and models
 
Module 1 slides
Module 1 slidesModule 1 slides
Module 1 slides
 
Basics concept of network and internet mansi
Basics concept of network and internet   mansiBasics concept of network and internet   mansi
Basics concept of network and internet mansi
 
02 coms 525 tcpip - introduction to tcpip
02   coms 525 tcpip -  introduction to tcpip02   coms 525 tcpip -  introduction to tcpip
02 coms 525 tcpip - introduction to tcpip
 
OSI model.pptx
OSI model.pptxOSI model.pptx
OSI model.pptx
 
osireferencemodel-170703104058 (1).pdf
osireferencemodel-170703104058 (1).pdfosireferencemodel-170703104058 (1).pdf
osireferencemodel-170703104058 (1).pdf
 
computer network and chapter 7 OSI layers.pptx
computer network and chapter 7 OSI layers.pptxcomputer network and chapter 7 OSI layers.pptx
computer network and chapter 7 OSI layers.pptx
 

Dernier

Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 

Dernier (20)

Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 

Lecture 2 -_understanding_networks_2013

  • 1. BITS 2513 INTERNET TECHNOLOGY LECTURE 2: UNDERSTANDING NETWORKS 1
  • 2. • Network Terminology • Network Components • Operating Systems on the Network TOPICS Network • The OSI Model and Networking • Addressing on a Network • How Data Travels on the Network: an Example 2
  • 3. • Network Adapter – Usually an expansion card called NIC (Network Interface Card) • Network Protocol – A set of rules for network communications. Examples: Network Terminology • OS protocols: TCP/IP, NetBEUI • Hardware protocols: Ethernet, Token Ring • Segments, Packets, Datagrams – Small “chunks” of data that travel on network – In the network media, the packets travel in frames, which carry each data packet with a header and trailer to identify each packet 3
  • 5. • Hardware: – Network Interface Card (NIC) – Servers – Workstations • Software: – Operating Systems – Applications – Middleware Network Components – Workstations – Hub, MAU, Concentrator, Switch – Connectors (RJ-45, BNC) – Cable(UTP, coax) – UPS (Uninterruptable Power Supply) 5
  • 7. Operating Systems on the Networkthe Network 7
  • 8. Introduction • Communications between computers require network OS(es) and network protocols. • Functions of OS in a computer: – manage applications, hardware, and connection to the network. – enabling the computers on the local area 8 – enabling the computers on the local area network (LAN) to share their resources • Protocols specify network functionality. – Using the same set of network protocols, different devices can communicate. – The selected network protocol must be supported by every operating system on the network. – Example : HTTP, SMTP and FTP
  • 9. Introduction (continued) How resources are shared: ◦ peer-to-peer model: several computers using different operating systems in a small business or home can be connected to form a small LAN. ◦ client/server model, a.k.a. domain model, a server is used to control which resources on the LAN are shared, and who can access these resources. 9 Network OSes are used to manage resource sharing through mechanisms such as ◦ user account: a collection of all of the information that pertains to a user on a computer ◦ authentication, validation, or logging on: The process of entering a correct user ID and password to gain access to a computer
  • 10. • Windows 98 and Windows Me • Windows NT Workstation, Windows 2000 Professional, Windows XP • Linux • Macintosh OSes e.g. Mac OS X Client OSes • Macintosh OSes e.g. Mac OS X 10
  • 11. • can be installed on a server and used to manage network resources, including user accounts, printers, and file sharing across the LAN. • Windows NT Server, Windows NT Network OSes • Windows NT Server, Windows NT Enterprise Server • Windows 2000 • Windows Server 2003 • Novell NetWare • UNIX, Linux 11
  • 12. Network Operating Systems • Some criteria to consider when selecting a NOS are as follows: – Reliability – stably perform in any condition – Performance – serve the clients in a seamless way – Adaptability – adapt request of diff. platform 12 – Adaptability – adapt request of diff. platform – Security – ability to eliminate and repel threats – Scalability – cont. function well when size expand – Affordability – Ease of use and ease of installation
  • 13. The OSI Model and Networking 13
  • 14. Variety – OS: Apple OS X, Windows, Linux, Unix, Sun. Hardware: Cisco, 3Com,Huawei In an effort to identify and standardize all the levels of communication needed in networking, ISO developed a networking Understanding the OSI Model networking, ISO developed a networking model called the Open Systems Interconnection (OSI) reference model. The OSI reference model provides a universally accepted reference illustrating how data is transmitted on a network or between two or more networked devices. 14
  • 16. Understanding the OSI Model (Continued) Physical Layer Physical layer is responsible for: Passing data packets on to the cabling or wireless media (whether the media be cabling or wireless). Data is in ‘bit’ form 16 Data Link Layer Data Link layer is responsible for: Receiving packets of data from the Network layer and presenting them to the Physical layer for transport. E.g: NIC (with firmware) When software is permanently embedded on a hardware device, it is called firmware. Data is called ‘frame’
  • 17. Network Layer • Network layer is responsible for: Dividing a block of data into segments that are small enough to travel over a network. Understanding the OSI Model (Continued) travel over a network. • Segments of data are called packets, data packets, or datagrams and contain data, along with special identifying information in headers and trailers at the beginning and end of the packet. 17
  • 18. Transport Layer Transport layer is responsible for: Error checking and requests retransmission of data if it detects errors. The Transport layer might or might not guarantee successful delivery of data (depends on the transport protocol used). Understanding the OSI Model (Continued) protocol used). Data is called ‘segment’ Session Layer Session layer is responsible for: Establishing and maintaining a session between two networked stations or hosts. A host is any computer or other device on a network that has been assigned an IP address. 18
  • 19. Presentation Layer • Presentation layer is responsible for: receiving requests for files from the Application layer, and presents the requests to the Session layer. • The Presentation layer reformats, compresses, or encrypts data as necessary. Understanding the OSI Model (Continued) • The Presentation layer reformats, compresses, or encrypts data as necessary. Application Layer • The Application layer of the OSI model is responsible for interfacing with application software, such as Web browsers or Web servers. 19
  • 20. TCP/IP Protocols at Each Layer (Continued) 20
  • 21. The OSI Model Applied to a TCP/IP Network The Web browser wants to make a request to a Web server, and processes the request using an API (Application Program Interface )call to the OS. The API process packages the data using HTTP format, which includes an HTTP header, and addresses it to an IP address and port 80, which is the default port for a Web server. 21 Fig 5-33 An application asks the OS to do something using an API call
  • 22. The OSI Model Applied to a TCP/IP Network (Continued) • HTTP delivers the package to TCP, giving the destination IP address and port. 22
  • 23. The OSI Model Applied to a TCP/IP Network (Continued) • TCP hands the data off to IP, which resides in the network layer and is also managed by the OS. 23
  • 24. The OSI Model Applied to a TCP/IP Network (Continued) The data with its header information is a long stream of bytes. IP breaks it into individual packets. IP adds its own IP header that contains its own IP address (source) and the server’s IP address (destination). IP passes the packets off to the hardware (NIC).to the hardware (NIC). 24 Fig 5-36 IP divides data into packets, which are then released to the network
  • 25. The OSI Model Applied to a TCP/IP Network (Continued) On the NIC, each packet is given information at its beginning and end in the form of frame. A checksum is calculated using acalculated using a technique called cyclical redundancy check (CRC). Then each frame is sent off to the Ethernet cable. At the destination, the checksum is verified and passed to the IP layer to be regrouped. 25
  • 26. The OSI Model Applied to a TCP/IP Network (Continued) • IP then passes the reassembled data and header stream on to the TCP layer who acknowledges the TCP layer on the client. 26
  • 27. The OSI Model Applied to a TCP/IP Network (Continued) • The HTTP server, listening at port 80, receives the data and passes it on to the Web server. 27
  • 28. TCP/IP Protocols at Each Layer (Continued) 28
  • 29. • TCP/IP covers the first five layers of the OSI model, and is included in an operating system as a group of utilities called the TCP/IP stack. TCP/IP Protocols at Each Layer • Figure 5-41 shows the four major groupings of the OSI model as applied to TCP/IP networks. 29
  • 30. 30
  • 31. • The first three layers of the OSI model are handled by the protocol specific to the application using it and are best treated as a single group rather than Protocols at the Application, Presentation, and Session Layers treated as a single group rather than unique layers. • The language or protocol each of these applications uses is listed at the Application, Presentation, and Session layers. 31
  • 32. • A TCP/IP network has two protocols that work at the Transport layer; one protocol guarantees delivery and the other does not. • With TCP/IP, the protocol that guarantees delivery is TCP and the Protocols at the Transport Layer • With TCP/IP, the protocol that guarantees delivery is TCP and the protocol that does not is UDP (User Datagram Protocol). • TCP is used for client and server requests and responses. • UDP ?? 32
  • 33. • Because TCP establishes a connection, it is called a connection-oriented protocol. • UDP is a protocol that sends data Protocols at the Transport Layer (Continued) • UDP is a protocol that sends data without caring about whether the data is received. • It does not establish a connection first; thus, it is called a connectionless protocol. 33
  • 34.
  • 35. • TCP and UDP communicate with the Network layer, which is sometimes called the Internet layer. • Some of the other supporting protocols include ARP (Address Resolution Protocol), responsible for locating a host on a LAN; RARP (Reverse Address Protocols at the Network Layer locating a host on a LAN; RARP (Reverse Address Resolution Protocol), responsible for discovering the Internet address of a host on a LAN; and ICMP (Internet Control Message Protocol), responsible for communicating problems with transmission to devices that need to know about these problems. 35
  • 36. • PPP (Point-to-Point Protocol) is used over telephone lines, and allows a computer to connect to a network using a modem. • PPP is the most popular protocol for Protocols at the Data Link and Physical Layers • PPP is the most popular protocol for managing network transmission from one modem to another. 36
  • 37. Addressing on a Network 37
  • 38. • MAC addresses function at the lowest (Data Link) networking level. • If a host does not know the MAC address of another host on a local area network, it uses the operating system to discover the MAC (Media Access Control)Addresses uses the operating system to discover the MAC address. • MAC-48 addresses in human-friendly form is six groups of two hexadecimal digits • e.g. 01-23-45-67-89-ab or 01:23:45:67:89:ab 38
  • 39. • All the protocols of the TCP/IP suite identify a device on the Internet or an intranet by its IP address. • An IP address is 32 bits long, made up of 4 bytes separated by periods. • Within an IP address, each of the four IP Addresses • Within an IP address, each of the four numbers separated by periods is called an octet. • The first part of an IP address identifies the network, and the last part identifies the host. 39
  • 40. • IP addresses that can be used by companies and individuals are divided into three classes: Class A, Class B, and Class C, based on the number of possible IP addresses in each network within each class. Classes of IP Addresses class. • The group of IP addresses assigned to an organization are unique to all other IP addresses on the Internet and are available for use on the Internet. • The IP addresses available to the Internet are called public IP addresses. 40
  • 41. • Private IP addresses are IP addresses that are assigned by a network administrator for use on private intranets that are isolated from the Internet. • The RFC 1918 recommends that the Private IP Addresses • The RFC 1918 recommends that the following IP addresses be used for private networks: – 10.0.0.0 through 10.255.255.255 – 172.16.0.0 through 172.31.255.255 – 192.168.0.0 through 192. 168. 255.255 41
  • 42. • Instead of IP addresses permanently being assigned to computers (called static IP addresses), an IP address is assigned for the current session only Dynamically Assigned IP Addresses assigned for the current session only (called a dynamic IP address). • Internet service providers (ISPs) are organizations through which individuals and businesses connect to the Internet. 42
  • 43. • If the hosts on a network using private IP addresses need to access the Internet, a problem arises because the private IP addresses are not allowed on the Internet. Network Address Translation • The solution is to use NAT (Network Address Translation), which uses a single public IP address to access the Internet on behalf of all hosts on the network using other IP addresses. 43
  • 44.
  • 45. • Because of an impending shortage of IP addresses, as well as some limitations in the current standards for IP, a new scheme of IP addresses called the IPv6 (IP version 6) standard is currently being Plans for New IP Addresses (IP version 6) standard is currently being developed and implemented. • Current IP addresses using the current IPv4 (IP version 4) have 32 bits with eight bits in each of four octets. 45
  • 46. • With the new system, each address segment can have 32 bits, for a total of 128 bits for the entire address. • A disadvantage of IPv6 is the fact that so much software used on the Internet would Plans for New IP Addresses (Continued) much software used on the Internet would become outdated because current software is designed to hold 32-bit IP addresses and, with the new system, this number would no longer be sufficient. 46
  • 47.
  • 48. IPv6 Status April 2013 • IPv6 address allocation has happened and is happening very smoothly • More work in regional and local transit networkstransit networks • Content providers (especially local content) and enterprise customers need to keep working on enabling IPv6 in their Internet resources
  • 49. • A port is a number used to address software or services running on a computer. • A host computer might have several services running on it. Ports services running on it. • Each server running on the host is assigned a port. • The port is written at the end of the IP address, separated from the IP address with a colon—like this: 169.49.209.19:80 49