OSI material Flashcards

Familiarize with levels, equipment, ports and protocols

1
Q

What does OSI stand for and why is it important?

A

Open Systems Interconnection was defined in the early 1980s by ISO (International Organization of Standards, ISO 7498). It standardized network protocols – which had been largely proprietary to that point. As it stands this is a model or framework that’s abstract and theoretical.

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

What are the layers? How are they numbered?

A

Numbered one to seven from bottom to top, from Physical to Application. Each layer communicates with its peer layer on another device.

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

Explain how data is changed (encapsulated, i.e.) going through the OSI model from application to physical layers.

A

Message entering the stack at Application Layer is DATA (stream). This state is maintained through Presentation and Session layers until it hits the Transport layer – complete with (usually) header material – where it’s called either a SEGMENT (for TCP protocols) or a DATAGRAM (for UDP protocols). It gets more encapsulation in the next (third) layer, the Network layer and is called a PACKET. By the time it goes to the next (second) layer, the Data Link layer, it’s now probably got footers, too – and is called a FRAME. This is converted to bits for communication from physical to physical layer at that point.

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

How is the TCP/IP model related to the OSI model?

A

TCP/IP is a little older (DARPA-related) and has only four layers instead of OSI’s seven. It takes the OSI first two layers – Physical and Data Link – and combines them into the “Link” layer, AKA “network access layer.” Next, the OSI third layer (“network”) is called the “Internet” layer for TCP/IP. The fourth layers, “Transport,” is also called “Transport,” but may also be called the “Host-to-Host” layer for TCP/IP. Finally, the last three OSI layers – Session, Presentation and Application – are combined into the TCP/IP “Application” layer.

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

In TCP/IP, what’s a port?

A

Address numbers for the “Transport” layer that get used in the TCP and uP protocols. AKA a “socket,” the number for any port is agreed to between links. A port allows “a single IP adress to able to support multiple siumltaneous communications, each using a different port number” (Stewart, p. 439). All port numbers are 16 digit binary numbers for a total allowable number of 2^16 or 65,536: 0-1023 are “well-known” or “service” ports: 1024 to 49151 are “registered software ports;” and 49152 to 65535 are “random, dynamic or ephereral” ports.

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

What’s TCP Port 23?

A

Telnet: “Terminal emulation Network” supporting remote connectivity for executing/rnning commands and applications but NOT THE TRANSFER OF FILES.

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

What’s TCP Ports 20 and 21?

A

FTP: “file transfer protocol” is a network app tht DOES SUPPORT EXCHANGE OF FILES that requires anonymous or specific authentication.

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

What’s UDP Port 69?

A

TFTP: “Trivial File Transfer Protocol” is a network app that supports exhange of files that DOES NOT REQUIRE AUTHENTICATION.

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

What’s TCP Port 25?

A

SMTP: “Simple Mail Transfer Protocol” is used to transmit email messages from a client to an email server and from one email server to another.

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

What’s TCP Port 110?

A

POP3: Post Office Protocol used to pull email messages from an inbox on an email server down to an email client.

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

What’s TCP Port 143?

A

IMAP: Internet Message Access Protocol is like POP3 only more secure.

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

What’s UDP Ports 67 and 68?

A

DHCP: Dynamic Host Configuration Protocol uses 67 for server point to point response and 68 for client request broadcasts. It enables centralized control of network addressing.

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

What’s TCP Port 80?

A

HTTP: Hypertext transport protocol transmits web page elements from a web server to web browsers.

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

What’s TCP port 443 (for HTTP encryption)?

A

SSL (secure sockets layer) is VPN like security protocol operating at the Transport layer. Can support HTTPS or any Application layer protocol communications.

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

What is TCP Port 515?

A

LPD: “Line Print Daemon” spools print jobs and sends print jobs to printers

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

What are TCP Ports 6000 through 6063?

A

X Window application program interface (API) GUI for command line operating systems.

17
Q

What are UDP ports 67 and 68?

A

Bootstrap Protocol (BOOTP)/DHCP: connects diskless WSs to a network through autoassinment of IP configuration and download of basic OS elements (forerunner of DHCP)

18
Q

What is TCP Port 2049?

A

NFS: “Network File System” use to support file sharing between dissimilar systems.