Lesson 1: Introduction, History, and Internet Architecture Flashcards

1
Q

Who created the first experiment for the internet and how was it done?

A

J.C.R. Licklider led researchers Roberts to connect 2 computers, one in Massachusetts and one in California, via dial up telephone line

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the initial APRANET (1969)

A

Created by Roberts, it was a network of 4 computer nodes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the Network Control Protocol (NCP) and why was it created?

A

The first APRANET host-to-host protocol was created to allow user application development (email)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Who created TCP/IP, and for what functions?

A

Bob Kahn. New version of NCP that used open-architecture networking. IP for simple packet forwarding and addressing, TCP for flow control and lost packets recovery

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the DNS

A

Domain Name System, used to translate domain names into IP addresses

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the internet architecture?

A

layered protocol stack model, each layer dependent on service above and below it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what is the OSI model?

A

7 layers: application, presentation, session, transport, network, data link, and physical

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the traditional Internet Architecture Model?

A

5 layers: application, transport, network, data link, and physical

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what are sockets?

A

the interface (how the layer is accessed) between the application and transport layer in the internet architecture model.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

name 4 protocols in the application layer.

A

HTTP, SMTP, FTP, DNS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is a packet of information called in the application layer

A

message

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does the presentation layer do?

A

formats information and sends to application layer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what is the session layer?

A

manages different transport streams within the same session between user applications

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what is the transport layer and what are its protocols?

A

responsible for end to end communication between end hosts. TCP and UDP.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is TCP?

A

transport control protocol, connection oriented service to application layer, manages message delivery to application, flow control, and congestion-control

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what is UDP?

A

user datagram protocol, connectionLESS, service to application layer without any reliability

17
Q

what is a packet of information called at the transport layer?

A

segment

18
Q

what is a packet of information called at the network layer?

A

datagram

19
Q

what is the network layer and its protocols?

A

moves datagrams between internet hosts. IP and routing

20
Q

what is the IP?

A

governs how data is sent and received across the internet, defines the hosts and routing

21
Q

what are packets of information called at the data link layer?

A

frames

22
Q

what are protocol examples at the data link layer?

A

Ethernet, WiFi, PPP

23
Q

what happens at the data link layer?

A

moves frame one node (host or router) to the next node. some guarantee of transmission delivery, but no reliability services like TCP

24
Q

what is encapsulation?

A

process of appending a header to a payload from the previous layer. used for layers and protocols to communicate information to each other.

25
Q

what is de-encapsulation?

A

the reverse process, where the header is stripped at each layer

26
Q
A