Chapter 7 - Networks

studied byStudied by 2090 people
4.7(38)
Get a hint
Hint

Computer Network

1 / 59

flashcard set

Earn XP

Description and Tags

60 Terms

1

Computer Network

A set of independent computer systems interconnected by communication links for the purpose of sharing information and resources.

Found in lecture Chapter 7 Part 1 - Networks

New cards
2

Node

Individual computer on a network.

Range in size from smartphone, tablet, laptop, desktop, to massive supercomputers.

Found in lecture Chapter 7 Part 1 - Networks

New cards
3

Gigabit ethernet

The fastest networking technology for data communication today.

Found in lecture Chapter 7 Part 1 - Networks

New cards
4

Bandwidth

The rate at which information can be sent and received across a network

Found in lecture Chapter 7 Part 2 - Networks and Crash Course Video #28

New cards
5

Dial-up

The slowest networking technology for data communication.

Found in lecture Chapter 7 Part 1 - Networks

New cards
6

PAN

Personal Area Network (typically 30-50 feet for Bluetooth).

Collection of privately owned devices in close proximity to person. e.g.) Bluetooth connection from phone to computer

Found in lecture Chapter 7 Part 1 - Networks

New cards
7

LAN

Local Area Network.

Connects devices in close geographic proximity

Found in lecture Chapter 7 Part 1 - Networks

New cards
8

WLAN

Wireless Local Area Network (typically 150-300 feet for WiFi)

Found in lecture Chapter 7 Part 1 - Networks

New cards
9

MAN

Metropolitan area network (typically a few blocks to a city).

Computer network that connects a geographic area or region larger than LAN but smaller than WAN

Found in lecture Chapter 7 Part 1 - Networks

New cards
10

WAN

Wide Area Network.

Computer network that spans large geographic distance.

Found in lecture Chapter 7 Part 1 - Networks

New cards
11

Bus

single shared communication line

There is a theoretical MAX on a bus length due to collision detection scheme.

Found in lecture Chapter 7 Part 2 - Networks

New cards
12

Repeater

a device that simply amplifies and forwards a signal

Found in lecture Chapter 7 Part 2 - Networks

New cards
13

Bridge

a "smarter" device that has knowledge about the nodes on each bus or LAN

Found in lecture Chapter 7 Part 2 - Networks

New cards
14

Switch

Multi-port device that uses packet switching to forward data to appropriate destination

Found in lecture Chapter 7 Part 2 - Networks

New cards
15

Packet

An information block with a fixed maximum size that is transmitted through the Internet as a single unit

A packet has a MAX size

  • a long message is broken into multiple packets to transmit

Found in lecture Chapter 7 Part 4 - Networks and Crash Course Video #29

New cards
16

Router

Like a bridge, but can transmit packets between two different types of networks.

E.g. Router can send info from a WLAN to a wired Ethernet LAN

Found in lecture Chapter 7 Part 2 - Networks

New cards
17

ISP

Internet Service Provider

Both a user's individual computer and a company's private network are connected to the rest of the world through an ISP.

Found in lecture Chapter 7 Part 2 - Networks

New cards
18

Internet

The Internet is not a single computer network; instead, it is a huge interconnected "network of networks" that includes nodes, LANs, MANs, WANs, bridges, routers, and multiple levels of ISPs.

Found in lecture Chapter 7 Part 2 - Networks

New cards
19

WWAN

Wireless Wide Area Network

Found in lecture Chapter 7 Part 1 - Networks

New cards
20

LAN Topologies

Bus, Ring, Star

Found in lecture Chapter 7 Part 2 - Networks

New cards
21

Ring

connects nodes in a circular fashion (not used much)

Found in lecture Chapter 7 Part 2 - Networks

New cards
22

Star

central node routes info directly to any other node

Found in lecture Chapter 7 Part 2 - Networks

New cards
23

Collision

Occurs when two messages sent at same time

Messages are lost

Found in lecture Chapter 7 Parts 2 and 3 - Networks

New cards
24

Tier 1 Networks

International ISPs (= Internet backbone)

These international ISPs connect with other tier-1 networks

Example: Level 3 Communications provides a Tier-1 network

Found in lecture Chapter 7 Part 2 - Networks

New cards
25

Tier 3 Networks

The last mile providers

Needed to deliver Internet to residential homes and businesses

Found in lecture Chapter 7 Part 2 - Networks

New cards
26

Tier 2 Networks

Connect tier 1 and tier 3

Sometimes tier 2 term used interchangeably with tier 3

Found in lecture Chapter 7 Part 2 - Networks

New cards
27

Internet Society

A nonprofit, nongovernmental, professional society composed of more than 100 worldwide organizations (e.g., foundations, governmental agencies, educational institutions, companies) in 180 countries united by the common goal of maintaining the viability and health of the Internet.

For smooth functioning, it's imperative to have a protocol set that everyone agrees to, the Internet Society is responsible for this.

Found in lecture Chapter 7 Part 3 - Networks

New cards
28

TCP/IP

The "common language" of the Internet.

Found in lecture Chapter 7 Part 3 - Networks

New cards
29

Internet Protocol Stack layers

TOP 5. Application (Ex: HTTP, SMTP, FTP) 4. Transport (Ex: TCP, UDP) 3. Network (Ex: IP) 2b. Logical Link Control (Ex: PPP, Ethernet) 2a. Medium Access Control (Ex: Ethernet)

  1. Physical (Ex: Modem, DSL, Cable modem, WiFi- 4G) BOTTOM

Found in lecture Chapter 7 Part 3 - Networks

New cards
30

Physical Layer

Goal: Create a "bit pipe" between two computers.

The physical layer does NOT provide an error free communication medium. Need error detection AND correction, which is why we need layer #2!

Found in lecture Chapter 7 Part 3 - Networks

New cards
31

Two main types of communication channels

Cable and broadcast

Found in lecture Chapter 7 Part 3 - Networks

New cards
32

Cable communication line examples

fiber-optic, twisted pair/copper

Found in lecture Chapter 7 Part 3 - Networks

New cards
33

Broadcast communication line examples

satellite, microwave, infrared, radio

Found in lecture Chapter 7 Part 3 - Networks

New cards
34

Data Link Layers (2 sub layers)

Goal: Create an error free "bit pipe"

2a. Medium Access Control Protocol

2b. Logical Link Control Protocol

Found in lecture Chapter 7 Part 3 - Networks

New cards
35

Medium Access Control Protocol

Goal: Provides access to the physical channel.

Determines who sends on a shared communication line when multiple nodes want to send messages at the same time.

Found in lecture Chapter 7 Part 3 - Networks

New cards
36

Logical Link Control Protocol

Goal: Detects and corrects errors.

Its job is to solve the error detection and correction problem (to ensure the packet traveling across the bit pipe arrives correctly).

Found in lecture Chapter 7 Part 3 - Networks

New cards
37

ARQ

Automatic Repeat reQuest

This algorithm is the basis for all Data Link Control protocols that are currently used.

How it works:

  1. Sender sends packet

  2. Sender maintains copy of packet

  3. Receiver sends ACK (if packet received correctly)

  4. Sender discards saved packet (if ACK received)

  5. Sender re-sends packet (if no ACK received)

Found in lecture Chapter 7 Part 3 and 4 - Networks

New cards
38

ACK

Acknowledgement

Found in lecture Chapter 7 Part 3 - Networks

New cards
39

ARQ: What happens if packet 2 is lost?

Sender will time out since no ACK has been received ... then re-send packet

Found in lecture Chapter 7 Part 4 - Networks

New cards
40

ARQ: What happens if ACK 2 is lost?

Sender will time out, re-send packet (as, again, no ACK received) receiver discards 2nd copy of packet received & re-sends ACK

Found in lecture Chapter 7 Part 4 - Networks

New cards
41

ARQ: What happens if receiver gets packet 4 but never saw packet 3?

Receiver sends ACK-4 if packet #4 is received correctly Eventually sender will see ACK for 3 was NOT received and will resend.

Found in lecture Chapter 7 Part 4 - Networks

New cards
42

Network Layer

Goal: Deliver a message from source to destination.

The network layer in the internet is called the Internet Protocol (IP).

IP is a BEST EFFORT protocol

  • NO GUARANTEE a given packet will arrive

  • NO GUARANTEE what order several packets from one msg will arrive.

Found in lecture Chapter 7 Part 4 and 5 - Networks

New cards
43

IP-address

On the internet, nodes identify each other using a 32-bit IP-address. IPv4 has 32 bits (four 8-bit numeric quantities, each in range 0-255 such as http://74.125.224.72/)

Found in lecture Chapter 7 Part 4 - Networks and zyBooks Section 7.2 and Internet History reading

New cards
44

Host names

Host names are WAY easier than IP addresses to use for us humans

Ex: google.com

Analogy: we prefer Assembly instead of machine language

Found in lecture Chapter 7 Part 4 - Networks

New cards
45

Port Numbers

Connected to different applications

Transport Layer gets packet to port

Well-known port numbers exist on the Internet e.g. DNS always uses port 53 for its communications

Found in lecture Chapter 7 Part 5 - Networks

New cards
46

DNS

Domain Name System

Converts from a symbolic host name to its equivalent IP Address.

Found in lecture Chapter 7 Part 4 - Networks and zyBooks Section 7.2 and 7.4

New cards
47

TCP

Transmission Control Protocol

A reliable transport protocol.

Creates an error-free delivery service.

TCP will also order the packets correctly for the message.

TCP uses the same ARQ algorithm as DLL.

Found in lecture Chapter 7 Part 5 - Networks

New cards
48

UDP

User Datagram Protocol

An unreliable transport protocol

Used for quick/fast communication, e.g. streaming audio or video.

Found in lecture Chapter 7 Part 5 - Networks

New cards
49

Why do we need ARQ at both the data link layer AND the transport layer?

Need ARQ at data link layer as physical medium has issues.

  • No sense passing packet to network layer if there are issues in it

Also, network layer is BEST effort protocol - Packet could be lost in this layer

  • TCP needs to ensure all packets all arrive

Found in lecture Chapter 7 Part 5 - Networks

New cards
50

DLL fixes ____ issues TCP fixes ____ issues

physical layer network layer

Found in lecture Chapter 7 Part 5 - Networks

New cards
51

Application Layer

Goal: Provide rules to offer end-user services

TCP will get messages to the application. The application then needs to have rules on what to do with those messages.

Found in lecture Chapter 7 Part 5 - Networks

New cards
52

Client/Server Model

In most network protocols, source acts as a client and destination acts as a server

HTTP client requests a web page, server responds!

IP is connectionless, so packets may NOT follow the same path!

Found in lecture Chapter 7 Part 5 - Networks

New cards
53

URL

Uniform Resource Locator

A symbolic string that identifies a webpage.

Found in zyBooks Section 7.8

New cards
54

CSS

Cascading Style Sheets

Helps to stylize a webpage with color, sizes, fonts and more

Found in lecture Chapter 7 Part 5 - Networks

New cards
55

Transport Layer

Goal: Create a program-to-program delivery service

Get the packet to the program on the computer that is expecting it

Found in lecture Chapter 7 Part 5 - Networks

New cards
56

Top-level Domain

.edu in cs.mines.edu

Found in lecture Chapter 7 Part 3 - Networks and zyBook Section 7.8

New cards
57

Web Crawler

Pre-visits web pages to build an index of words

Found in lecture Chapter 7 Part 3 - Networks and zyBook Section 7.6

New cards
58

Hyperlink

A way to move from one page on the web to another.

Found in lecture Chapter 7 Part 5 - Networks and Crash Course Video #30

New cards
59

Web browser

A program for reading and interpreting websites.

Found in lecture Chapter 7 Part 5 - Networks and Crash Course Video #30

New cards
60

How did early search engines work?

Search results were based on number of times the word appeared on the page.

Found in lecture Chapter 7 Part 5 - Networks and Crash Course Video #30

New cards

Explore top notes

note Note
studied byStudied by 10 people
... ago
5.0(1)
note Note
studied byStudied by 48 people
... ago
5.0(1)
note Note
studied byStudied by 46 people
... ago
5.0(1)
note Note
studied byStudied by 67 people
... ago
5.0(2)
note Note
studied byStudied by 13060 people
... ago
4.8(55)
note Note
studied byStudied by 103 people
... ago
5.0(1)
note Note
studied byStudied by 19 people
... ago
5.0(1)

Explore top flashcards

flashcards Flashcard (33)
studied byStudied by 1 person
... ago
5.0(1)
flashcards Flashcard (58)
studied byStudied by 308 people
... ago
4.7(16)
flashcards Flashcard (41)
studied byStudied by 25 people
... ago
5.0(1)
flashcards Flashcard (42)
studied byStudied by 12 people
... ago
5.0(1)
flashcards Flashcard (107)
studied byStudied by 6 people
... ago
5.0(1)
flashcards Flashcard (69)
studied byStudied by 227 people
... ago
5.0(3)
flashcards Flashcard (96)
studied byStudied by 2 people
... ago
5.0(1)
flashcards Flashcard (148)
studied byStudied by 3 people
... ago
5.0(1)
robot