Quiz 3 IT 105 CHAP 13 Flashcards
What are parts of the communication model and what does it consist of?
Implemented as a hierarchical protocol stack
Each layer of the stack at the sender node contributes information that is used by the corresponding peer layer at the receiver node
Different protocols for the different aspects of communication
Separating tasks and including well defined interfaces between the tasks
What are the 4 qualities the communication model has?
Adds flexibility
Simplifies design of protocols
Permits modification or substitution of protocols without affecting unrelated tasks
Permits a system to select only the protocols needed for a particular application
What is TCP/IP? What is it based on? What does it encompass?
Transmission Control Protocol/Internet Protocol
Based on five protocol layers, although layers 1 and 2 are not actually specified in the standard. However, the TCP/IP model recognizes the existence of these layers as a necessity.
The TCP/IP protocol suite encompasses an integrated suite of numerous protocols that work together and guide all aspects of communication
How many layers does the TCP/IP have?
5
What is layer 1 called and what are it’s components?
Physical layer
Layer at which communication actually takes place consisting of a bare stream of bits
Primarily implemented in hardware by a network interface controller (NIC)
Physical access protocol includes
-Definition of the medium
-Signaling method, signal parameters, carrier -frequencies, lengths of pulses, synchronization and timing issues
-Method used to physically connect the computer to the medium
What is layer 2’s first section called and what are it’s components?
Data Link Layer
Responsible for the reliable transmission and delivery of packets between two adjacent nodes
Packets at this layer are called frames
Often divided into two sublayers:
Software logical link control (LLC) sublayer
Hardware medium-access control (MAC) sublayer
What are layer 2’s subsections called and what are its components ?
Software logical link control (LLC) sublayer
Error correction, flow control, retransmission, packet reconstruction and IP datagram/frame conversions
Numbers frames and reorders received frames to recreate the original message
Rarely used
Hardware medium-access control (MAC) sublayer
Defines procedures for accessing the channel and detecting errors
Responsible for services such as data encoding, collision handling, synchronization, and multiplexing
What is an example of a data link layer implementation?
Layer 2
What is the concept of switched ethernet?
The Ethernet switch keeps a table of which MAC addresses are accessible through each of its ports
Permits point-to-point connection of any pair of nodes
Multiple pairs can be connected simultaneously
Possible to connect nodes in full-duplex mode
Each pair of connections operates at the maximum bit rate of the network
What is wireless ethernet: WIFI?
Infrastructure mode:
Based on shared access point
CSMA/CA – collision avoidance MAC protocol
Station waits until channel is clear plus a short random amount of time before transmitting
May use ‘request to send’ and ‘clear to send’ options to improve collision avoidance
Ad hoc mode:
Assumes direct connections between nodes
Based on partial mesh network topology
Rarely used
What is layer 3 called and what are its components?
What does the IP protocol consist of?
Network Layer
Also called the internetworking layer or IP layer
IP protocol:
Responsible for routing packets from the source end node to the destination end node through intermediate nodes
Performed using datagram packet switching and logical IP addresses
Unreliable, best-effort delivery service
Size of datagram ranges from 20 to 65,536 bytes
Header size between 20 and 60 bytes
What does layer 3’s network layer transmission consist of?
Communications within a local network:
No routing is required because nodes are directly addressable
Physical addresses for corresponding IP addresses are looked up in a table
IP appends a header with the physical address and passes the datagram to layer 2, the data link layer
Communications sent outside of the local network:
At each intermediate node, the network layer removes the current node address and determines the next node address
The new address is added to the packet and passed to layer 2, the data link layer
What does the operation of IP consist of and what are the two major functions? What is the ARP?
Two major functions
Routes datagrams from node to node until they reach their destination node
Translates IP addresses to physical addresses before it passes the packets to the data link later for delivery
Address Resolution Protocol (ARP):
Implemented at the network layer
Translation of IP address to physical address at each intermediate node until destination is reached
A broadcast of the IP address is sent to every node on the network. The matching node responds with a physical address
Physical address (MAC address in the case of Ethernet) is sent in frame to the data link layer
At final destination, the packet is passed up to the transport layer for deployment to the application layer
What is ICMP and what are it’s 4 qualities?
Internet Control Message Protocol
Auxiliary protocol that creates error messages for failures at the network layer
Error code is encapsulated in an IP datagram and sent to source
Typical messages: ‘Destination Host Unknown’, ‘Time to Live Exceeded’
Used for queries by network tools such as ping and traceroute
What is layer 4 called and what are its components?
What is packetization?
Transport layer
Provides services that support reliable end-to-end communications
Generates the final address of the destination
Responsible for all end-to-end communication facilities
Establishes connection with the destination, provides flow control, data assurance, reordering of packets, error recovery, and connection termination
Packetization:
Breaking up of the message into packets of reasonable size, takes place at this level