• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/50

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

50 Cards in this Set

  • Front
  • Back
What are the 7 layers of the OSI Model?
Application
Presentation
Session
Transport
Network
Data-Link
Physical
What is layer #1 of the OSI model?
Physical
STACK
Protocols running simultaneously in a network implementation
What does the top of the OSI model interact with?
The applications running on the computer
What does the bottom of the OSI model interact with?
The Network Medium that the system transmits its Signals over.
What OSI layer converts the data to signals?
Physical
After the OSI's Physical layer converts data to signals, what part of the actual computer transmits those signals over the network medium?
The computer's NIC.
(Network Interface Card)
ENCAPSULATION
(in the OSI model)
The addition of small, relevant pieces of info at each layer.
Protocols provide services for the layer
(above/below) ?
Above
Protocols request services from the layer
(above\below) ?
Below
T/F: Protocols can communicate with other protocols on different computers operating in any layer.
FALSE. Protocols can only communicate with protocols that operate on the same layer that it does.
If a protocol in a layer encrypts data, what would its equivalent protocol on the destination system be responsible for doing?
Decrypting the data.
What is the item passed up/down stack layers as part of encapsulation?
PDU - Protocol Data Unit
PDU (Protocol Data Unit)
A block of data passed up/down the OSI stack layers that contains control information.
Which OSI layers add headers to the PDU?
Transport
Network
Data-Link
Which layer adds a Footer to the PDU?
Data-Link
Which OSI layers are not concerned with networking or network addresses?
The Top 3:
Application
Presentation
Session
T/F: The Application Layer is the application itself.
FALSE.
Explain how applications interact with the Application Layer.
Application processes are initiated within a user application. The data this process creates is handed down to the networking software's Application layer.

ex: A file transfer is initiated within a file transfer program.
What are 3 common signal types that computers on a network exchange in order to communicate with each other?
Electrical
Light
Radio
Electrical signals are used in networks that use ___ cables as a medium.
Copper-based
Light signals are used in networks that use ___ cables as a medium.
Fiber-optic,
and some wireless
Radio signals are used in most ___ networks.
Wireless
To communicate, electrical signals are used to form code in the form of ______.
Positive/Negative Voltage
To communicate, electrical signals are used to form code in the form of ______.
Present/Absent
To communicate, electrical signals are used to form code in the form of ______.
Frequency Variations
Which layer translates data?
Presentation
The ____ layer puts data into a common format.
Presentation
The ___ layer converts data from one protocol to another so it can be exchanged between computers on different operating systems.
Presentation
The ___ layer is responsible for encryption/decryption.
Presentation
The ___ layer translates EBCDIC -> ASCII.
Presentation
This is the last "Upper Layer".
Session
The ___ layer maintains a dialog between computers.
Session
This layer offers 3 modes for certain things: simplex, and half/full duplex.
Session
T/F: The Session layer uses acknowledgment (ACK) messages to help coordinate data transfer.
True
T/F: The Transport layer uses acknowledgment (ACK) messages to help coordinate data transfer.
False. Session layer does this
HALF DUPLEX
Communication goes in both directions, but only one direction at a time.
FULL DUPLEX
Communication goes in both directions at the same time.
The Transport layer connects 2 ____.
Machines
The Session layer connects 2 ____.
Processes
SIMPLEX
Communication that goes in one direction, like radio.
Protocols in this layer are either connectionless or connection-oriented.
Transport
What layers are linked to the TCP/IP suite?
Transport and Network.
TCP (a Transport Protocol)
+
IP (a Network layer protocol)
Name a Connection-Oriented protocol.
TCP
Name a Connectionless protocol.
UDP
Connection-oriented vs Connectionless. Which protocol type has a bigger header, and why?
Connection-oriented.
Delivery is guaranteed, so it uses things like ACK messages and a 3-way handshake. It provides a lot of services to apps in upper layers.
Connection-oriented vs Connectionless. Which protocol type has a higher transmission overhead, and why?
Connection-oriented.
Delivery is guaranteed, so it uses things like ACK messages and a 3-way handshake. It provides a lot of services to apps in upper layers.
In general, what kind of apps use the TCP protocol?
Ones that require bit-perfect transmission.
Ex: If even 1 bit of a transferred program file is wrong, it won't run properly.
In general, what kind of apps use the UDP protocol?
Ones that don't need bit-perfect transmission.
Ex: Streaming video. Delivery isn't guaranteed, and that's OK; quality just suffers a bit.
What are the sizes of TCP and UDP headers?
TCP -- 20 bytes
UDP -- 8 bytes