2.1 - Introduction to IP Flashcards
What does the ‘moving truck’ symbolize in networking?
The ‘moving truck’ represents Internet Protocol (IP) that transports data across the network.
What is the role of the network in the moving truck metaphor?
The network is the ‘road’ used to transport the data, such as wireless, DSL, cable, or Ethernet.
What does the ‘data box’ represent in the networking model?
The ‘data box’ symbolizes the encapsulated data within an IP packet that is transported across the network.
What components are included in an Ethernet frame?
An Ethernet frame includes an Ethernet header, payload (which contains the IP packet), and trailer.
What does an IP packet contain?
An IP packet contains the IP header and payload, which may include TCP or UDP segments.
How does TCP ensure reliable data transmission?
TCP is connection-oriented, verifies data receipt, reorders out-of-order messages, retransmits lost data, and manages flow control.
What are the characteristics of UDP?
UDP is connectionless, faster, does not ensure reliable delivery, and is used for real-time applications.
What is the purpose of ‘well-known ports’?
Well-known ports are standardized ports used by common services and applications, like HTTP (port 80) and HTTPS (port 443).
What are ‘ephemeral ports’?
Ephemeral ports are temporary ports assigned by the client device for the duration of a connection, usually between 1024 and 65535.
Why are port numbers important in networking?
Port numbers direct data to the correct application or service on a device, such as HTTP data to port 80.
What does TCP stand for, and what is its main characteristic?
TCP stands for Transmission Control Protocol and is known for its connection-oriented and reliable delivery features.
What does UDP stand for, and what is its main characteristic?
UDP stands for User Datagram Protocol and is known for its connectionless and faster but less reliable delivery.
How does TCP handle data flow control?
TCP uses flow control mechanisms to regulate the speed of data transmission and prevent overwhelming the receiving device.
Why is UDP useful for real-time communication?
UDP is useful for real-time communication because it sends data quickly without the need for acknowledgments or retransmissions.
What role does port numbering play in data delivery?
Port numbering determines the specific application or service that will receive the data on a device, allowing for multiplexing of different services.