SlideShare a Scribd company logo
Internetworkin
g
May 1, 2001
Topics
• Protocol layering and encapsulation
• Internetworking with hubs, bridges,
and routers
• The Internet Protocol (IP)
• The global Internet
class30.ppt
15-213
“The course that gives CMU its Zip!”
CS 213 S’01– 2 –class30.ppt
Typical computer system
Local/IO BusLocal/IO Bus
MemoryMemory Network
adapter
Network
adapter
IDE disk
controller
IDE disk
controller
Video
adapter
Video
adapter
DisplayDisplay NetworkNetwork
ProcessorProcessor Interrupt
controller
Interrupt
controller
SCSI
controller
SCSI
controller
SCSI busSCSI bus
Serial port
controller
Serial port
controller
Parallel port
controller
Parallel port
controller
Keyboard
controller
Keyboard
controller
KeyboardKeyboard MouseMouse PrinterPrinterModemModem
disk
disk cdrom
CS 213 S’01– 3 –class30.ppt
Generic
network
Interconnect (wires, repeaters, bridges, and routers)Interconnect (wires, repeaters, bridges, and routers)
softwaresoftware
hardwarehardware
softwaresoftware
hardwarehardware
link link link
host host
protocol
stack
network adapter/
interface card
OS code
softwaresoftware
hardwarehardware
CS 213 S’01– 4 –class30.ppt
Protocols
A protocol defines the format of packets and the
rules for communicating them across the network.
Different protocols provide different levels of
service:
• simple error correction (ethernet)
• uniform name space, unreliable best-effort datagrams (host-
host) (IP)
• reliable byte streams (TCP)
• unreliable best-effort datagrams (process-process) (UDP)
• multimedia data retrieval (HTTP)
Crucial idea: protocols leverage off of the
capabilities of other protocols.
CS 213 S’01– 5 –class30.ppt
Protocol layering
Protocols provide specialized
services by relying on services
provided by lower-level protocols
(i.e., they leverage lower-level
services).
Reliable
byte stream
delivery
(process-
process)
Unreliable
best effort
datagram
delivery
(host-
host)
Unreliable
best effort
datagram
delivery
(process-
process)
User application program (FTP, Telnet, WWW, email)User application program (FTP, Telnet, WWW, email)
User datagram protocol
(UDP)
User datagram protocol
(UDP)
Transmission control
protocol (TCP)
Transmission control
protocol (TCP)
Internet Protocol (IP)Internet Protocol (IP)
Network interface (ethernet)Network interface (ethernet)
hardwarehardware Physical
connectio
n
interface between
user code and OS
code
(Sockets interface)
CS 213 S’01– 6 –class30.ppt
Encapsulation
TCP segment
header
TCP segment
header datadata
datadata
Ethernet frame
header
Ethernet frame
header
IP datagram
header
IP datagram
header
TCP segment
header
TCP segment
header datadata
IP datagram
header
IP datagram
header
TCP segment
header
TCP segment
header datadata
Application program
TCP
IP
Adapter
Network
OS code
User code
User Interface (API)
OS/adapter interface
(exception mechanism)
Adapter/Network interface
CS 213 S’01– 7 –class30.ppt
Basic network
types
System area network
(SAN)
• same room (meters)
• 300 MB/s Cray T3E
Local area network
(LAN)
• same bldg or campus
(kilometers)
• 10 Mb/sEthernet
• 100 Mb/s Fast Ethernet
• 100 Mb/s FDDI
• 150 Mb/s OC-3 ATM
• 622 Mb/s OC-12 ATM
Metropolitan area
network (MAN)
• same city (10’s of
kilometers)
• 800 Mb/s Gigabit Nectar
Wide area network
(WAN)
• nationwide or worldwide
(1000’s of kilometers)
• telephone system
• 1.544 Mb/s T1 carrier
• 44.736 Mb/s T3 carrier
• Global Internet
CS 213 S’01– 8 –class30.ppt
The internetworking idea
(Kahn, 1972)
Build a single network (an interconnected set of
networks, or internetwork, or internet) out of a
large collection of separate networks.
• Each network must stand on its own, with no internal changes
allowed to connect to the internet.
• Communications should be on a best-effort basis.
• “black boxes” (later called routers) should be used to connect
the networks.
• No global control at the operations level.
CS 213 S’01– 9 –class30.ppt
Internetworking
challengesChallenges:
• heterogeneity
– lots of different kinds of networks (Ethernet, FDDI, ATM,
wireless, point-to-point)
– how to unify this hodgepodge?
• scale
– how to provide uniques names for potentially billions of
nodes? (naming)
– how to find all these nodes? (forwarding and routing)
Note: internet refers to a general idea, Internet
refers to a particular implementation of that idea
(The global IP Internet).
CS 213 S’01– 10 –class30.ppt
Internetworking with repeaters
r
r
r
r
Repeaters (also called
hubs)
(r in the figure) directly
transfer bits from their
inputs to their outputs
CS 213 S’01– 11 –class30.ppt
Internetworking with
repeaters
Host on
network A
Host on
network B
Telnet,
FTP,
HTTP,
email
application
transport
network
data link
physical
application
transport
network
data link
10Base-T physical
Repeater
(forwards bits)
CS 213 S’01– 12 –class30.ppt
Internetworking with repeaters:
Pros and cons
Pros
• Transparency
– LANS can be connected without any awareness from the
hosts.
• Useful for serving multiple machines in an office from one
ethernet outlet.
Cons
• Not scalable
– ethernet standard allows only 4 repeaters.
– more than 4 would introduce delays that would break
contention detection.
• No heterogeneity
– Networks connected with repeaters must have identical
electrical properties.
CS 213 S’01– 13 –class30.ppt
Internetworking with bridges
b
b
b
b
Bridges (b In the figure)
maintain a cache of hosts
on their input segments.
Selectively transfer
ethernet frames from their
inputs to their outputs.
CS 213 S’01– 14 –class30.ppt
Internetworking with
bridges
Host on
network A
Host on
network B
Telnet,
FTP,
HTTP,
email
application
transport
network
data link
physical
application
transport
network
data linkCSMA/CD
10Base-T physical
Bridge
(forwards ethernet
frames)
CS 213 S’01– 15 –class30.ppt
Internetworking with bridges:
Pros and consPros
• Transparency
– LANS can be connected without any awareness from the
hosts
– popular solution for campus-size networks
Cons
• Transparency can be misleading
– looks like a single Ethernet segment, but really isn’t
– packets can be dropped, latencies vary
• Homogeneity
– can only support networks with identical frame headers
(e.g., Ethernet/FDDI)
– however, can connect different speed Ethernets
• Scalability
– tens of networks only
» bridges forward all broadcast frames
» increased latency
CS 213 S’01– 16 –class30.ppt
Internetworking with
routersDef: An internetwork (internet for short) is an
arbitrary collection of physical networks
interconnected by routers to provide some sort
of host-to-host packet delivery service.
internetinternet
hosthost
hosthost
hosthost
hosthost
CS 213 S’01– 17 –class30.ppt
Building an
internet
XX
YY ZZ
network 2 (ECE)
adapteradapter adapteradapteradapteradapter
AA
BB CC
network 1 (SCS)
adapteradapter adapteradapteradapteradapter
We start with two separate, unconnected computer networks (subnets),
which are at different locations, and possibly built by different vendors.
Ethernet ATM
Question: How to present the illusion of one network?
CS 213 S’01– 18 –class30.ppt
Building an internet
(cont)
XX
YY ZZ
network 2 (ECE)
adapteradapter adapteradapteradapteradapter
AA
BB C (router)C (router)
network 1 (SCS)
adapteradapter adapteradapteradapteradapter
Next we physically connect one of the computers, called a router
(in this case computer C), to each of the networks.
adapteradapter
CS 213 S’01– 19 –class30.ppt
Building an internet
(cont)
XX
YY ZZ
network 2 (ECE)
adapteradapter adapteradapteradapteradapter
AA
BB C (router)C (router)
network 1 (SCS)
adapteradapter adapteradapteradapteradapter adapteradapter
128.2.250.1
Finally, we run a software implementation of the Internet
Protocol (IP)
on each host and router. IP provides a global name space for
the hosts, routing messages between network1 and network 2 if
necessary.
IP addresses:
128.2.250.0
128.2.80.0128.2.250.2 128.2.80.1 128.2.80.2 128.2.80.3
CS 213 S’01– 20 –class30.ppt
Building an internet
(cont)
internetinternet
128.2.250.1
128.2.250.1
128.2.80.3
128.2.80.3
128.2.80.1
128.2.80.1
128.2.250.0
128.2.80.3
128.2.250.0
128.2.80.3
128.2.250.2
128.2.250.2
128.2.80.2
128.2.80.2
At this point we have an internet consisting of 6 computers built from
2 original networks. Each computer on our internet can communicate
with any other computer. IP provides the illusion that there is just
one network.
CS 213 S’01– 21 –class30.ppt
Internetworking with
routers
Host on
network A
Host on
network B
Telnet,
FTP,
HTTP,
email
application
transport
network
data link
physical
application
transport
network
data linkCSMA/CD
10Base-T physical
Router
(forwards IP packets)
IP
CS 213 S’01– 22 –class30.ppt
IP: Internetworking with
routers
The “Hourglass Model”,
Dave Clark, MIT
IP
Many different kinds
of applications
and
higher-level
protocols
Many different
kinds
of networks
IP is the most successful
protocol ever developed
Keys to success:
• simple enough to implement on top
of any physical network
– e.g., two tin cans and a string.
• rich enough to serve as the base
for implementations of more
complicated protocols and
applications.
– The IP designers never dreamed
of something like the Web.
• “rough consensus and working
code”
– resulted in solid implementable
specs.
CS 213 S’01– 23 –class30.ppt
Internet protocol stack
Reliable
byte stream
delivery
(process-
process)
Unreliable
best effort
datagram
delivery
(host-
host)
Unreliable
best effort
datagram
delivery
(process-
process)
User application program (FTP, Telnet, WWW, email)User application program (FTP, Telnet, WWW, email)
User datagram protocol
(UDP)
User datagram protocol
(UDP)
Transmission control
protocol (TCP)
Transmission control
protocol (TCP)
Internet Protocol (IP)Internet Protocol (IP)
Network interface (ethernet)Network interface (ethernet)
hardwarehardware Physical
connectio
n
Berkeley sockets
interface
CS 213 S’01– 24 –class30.ppt
IP service model
IP service model:
• Delivery model: IP provides best-effort delivery of
datagram (connectionless) packets between two hosts.
– IP tries but doesn’t guarantee that packets will arrive
(best effort)
– packets can be lost or duplicated (unreliable)
– ordering of datagrams not guaranteed (connectionless)
• Naming scheme: IP provides a unique address (name) for
each host in the Internet.
Why would such a limited delivery model be
useful?
• simple, so it runs on any kind of network
• provides a basis for building more sophisticated and user-
friendly protocols like TCP and UDP
CS 213 S’01– 25 –class30.ppt
IP datagram delivery:
Example internet
R1
R2
H1 H2 H3
Network 3 (FDDI)
H4 H5 H6
H7 H8R3
Network 2
(Ethernet) Network 4
(Point-to-point)
Network 1 (Ethernet)
CS 213 S’01– 26 –class30.ppt
IP layering
IP
TCP
ETH
IP
ETH FDDI
IP
FDDI P2P
IP
P2P ETH
IP
TCP
ETH
Protocol layers used to connect host H1 to host H8 in example
internet.
H1 R1 R2 R3 H8
CS 213 S’01– 27 –class30.ppt
Basic Internet
components
An Internet backbone is a collection of
routers (nationwide or worldwide)
connected by high-speed point-to-point
networks.
A Network Access Point (NAP) is a router
that connects multiple backbones
(sometimes referred to as peers).
Regional networks are smaller backbones
that cover smaller geographical areas
(e.g., cities or states)
A point of presence (POP) is a machine
that is connected to the Internet.
Internet Service Providers (ISPs) provide
dial-up or direct access to POPs.
CS 213 S’01– 28 –class30.ppt
The Internet circa
1993
In 1993, the Internet consisted of one
backbone (NSFNET) that connected 13
sites via 45 Mbs T3 links.
• Merit (Univ of Mich), NCSA (Illinois), Cornell Theory
Center, Pittsburgh Supercomputing Center, San
Diego Supercomputing Center, John von Neumann
Center (Princeton), BARRNet (Palo Alto), MidNet
(Lincoln, NE), WestNet (Salt Lake City),
NorthwestNet (Seattle), SESQUINET (Rice),
SURANET (Georgia Tech).
Connecting to the Internet involved
connecting one of your routers to a router
at a backbone site, or to a regional
network that was already connected to
the backbone.
CS 213 S’01– 29 –class30.ppt
The Internet backbone
(circa 1993)
CS 213 S’01– 30 –class30.ppt
Current NAP-based
Internet architecture
In the early 90’s commercial outfits were building
their own high-speed backbones, connecting to
NSFNET, and selling access to their POPs to
companies, ISPs, and individuals.
In 1995, NSF decommissioned NSFNET, and
fostered creation of a collection of NAPs to
connect the commercial backbones.
Currently in the US there are about 50
commercial backbones connected by ~12 NAPs
(peering points).
Similar architecture worldwide connects national
networks to the Internet.
CS 213 S’01– 31 –class30.ppt
Internet connection
hierarchy
NAP NAP
Backbone BackboneBackboneBackbone
NAP
POPPOP POP
Regional net
POPPOP POP
POPPOP
Small Business
Big BusinessISP
POPPOP POP POP
Pgh employee
dialup
DC employee
POP
T3
T1
ISP (for individuals)
POP
dialup
T1
colocation
sites
CS 213 S’01– 32 –class30.ppt
Network access points
(NAPs)
Source: Boardwatch.com
Note: Peers in this context are
commercial backbones..droh
CS 213 S’01– 33 –class30.ppt
Source: Boardwatch.com
MCI/WorldCom/UUNET Global
Backbone

More Related Content

What's hot

Digital Integrated Circuit (IC) Design
Digital Integrated Circuit (IC) DesignDigital Integrated Circuit (IC) Design
Digital Integrated Circuit (IC) Design
Mahesh Dananjaya
 
Vlsi ppt priyanka
Vlsi ppt priyankaVlsi ppt priyanka
Vlsi ppt priyanka
Priyanka Gaur
 
IC Technology
IC Technology IC Technology
IC Technology
sdpable
 
basic vlsi ppt
basic vlsi pptbasic vlsi ppt
basic vlsi ppt
Sidduzalaki143
 
Vlsi techniques
Vlsi techniquesVlsi techniques
Vlsi techniquesarpit1010
 
Ee213 vlsi introduction
Ee213 vlsi introductionEe213 vlsi introduction
Ee213 vlsi introductionHitesh Gupta
 
VLSI Design
VLSI DesignVLSI Design
VLSI Design
Jabez Winston
 
IC Packaging
IC PackagingIC Packaging
IC Packaging
santoshnimbal
 
OVERVIEW OF IC PACKAGING
OVERVIEW OF IC PACKAGINGOVERVIEW OF IC PACKAGING
OVERVIEW OF IC PACKAGING
Basavaraj Gangur
 
Introduction to VLSI
Introduction to VLSIIntroduction to VLSI
Introduction to VLSIShams Tabrej
 
Electronic manufacturing and the integrated circuit
Electronic manufacturing and the integrated circuitElectronic manufacturing and the integrated circuit
Electronic manufacturing and the integrated circuit
BenediktusMadika1
 
THE CMOS VLSI DESIGN
THE CMOS VLSI DESIGNTHE CMOS VLSI DESIGN
THE CMOS VLSI DESIGN
suryateja swamy
 
VLSI technology
VLSI technologyVLSI technology
VLSI technology
Aidell2583
 
Introduction to VLSI Technology
Introduction to VLSI TechnologyIntroduction to VLSI Technology
Introduction to VLSI Technology
Dr.YNM
 
3D ICs
3D ICs3D ICs
3D ICs
Dinesh Kumar
 
Introduction to VLSI Design
Introduction to VLSI DesignIntroduction to VLSI Design
Introduction to VLSI Design
Kalyan Acharjya
 
Flexible and stretchable electronics
Flexible and stretchable electronicsFlexible and stretchable electronics
Flexible and stretchable electronics
surya shobhan
 
CMOS VLSI design
CMOS VLSI designCMOS VLSI design
CMOS VLSI designRajan Kumar
 

What's hot (20)

Digital Integrated Circuit (IC) Design
Digital Integrated Circuit (IC) DesignDigital Integrated Circuit (IC) Design
Digital Integrated Circuit (IC) Design
 
Vlsi ppt priyanka
Vlsi ppt priyankaVlsi ppt priyanka
Vlsi ppt priyanka
 
IC Technology
IC Technology IC Technology
IC Technology
 
basic vlsi ppt
basic vlsi pptbasic vlsi ppt
basic vlsi ppt
 
Vlsi techniques
Vlsi techniquesVlsi techniques
Vlsi techniques
 
Ee213 vlsi introduction
Ee213 vlsi introductionEe213 vlsi introduction
Ee213 vlsi introduction
 
VLSI Design
VLSI DesignVLSI Design
VLSI Design
 
IC Packaging
IC PackagingIC Packaging
IC Packaging
 
OVERVIEW OF IC PACKAGING
OVERVIEW OF IC PACKAGINGOVERVIEW OF IC PACKAGING
OVERVIEW OF IC PACKAGING
 
Introduction to VLSI
Introduction to VLSIIntroduction to VLSI
Introduction to VLSI
 
Electronic manufacturing and the integrated circuit
Electronic manufacturing and the integrated circuitElectronic manufacturing and the integrated circuit
Electronic manufacturing and the integrated circuit
 
Wire bonding
Wire bondingWire bonding
Wire bonding
 
THE CMOS VLSI DESIGN
THE CMOS VLSI DESIGNTHE CMOS VLSI DESIGN
THE CMOS VLSI DESIGN
 
VLSI technology
VLSI technologyVLSI technology
VLSI technology
 
Analog vlsi
Analog vlsiAnalog vlsi
Analog vlsi
 
Introduction to VLSI Technology
Introduction to VLSI TechnologyIntroduction to VLSI Technology
Introduction to VLSI Technology
 
3D ICs
3D ICs3D ICs
3D ICs
 
Introduction to VLSI Design
Introduction to VLSI DesignIntroduction to VLSI Design
Introduction to VLSI Design
 
Flexible and stretchable electronics
Flexible and stretchable electronicsFlexible and stretchable electronics
Flexible and stretchable electronics
 
CMOS VLSI design
CMOS VLSI designCMOS VLSI design
CMOS VLSI design
 

Viewers also liked

Logic family
Logic familyLogic family
Logic family
dhawal mehta
 
Excel presentation (short)
Excel presentation (short)Excel presentation (short)
Excel presentation (short)
dhawal mehta
 
Backup and recovery
Backup and recoveryBackup and recovery
Backup and recovery
dhawal mehta
 
What Makes Great Infographics
What Makes Great InfographicsWhat Makes Great Infographics
What Makes Great Infographics
SlideShare
 
Masters of SlideShare
Masters of SlideShareMasters of SlideShare
Masters of SlideShare
Kapost
 
STOP! VIEW THIS! 10-Step Checklist When Uploading to Slideshare
STOP! VIEW THIS! 10-Step Checklist When Uploading to SlideshareSTOP! VIEW THIS! 10-Step Checklist When Uploading to Slideshare
STOP! VIEW THIS! 10-Step Checklist When Uploading to Slideshare
Empowered Presentations
 
You Suck At PowerPoint!
You Suck At PowerPoint!You Suck At PowerPoint!
You Suck At PowerPoint!
Jesse Desjardins - @jessedee
 
10 Ways to Win at SlideShare SEO & Presentation Optimization
10 Ways to Win at SlideShare SEO & Presentation Optimization10 Ways to Win at SlideShare SEO & Presentation Optimization
10 Ways to Win at SlideShare SEO & Presentation Optimization
Oneupweb
 
How To Get More From SlideShare - Super-Simple Tips For Content Marketing
How To Get More From SlideShare - Super-Simple Tips For Content MarketingHow To Get More From SlideShare - Super-Simple Tips For Content Marketing
How To Get More From SlideShare - Super-Simple Tips For Content Marketing
Content Marketing Institute
 
2015 Upload Campaigns Calendar - SlideShare
2015 Upload Campaigns Calendar - SlideShare2015 Upload Campaigns Calendar - SlideShare
2015 Upload Campaigns Calendar - SlideShare
SlideShare
 
What to Upload to SlideShare
What to Upload to SlideShareWhat to Upload to SlideShare
What to Upload to SlideShare
SlideShare
 
How to Make Awesome SlideShares: Tips & Tricks
How to Make Awesome SlideShares: Tips & TricksHow to Make Awesome SlideShares: Tips & Tricks
How to Make Awesome SlideShares: Tips & Tricks
SlideShare
 
Getting Started With SlideShare
Getting Started With SlideShareGetting Started With SlideShare
Getting Started With SlideShare
SlideShare
 

Viewers also liked (13)

Logic family
Logic familyLogic family
Logic family
 
Excel presentation (short)
Excel presentation (short)Excel presentation (short)
Excel presentation (short)
 
Backup and recovery
Backup and recoveryBackup and recovery
Backup and recovery
 
What Makes Great Infographics
What Makes Great InfographicsWhat Makes Great Infographics
What Makes Great Infographics
 
Masters of SlideShare
Masters of SlideShareMasters of SlideShare
Masters of SlideShare
 
STOP! VIEW THIS! 10-Step Checklist When Uploading to Slideshare
STOP! VIEW THIS! 10-Step Checklist When Uploading to SlideshareSTOP! VIEW THIS! 10-Step Checklist When Uploading to Slideshare
STOP! VIEW THIS! 10-Step Checklist When Uploading to Slideshare
 
You Suck At PowerPoint!
You Suck At PowerPoint!You Suck At PowerPoint!
You Suck At PowerPoint!
 
10 Ways to Win at SlideShare SEO & Presentation Optimization
10 Ways to Win at SlideShare SEO & Presentation Optimization10 Ways to Win at SlideShare SEO & Presentation Optimization
10 Ways to Win at SlideShare SEO & Presentation Optimization
 
How To Get More From SlideShare - Super-Simple Tips For Content Marketing
How To Get More From SlideShare - Super-Simple Tips For Content MarketingHow To Get More From SlideShare - Super-Simple Tips For Content Marketing
How To Get More From SlideShare - Super-Simple Tips For Content Marketing
 
2015 Upload Campaigns Calendar - SlideShare
2015 Upload Campaigns Calendar - SlideShare2015 Upload Campaigns Calendar - SlideShare
2015 Upload Campaigns Calendar - SlideShare
 
What to Upload to SlideShare
What to Upload to SlideShareWhat to Upload to SlideShare
What to Upload to SlideShare
 
How to Make Awesome SlideShares: Tips & Tricks
How to Make Awesome SlideShares: Tips & TricksHow to Make Awesome SlideShares: Tips & Tricks
How to Make Awesome SlideShares: Tips & Tricks
 
Getting Started With SlideShare
Getting Started With SlideShareGetting Started With SlideShare
Getting Started With SlideShare
 

Similar to Internet service

Networking Hardware
Networking HardwareNetworking Hardware
Networking Hardwareisma ishak
 
Local Area Network – Wired LAN
Local Area Network – Wired LANLocal Area Network – Wired LAN
Local Area Network – Wired LAN
Raj vardhan
 
NET7.PPT
NET7.PPTNET7.PPT
NET7.PPT
ssuser50c54b
 
Networking Technologies02.pptx
Networking Technologies02.pptxNetworking Technologies02.pptx
Networking Technologies02.pptx
ANISHTP
 
Network system on Ahsanullah University of Science & Technology
Network system on Ahsanullah University of Science & TechnologyNetwork system on Ahsanullah University of Science & Technology
Network system on Ahsanullah University of Science & Technology
Manas Saha
 
Networking Technologies Basic's complete notes
Networking Technologies Basic's complete notesNetworking Technologies Basic's complete notes
Networking Technologies Basic's complete notes
IndrajaMeghavathula
 
Acr5 dcb
Acr5 dcbAcr5 dcb
Acr5 dcb
kisloedxxx
 
NETWORK INTERFACE CARD
NETWORK INTERFACE CARDNETWORK INTERFACE CARD
NETWORK INTERFACE CARD
SubhamKumarYadav2
 
Network Interface Card.pdf
Network Interface Card.pdfNetwork Interface Card.pdf
Network Interface Card.pdf
KurtGardy
 
Networing basics
Networing basicsNetworing basics
Networing basicsMohd Arif
 
monotoring Basics2
monotoring Basics2monotoring Basics2
monotoring Basics2
Programmer
 
Network devices
Network devicesNetwork devices
Network devicesarpbak
 
1. Networking Fundamentals.pptx
1. Networking Fundamentals.pptx1. Networking Fundamentals.pptx
1. Networking Fundamentals.pptx
Miguel Prado
 
ch5-network.ppt
ch5-network.pptch5-network.ppt
ch5-network.ppt
JohnColaco1
 
Networking peer-to-peer-powerpoint-presentation4410 (1)
Networking peer-to-peer-powerpoint-presentation4410 (1)Networking peer-to-peer-powerpoint-presentation4410 (1)
Networking peer-to-peer-powerpoint-presentation4410 (1)
sarmad ali
 
Lecture12 ie321 dr_atifshahzad - networks
Lecture12 ie321 dr_atifshahzad - networksLecture12 ie321 dr_atifshahzad - networks
Lecture12 ie321 dr_atifshahzad - networks
Atif Shahzad
 
Basic networking in power point by suprabha
Basic networking in power point by suprabhaBasic networking in power point by suprabha
Basic networking in power point by suprabha
Suprabha Sahoo
 

Similar to Internet service (20)

class28.ppt
class28.pptclass28.ppt
class28.ppt
 
class30.ppt
class30.pptclass30.ppt
class30.ppt
 
internet services
internet servicesinternet services
internet services
 
Networking Hardware
Networking HardwareNetworking Hardware
Networking Hardware
 
Local Area Network – Wired LAN
Local Area Network – Wired LANLocal Area Network – Wired LAN
Local Area Network – Wired LAN
 
NET7.PPT
NET7.PPTNET7.PPT
NET7.PPT
 
Networking Technologies02.pptx
Networking Technologies02.pptxNetworking Technologies02.pptx
Networking Technologies02.pptx
 
Network system on Ahsanullah University of Science & Technology
Network system on Ahsanullah University of Science & TechnologyNetwork system on Ahsanullah University of Science & Technology
Network system on Ahsanullah University of Science & Technology
 
Networking Technologies Basic's complete notes
Networking Technologies Basic's complete notesNetworking Technologies Basic's complete notes
Networking Technologies Basic's complete notes
 
Acr5 dcb
Acr5 dcbAcr5 dcb
Acr5 dcb
 
NETWORK INTERFACE CARD
NETWORK INTERFACE CARDNETWORK INTERFACE CARD
NETWORK INTERFACE CARD
 
Network Interface Card.pdf
Network Interface Card.pdfNetwork Interface Card.pdf
Network Interface Card.pdf
 
Networing basics
Networing basicsNetworing basics
Networing basics
 
monotoring Basics2
monotoring Basics2monotoring Basics2
monotoring Basics2
 
Network devices
Network devicesNetwork devices
Network devices
 
1. Networking Fundamentals.pptx
1. Networking Fundamentals.pptx1. Networking Fundamentals.pptx
1. Networking Fundamentals.pptx
 
ch5-network.ppt
ch5-network.pptch5-network.ppt
ch5-network.ppt
 
Networking peer-to-peer-powerpoint-presentation4410 (1)
Networking peer-to-peer-powerpoint-presentation4410 (1)Networking peer-to-peer-powerpoint-presentation4410 (1)
Networking peer-to-peer-powerpoint-presentation4410 (1)
 
Lecture12 ie321 dr_atifshahzad - networks
Lecture12 ie321 dr_atifshahzad - networksLecture12 ie321 dr_atifshahzad - networks
Lecture12 ie321 dr_atifshahzad - networks
 
Basic networking in power point by suprabha
Basic networking in power point by suprabhaBasic networking in power point by suprabha
Basic networking in power point by suprabha
 

Recently uploaded

JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdfJAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
Javier Lasa
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
3ipehhoa
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
Arif0071
 
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
keoku
 
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC
 
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
eutxy
 
How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
Gal Baras
 
guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
Rogerio Filho
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
nirahealhty
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
3ipehhoa
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Sanjeev Rampal
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
laozhuseo02
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
natyesu
 
Comptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guideComptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guide
GTProductions1
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
JeyaPerumal1
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
JungkooksNonexistent
 
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
3ipehhoa
 
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
ufdana
 
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptxInternet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
VivekSinghShekhawat2
 
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
laozhuseo02
 

Recently uploaded (20)

JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdfJAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
 
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
 
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
 
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
 
How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
 
guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
 
Comptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guideComptia N+ Standard Networking lesson guide
Comptia N+ Standard Networking lesson guide
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
 
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
 
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
 
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptxInternet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
 
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
 

Internet service

  • 1. Internetworkin g May 1, 2001 Topics • Protocol layering and encapsulation • Internetworking with hubs, bridges, and routers • The Internet Protocol (IP) • The global Internet class30.ppt 15-213 “The course that gives CMU its Zip!”
  • 2. CS 213 S’01– 2 –class30.ppt Typical computer system Local/IO BusLocal/IO Bus MemoryMemory Network adapter Network adapter IDE disk controller IDE disk controller Video adapter Video adapter DisplayDisplay NetworkNetwork ProcessorProcessor Interrupt controller Interrupt controller SCSI controller SCSI controller SCSI busSCSI bus Serial port controller Serial port controller Parallel port controller Parallel port controller Keyboard controller Keyboard controller KeyboardKeyboard MouseMouse PrinterPrinterModemModem disk disk cdrom
  • 3. CS 213 S’01– 3 –class30.ppt Generic network Interconnect (wires, repeaters, bridges, and routers)Interconnect (wires, repeaters, bridges, and routers) softwaresoftware hardwarehardware softwaresoftware hardwarehardware link link link host host protocol stack network adapter/ interface card OS code softwaresoftware hardwarehardware
  • 4. CS 213 S’01– 4 –class30.ppt Protocols A protocol defines the format of packets and the rules for communicating them across the network. Different protocols provide different levels of service: • simple error correction (ethernet) • uniform name space, unreliable best-effort datagrams (host- host) (IP) • reliable byte streams (TCP) • unreliable best-effort datagrams (process-process) (UDP) • multimedia data retrieval (HTTP) Crucial idea: protocols leverage off of the capabilities of other protocols.
  • 5. CS 213 S’01– 5 –class30.ppt Protocol layering Protocols provide specialized services by relying on services provided by lower-level protocols (i.e., they leverage lower-level services). Reliable byte stream delivery (process- process) Unreliable best effort datagram delivery (host- host) Unreliable best effort datagram delivery (process- process) User application program (FTP, Telnet, WWW, email)User application program (FTP, Telnet, WWW, email) User datagram protocol (UDP) User datagram protocol (UDP) Transmission control protocol (TCP) Transmission control protocol (TCP) Internet Protocol (IP)Internet Protocol (IP) Network interface (ethernet)Network interface (ethernet) hardwarehardware Physical connectio n interface between user code and OS code (Sockets interface)
  • 6. CS 213 S’01– 6 –class30.ppt Encapsulation TCP segment header TCP segment header datadata datadata Ethernet frame header Ethernet frame header IP datagram header IP datagram header TCP segment header TCP segment header datadata IP datagram header IP datagram header TCP segment header TCP segment header datadata Application program TCP IP Adapter Network OS code User code User Interface (API) OS/adapter interface (exception mechanism) Adapter/Network interface
  • 7. CS 213 S’01– 7 –class30.ppt Basic network types System area network (SAN) • same room (meters) • 300 MB/s Cray T3E Local area network (LAN) • same bldg or campus (kilometers) • 10 Mb/sEthernet • 100 Mb/s Fast Ethernet • 100 Mb/s FDDI • 150 Mb/s OC-3 ATM • 622 Mb/s OC-12 ATM Metropolitan area network (MAN) • same city (10’s of kilometers) • 800 Mb/s Gigabit Nectar Wide area network (WAN) • nationwide or worldwide (1000’s of kilometers) • telephone system • 1.544 Mb/s T1 carrier • 44.736 Mb/s T3 carrier • Global Internet
  • 8. CS 213 S’01– 8 –class30.ppt The internetworking idea (Kahn, 1972) Build a single network (an interconnected set of networks, or internetwork, or internet) out of a large collection of separate networks. • Each network must stand on its own, with no internal changes allowed to connect to the internet. • Communications should be on a best-effort basis. • “black boxes” (later called routers) should be used to connect the networks. • No global control at the operations level.
  • 9. CS 213 S’01– 9 –class30.ppt Internetworking challengesChallenges: • heterogeneity – lots of different kinds of networks (Ethernet, FDDI, ATM, wireless, point-to-point) – how to unify this hodgepodge? • scale – how to provide uniques names for potentially billions of nodes? (naming) – how to find all these nodes? (forwarding and routing) Note: internet refers to a general idea, Internet refers to a particular implementation of that idea (The global IP Internet).
  • 10. CS 213 S’01– 10 –class30.ppt Internetworking with repeaters r r r r Repeaters (also called hubs) (r in the figure) directly transfer bits from their inputs to their outputs
  • 11. CS 213 S’01– 11 –class30.ppt Internetworking with repeaters Host on network A Host on network B Telnet, FTP, HTTP, email application transport network data link physical application transport network data link 10Base-T physical Repeater (forwards bits)
  • 12. CS 213 S’01– 12 –class30.ppt Internetworking with repeaters: Pros and cons Pros • Transparency – LANS can be connected without any awareness from the hosts. • Useful for serving multiple machines in an office from one ethernet outlet. Cons • Not scalable – ethernet standard allows only 4 repeaters. – more than 4 would introduce delays that would break contention detection. • No heterogeneity – Networks connected with repeaters must have identical electrical properties.
  • 13. CS 213 S’01– 13 –class30.ppt Internetworking with bridges b b b b Bridges (b In the figure) maintain a cache of hosts on their input segments. Selectively transfer ethernet frames from their inputs to their outputs.
  • 14. CS 213 S’01– 14 –class30.ppt Internetworking with bridges Host on network A Host on network B Telnet, FTP, HTTP, email application transport network data link physical application transport network data linkCSMA/CD 10Base-T physical Bridge (forwards ethernet frames)
  • 15. CS 213 S’01– 15 –class30.ppt Internetworking with bridges: Pros and consPros • Transparency – LANS can be connected without any awareness from the hosts – popular solution for campus-size networks Cons • Transparency can be misleading – looks like a single Ethernet segment, but really isn’t – packets can be dropped, latencies vary • Homogeneity – can only support networks with identical frame headers (e.g., Ethernet/FDDI) – however, can connect different speed Ethernets • Scalability – tens of networks only » bridges forward all broadcast frames » increased latency
  • 16. CS 213 S’01– 16 –class30.ppt Internetworking with routersDef: An internetwork (internet for short) is an arbitrary collection of physical networks interconnected by routers to provide some sort of host-to-host packet delivery service. internetinternet hosthost hosthost hosthost hosthost
  • 17. CS 213 S’01– 17 –class30.ppt Building an internet XX YY ZZ network 2 (ECE) adapteradapter adapteradapteradapteradapter AA BB CC network 1 (SCS) adapteradapter adapteradapteradapteradapter We start with two separate, unconnected computer networks (subnets), which are at different locations, and possibly built by different vendors. Ethernet ATM Question: How to present the illusion of one network?
  • 18. CS 213 S’01– 18 –class30.ppt Building an internet (cont) XX YY ZZ network 2 (ECE) adapteradapter adapteradapteradapteradapter AA BB C (router)C (router) network 1 (SCS) adapteradapter adapteradapteradapteradapter Next we physically connect one of the computers, called a router (in this case computer C), to each of the networks. adapteradapter
  • 19. CS 213 S’01– 19 –class30.ppt Building an internet (cont) XX YY ZZ network 2 (ECE) adapteradapter adapteradapteradapteradapter AA BB C (router)C (router) network 1 (SCS) adapteradapter adapteradapteradapteradapter adapteradapter 128.2.250.1 Finally, we run a software implementation of the Internet Protocol (IP) on each host and router. IP provides a global name space for the hosts, routing messages between network1 and network 2 if necessary. IP addresses: 128.2.250.0 128.2.80.0128.2.250.2 128.2.80.1 128.2.80.2 128.2.80.3
  • 20. CS 213 S’01– 20 –class30.ppt Building an internet (cont) internetinternet 128.2.250.1 128.2.250.1 128.2.80.3 128.2.80.3 128.2.80.1 128.2.80.1 128.2.250.0 128.2.80.3 128.2.250.0 128.2.80.3 128.2.250.2 128.2.250.2 128.2.80.2 128.2.80.2 At this point we have an internet consisting of 6 computers built from 2 original networks. Each computer on our internet can communicate with any other computer. IP provides the illusion that there is just one network.
  • 21. CS 213 S’01– 21 –class30.ppt Internetworking with routers Host on network A Host on network B Telnet, FTP, HTTP, email application transport network data link physical application transport network data linkCSMA/CD 10Base-T physical Router (forwards IP packets) IP
  • 22. CS 213 S’01– 22 –class30.ppt IP: Internetworking with routers The “Hourglass Model”, Dave Clark, MIT IP Many different kinds of applications and higher-level protocols Many different kinds of networks IP is the most successful protocol ever developed Keys to success: • simple enough to implement on top of any physical network – e.g., two tin cans and a string. • rich enough to serve as the base for implementations of more complicated protocols and applications. – The IP designers never dreamed of something like the Web. • “rough consensus and working code” – resulted in solid implementable specs.
  • 23. CS 213 S’01– 23 –class30.ppt Internet protocol stack Reliable byte stream delivery (process- process) Unreliable best effort datagram delivery (host- host) Unreliable best effort datagram delivery (process- process) User application program (FTP, Telnet, WWW, email)User application program (FTP, Telnet, WWW, email) User datagram protocol (UDP) User datagram protocol (UDP) Transmission control protocol (TCP) Transmission control protocol (TCP) Internet Protocol (IP)Internet Protocol (IP) Network interface (ethernet)Network interface (ethernet) hardwarehardware Physical connectio n Berkeley sockets interface
  • 24. CS 213 S’01– 24 –class30.ppt IP service model IP service model: • Delivery model: IP provides best-effort delivery of datagram (connectionless) packets between two hosts. – IP tries but doesn’t guarantee that packets will arrive (best effort) – packets can be lost or duplicated (unreliable) – ordering of datagrams not guaranteed (connectionless) • Naming scheme: IP provides a unique address (name) for each host in the Internet. Why would such a limited delivery model be useful? • simple, so it runs on any kind of network • provides a basis for building more sophisticated and user- friendly protocols like TCP and UDP
  • 25. CS 213 S’01– 25 –class30.ppt IP datagram delivery: Example internet R1 R2 H1 H2 H3 Network 3 (FDDI) H4 H5 H6 H7 H8R3 Network 2 (Ethernet) Network 4 (Point-to-point) Network 1 (Ethernet)
  • 26. CS 213 S’01– 26 –class30.ppt IP layering IP TCP ETH IP ETH FDDI IP FDDI P2P IP P2P ETH IP TCP ETH Protocol layers used to connect host H1 to host H8 in example internet. H1 R1 R2 R3 H8
  • 27. CS 213 S’01– 27 –class30.ppt Basic Internet components An Internet backbone is a collection of routers (nationwide or worldwide) connected by high-speed point-to-point networks. A Network Access Point (NAP) is a router that connects multiple backbones (sometimes referred to as peers). Regional networks are smaller backbones that cover smaller geographical areas (e.g., cities or states) A point of presence (POP) is a machine that is connected to the Internet. Internet Service Providers (ISPs) provide dial-up or direct access to POPs.
  • 28. CS 213 S’01– 28 –class30.ppt The Internet circa 1993 In 1993, the Internet consisted of one backbone (NSFNET) that connected 13 sites via 45 Mbs T3 links. • Merit (Univ of Mich), NCSA (Illinois), Cornell Theory Center, Pittsburgh Supercomputing Center, San Diego Supercomputing Center, John von Neumann Center (Princeton), BARRNet (Palo Alto), MidNet (Lincoln, NE), WestNet (Salt Lake City), NorthwestNet (Seattle), SESQUINET (Rice), SURANET (Georgia Tech). Connecting to the Internet involved connecting one of your routers to a router at a backbone site, or to a regional network that was already connected to the backbone.
  • 29. CS 213 S’01– 29 –class30.ppt The Internet backbone (circa 1993)
  • 30. CS 213 S’01– 30 –class30.ppt Current NAP-based Internet architecture In the early 90’s commercial outfits were building their own high-speed backbones, connecting to NSFNET, and selling access to their POPs to companies, ISPs, and individuals. In 1995, NSF decommissioned NSFNET, and fostered creation of a collection of NAPs to connect the commercial backbones. Currently in the US there are about 50 commercial backbones connected by ~12 NAPs (peering points). Similar architecture worldwide connects national networks to the Internet.
  • 31. CS 213 S’01– 31 –class30.ppt Internet connection hierarchy NAP NAP Backbone BackboneBackboneBackbone NAP POPPOP POP Regional net POPPOP POP POPPOP Small Business Big BusinessISP POPPOP POP POP Pgh employee dialup DC employee POP T3 T1 ISP (for individuals) POP dialup T1 colocation sites
  • 32. CS 213 S’01– 32 –class30.ppt Network access points (NAPs) Source: Boardwatch.com Note: Peers in this context are commercial backbones..droh
  • 33. CS 213 S’01– 33 –class30.ppt Source: Boardwatch.com MCI/WorldCom/UUNET Global Backbone