Computer Networking

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/45

flashcard set

Earn XP

Description and Tags

CS 465

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

46 Terms

1
New cards

What is the Internet?

The internet is a HUGE number of connected computer, all running on the same protocol.

2
New cards

Endsystems are connected to the internet via what?

links (wired and wireless)

3
New cards

What are link speeds measured in?

bits/second (bps)

4
New cards

List the four types of links

Copper wire, coaxial cable, fiber optics, and satellite (radio)

5
New cards

What type of link is used in landlines?

Copper wire

6
New cards

What type of link is used in TV cables?

Coaxial cable

7
New cards

Which is faster: copper wire or coaxial cable

coaxial cable

8
New cards

What type of link uses light?

Fiber optics

9
New cards

What type of link is used at the bottom of oceans?

Fiber optics

10
New cards

What type of links easily snap and are difficult to fix?

Fiber optics

11
New cards

What type of link is uses in radios and starlink?

Satellite

12
New cards

Why may satellite links be preferred over other links?

Larger range

13
New cards

What directs traffic through the internet?

Packet switches

14
New cards

Can multiple paths/routes be taken in the internet?

Yes, multiple paths can be taken through different links (if another/faster link is congested)

15
New cards

What is the most popular protocol?

TCP/IP

16
New cards

Why should protocols be detailed?

Protocols are how computers/devices communicate with one another. If a protocol is not detailed enough, then the two communicating computers will not understand each other.

17
New cards

What are the two sides of an endsystem/host?

Client and server

18
New cards

Give a brief description of a client.

A client is asking for data from the server (phone, laptop, etc).

19
New cards

Give a brief description of a server.

A server has the data in which the client wants and distributes that data to the client.

20
New cards

What is the difference between a host and an end system?

A host and end system refer to the same thing, and can be used interchangeably.

21
New cards

Give a few examples of hosts or end systems?

Phone, computer, fridge, TV

22
New cards

Why are protocols necessary in computer networking?

Protocols are the rules in place which allow devices to communicate with one another; they are extremely detailed. All computers should be running the same protocol.

23
New cards

What is an ISP?

An Internet Service Provider is someone (a company) who provides an internet service to a consumer base.

24
New cards

What is an edge router?

An edge router is the nearest router which gets your end system onto the internet.

25
New cards

Name at least three different types of access technologies.

Three examples of access technologies are coaxial cables, fiber optic cables, and satellites.

26
New cards

What are access technologies?

Way in which you can connect to the internet.

27
New cards

What does IETF Stand for?

Internet Engineering Task Force

28
New cards

What does RFCs standing for?

Requests for Comments

29
New cards

What is an IETF?

Maintains the documents and the standard RFCs

30
New cards

Describe a distributed application.

Typically involve multiple end systems, but can be run on one machine using multiple process.

31
New cards

What do sockets need to know?

IP’s, Process ID’s, and ports

32
New cards

What is DSL Internet Access?

Uses digital subscriber lines to transmit data over copper wire. DSL modem connects to the DSLAM using a splitter to break down frequencies (this is how a phone can be used while someone is on the internet in the same house).

33
New cards

What is a Hybrid Fiber-Coaxial Access Network

Broadband network that combines fiber-optic and coaxial cable to deliver internet and cable services. It uses VoIP (Voice over IP). CMTS located in cable head end send data in and out to/from the internet.

34
New cards

What is FTTH Internet Access

Uses fiber optic cables to send traffic directly to house (ONT), meaning after the optical splitter no traffic is shared. It’s expensive and not easy to repair if broken. FTTH is usually only found in large cities.

35
New cards

Ethernet Internet Access

Sets of standards and protocols to send data. Uses a ethernet switch to send data to institutional router before going to the institutional ISP. Includes PAN, LAN, WAN/MAN.

36
New cards

DOCSIS

international telecommunications standard that enables high-bandwidth data transfer over an existing coaxial cable TV system. Protocol for modems.

37
New cards

Whats the difference between DOCSIS versions 3.1 and 4

Both versions have an upload speed of 1-2 Gbps, and a download speed of 10 Gbps. However, version 4 introduces latency, better efficiency, and more frequencies.

38
New cards

What is a distributed application?

Any program/process that runs on multiple hosts or processes that exchange information.

39
New cards

What is a socket?

Software endpoints for network communications.

40
New cards

What is socket interface?

The API that allows us to create and use dockets.

41
New cards

Describe Circuit Switched Network.

Old/outdated. How the landline system works. Build the circuit before sending any data. Expensive to build and you must close the circuit when not actively using.|
FDM (Frequency Division Multiplexing) and TDM (Time Division Multiplexing)

42
New cards

What is FDM?

(Frequency Division Multiplexing) each user will get assigned a frequency to use. Bleeding (interference between frequencies) may occur, so a buffer is required. Expensive to run and maintain.

43
New cards

What is TDM?

(Time Division Multiplexing) each user gets a sliver of a frequency at a certain time slot. This is a preferred method. Higher cost, more material, and more time effective than FDM.

44
New cards

Describe a Packet Switched Network.

No path is made before communication starts; instead a path is based on speed, distance, and/or congestions.

At times you can get very fast speeds; but if there is large congestion, then you’ll have slow or maybe even no connection.

45
New cards

What are the types of nodal delays at a router. Include descriptions and formula’s if applicable.

dproc (Processing Delay): time to examine a packet header and decide which link it will be transmitted over.

dtrans (Transmission Delay): the time to push the bits onto a line. (Packet Length or Size)/(Transmission Rate)

dqueue (Queuing Delay): the time a packet waits in the buffer for packets that arrived to the node before it’s transmitted.

dprop (Propagation Delay): the time for the bits to travel from one node to another across the link. (Length of Link)/(Propagation speed)

Total Delay: the sum of all nodal delays on a link. dproc+dtrans+dqueue(if applicable)+dprop

46
New cards

What are the layers in the Internet Protocol Stack?

Application Layer (message): distributed applications that exchange data (e.g. HTTP, SMTP, SFTP).

Transport Layer (segments): messages between two endpoints; ports. (e.g. TCP, UDP)

Network Layer (datagrams): path determination and local addressing.

Data Link Layer: physical addressing.

Physical Layer: Media, signal, and binary transmission.