Chapter 1 Network [Kurose]

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/83

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 9:23 PM on 8/31/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

84 Terms

1
New cards

network edge

hosts, access network, physical media

2
New cards

network core

packet/circuit switching, internet structure

3
New cards

devices connected to the internet

hosts or end systems

4
New cards

packet switches

forward packets (chunks of data)

routers and switches

5
New cards

communication links

fiber, copper, radio, satellite

6
New cards

networks

collection of devices, routers, links managed by an organization

7
New cards

the internet is a _

a network of networks; interconnected ISPs

8
New cards

What are the internet standards?

RFC and IETF

9
New cards

RFC

Request for Comments

10
New cards

IETF

Internet Engineering Task Force - develops and promotes voluntary Internet standards and protocols

11
New cards

"Service" View of the Internet

infrastructure that provides services to applications by providing programming interface to distributed applications

12
New cards

network protocols

define the format, order of messages sent and received among network entities, and actions taken on msg transmission, receipt

13
New cards

"Nuts and Bolts" View of the Internet

a collection of computing devices and packet switches interconnected by links; a network or networks

14
New cards

Access Network

connects the edge device to the router/ larger internet

15
New cards

What are the three different types of access networks?

residential, institutional, mobile access networks

16
New cards

Frequency Division Multiplexing (FDM)

different channels transmitted in different frequency bands; used for cable accessing networks

17
New cards

cable access network

HFC (hybrid fiber coax) - asymmetric; network of cable, fiber attaches home to ISP router and home shares access network to cable headend

18
New cards

Digital Subscriber Line (DSL)

A type of Internet connection that uses phone lines but transmits signals digitally across an always-open connection.

19
New cards

wireless access network

access point gives network access

20
New cards

Enterprise Access Networks (Ethernet)

typically used in companies, universities, etc; has multiple routers

21
New cards

hosts sending function

takes application message, breaks into smaller chunks called packets, transmits packet into access network at a certain bandwidth or transmission rate r

22
New cards

bit

propagates between transmitter and receiver pair

23
New cards

physical link in physical media

lies between transmitter and receiver

24
New cards

Guided Physical Media

signals propagate in solid media: fiber,copper

25
New cards

unguided physical media

signals propagate freely such as radio signals

26
New cards

Twisted Pair (TP)

two insulated copper wires

27
New cards

coaxial wire

bidirectional

28
New cards

Wireless LAN (WLAN)

A type of LAN that does not use wires or cables to create connections, but instead transmits data over radio or infrared waves; WIFI

29
New cards

fiber optic cable

high transmission rate and low bit error rate

30
New cards

packet-switching

hosts break application layer messages into packets and forwards them from router across links on path from source destination

31
New cards

What type of action is forwarding [switching]?

local action: move arriving packets from router's input link to appropriate router output link

32
New cards

What type of action is routing?

global action: determines source-destination paths taken by packets

33
New cards

packet transmission delay

takes L/R seconds to transmit L-bit packet into link at R bps

34
New cards

store and forward

entire packet must arrive at router before it can be transmitted on next link

35
New cards

queueing in packet switching

queue of packets waiting for transmission over output link

36
New cards

When does queueing occur in packet switching?

when work arrives faster than it can be serviced

37
New cards

packet queuing and loss

if arrival rate (in bps) to link exceeds transmission rate (bps) of link for some period of time packets will queue, waiting to be transmitted on output link, packets can be dropped/lost if memory (buffer) in router fills up (i.e too long a queue)

38
New cards

circuit switching

end-end resources allocated to, reserved for call between source and destination; link capacity reserved for call [no sharing]

39
New cards

cons of circuit switching

unused bandwidth is lost if no calls

40
New cards

Frequency Division Multiplexing (FDM)

each call allocated to its own band, can transmit at max rate of the narrow band

41
New cards

Time Division Multiplexing (TDM)

Time divided into slots. Each call allocated periodic slot(s), can transmit at maximum rate of (wider) frequency band, but only during its time slot(s)

42
New cards

when is packet switching ideal?

great for burst data [ sometimes data available to send but not always], resource sharing

43
New cards

How to connect millions of access ISPs?

instead connecting them together connect them to global transmit ISP

44
New cards

How to connect global ISPs together?

via internet exchange points or peering link

45
New cards

What are tier 1 ISPs?

commercial ISPs that provide national and international coverage [at&t,sprint]

46
New cards

What are content network providers?

private network that connects its data center to internet often by bypassing tier-1 and regional ISPs [google,facebook]

47
New cards

Point of Presence (POP)

a local connection to a wide area network

48
New cards

How do packet delay and loss occur?

packets queue in router buffers, waiting for turn for transmission causing queue length to grow when arrival rate to link exceeds output link capacity; packet loss occurs when memory to hold queued packets fills up

49
New cards

What are the four sources for packet delay?

nodal processing, queueing delay, transmission delay, propagation delay

50
New cards

nodal processing

check bit errors, determine output link

51
New cards

queueing delay

time waiting at output link for transmission, depends on congestion level of router

52
New cards

transmission delay

the amount of time required to push all of the packet's bits into the link (L/R)

53
New cards

propagation delay

length of physical link over propagation speed

54
New cards

trace route programs

provides delay measurement from source to router along end-end internet path towards destination

55
New cards

How does trace route work?

sends 3 packets that will reach router on path towards destination, router will return packets to sender, sender measures time interval between transmission and reply

56
New cards

What do the stars on trace route represent?

means no response (probe lost, router not replying)

57
New cards

What is the bottleneck link?

link on end-end path that constrains end-end throughput

58
New cards

layers

each layer implements a service via its own internal layer actions or by relying on services provided by layers below

59
New cards

What are the pros to layered architecture?

shows relationship of system pieces to use as a reference model and modularization eases maintenance, updating of system [change in one area wont affect another]

60
New cards

What are the five layers of internet?

application, transport, network, link, physical [top-down]

61
New cards

application layer

exchanges messages to implement some application service using services of layer below; supporting network applications [HTTP,IMAP,SMTP,DNS]

62
New cards

transport layer

protocol transfers M from one process to another by encapsulating message with a header to create a segment; process-process data transfer [TCP,UDP]

63
New cards

network layer

transfers transport-layer segment from one host to another by encapsulating previous transport segment with a new header; routing of datagrams from source to destination [IP, routing protocols]

64
New cards

link layer

adds a header to message and its called a frame; data transfer between network device [ethernet, wifi]

65
New cards

physical layer

bits on the wire

66
New cards

What happens moving down layers?

headers are added to message called encapsulation

67
New cards

What happens moving up a stack?

headers are read and removed

68
New cards

packet sniffing

an attack by a network interface that reads and records all packets passing by (for example passwords)

69
New cards

IP spoofing

injection of packet with false source address [fake packets]

70
New cards

denial of service [DOS]

attackers make resources [server, bandwidth] unavailable to legitimate traffic by overwhelming resource with fake traffic by sending packets to target from compromised hosts

71
New cards

What is the defense for spoofing?

authentication: proving you are user such as cellular networks provides hardware identity via SIM card

72
New cards

What is the defense for sniffing

?

confidentiality: via encryption [hiding packets]

73
New cards

What is the defense for DOS?

access restrictions: password-protected VPNs

74
New cards

What are integrity checks?

digital signatures that prevent/detect tampering of data

75
New cards

firewalls

specialized middle boxes in access and core networks that are off by default that filter incoming packets to restrict senders, receivers, applications and they also detect and react to DOS attacks

76
New cards

internet working principles

-minimalism, autonomy: no internal changes required to interconnect networks

-best-effort service model

-stateless routing

-decentralized control

77
New cards

protocols

define format, order of msgs sent and received among network, and actions taken on msg transmission, receipt

78
New cards

How to connect end systems to edge router?

-residential access nets

-institutional access networks (school, company)

-mobile access networks

79
New cards

throughput

rate at which bits transferred between sender and receiver

80
New cards

scenario of throughput

larger pipe needed at network core because more traffic through to avoid bottleneck situation

81
New cards

ISO/OSI reference model

Application

Presentation

Session

Transport

Network

Link

Physical

82
New cards

presentation layer OSI

encryption, compression

83
New cards

Session (OSI)

synchronization, checkpointing

84
New cards

What happened to the two layers in the OSI model?

they are now included in the application layer