Test 1 Flashcards
Which information is used by routers to forward a data packet toward its destination?
A) destination network IP address
B) destination gateway IP address
C) destination data-link address
D) destination host IP address
Describe the purpose of default route (i.e., 0.0.0.0/0) in routing.
DHCP (Dynamic Host Configuration Protocol) is a network protocol that enables automatic assignment of IP addresses and other network configuration parameters to devices on a network.
Briefy describe the four steps of how DHCP works. Steps must be in order.
Describe the purpose of default route (i.e., 0.0.0.0/0) in routing.
DHCP (Dynamic Host Configuration Protocol) is a network protocol that enables automatic assignment of IP addresses and other network configuration parameters to devices on a network.
Wireshark is a popular networking tool in IT industry. * 2 points
Describe at least two reasons why Wireshark is commonly used.
ARP (Address Resolution Protocol) is a protocol used to map a Layer 3 logical address to a Layer 2 physical address on a local network. How ARP works in local area network?
Define unicast, multicast, and broadcast delivery options
Unicast: One-to-one delivery method where a packet is sent from a source to a single destination identified by its unique IP address.
Multicast: One-to-many delivery method where a packet is sent from a source to a group of destinations identified by a multicast group IP address.
Broadcast: One-to-all delivery method where a packet is sent from a source to all devices on a network segment identified by a broadcast IP address.
Using a command prompt, execute a command to find out the IPv4 address of cisco.com.
What command that you can use?
What is the IPv4 address of cisco.com?
Convert the IPv4 address to binary format.
nslookup cisco.com
The IPv4 address of cisco.com is 72.163.4.185
01001000.10100011.00000100.10111001
TTL stands for Time to Live, which is a field in the IP header of a packet that is used to limit the lifespan of a packet in a network. How TTL works for example in a ping command?
TTL limits packet lifespan. In Ping, it’s set in echo request and decremented by routers. Discarded if zero or destination reached. Helps conserve resources and calculate RTT.
Encapsulation is the process where protocols add their information to the data. List the five PDUs in correct order passing down the layers or stack?
Application Layer PDU (message)
Transport Layer PDU (segment)
Network Layer PDU (packet)
Data Link Layer PDU (frame)
Physical Layer PDU (bit)
Outline at least 3 differences between TCP and UDP.
Give an example of common application that uses TCP.
Give an example of common application that uses UDP.
TCP is connection-oriented, provides reliability, and uses flow control, while UDP is connectionless, provides no reliability guarantees, and has no flow control. HTTP uses TCP for transmitting web pages, while DNS uses UDP for translating domain names to IP addresses.
In the Transport Layer, there are two main protocols: TCP (Transmission Control Protocol) and UDP (User Datagram Protocol). Both TCP and UDP use port numbers.
What is the purpose of port numbers?
Give 2 examples of standard port numbers with the associated service or application.
Port numbers are used in the Transport Layer to allow multiple applications on the same device to communicate over the network. Each application is assigned a unique port number to send and receive data through.
Two examples of standard port numbers with associated services or applications are:
Port 80: This is the standard port number for HTTP traffic, used by web servers to receive and respond to web page requests from clients.
Port 53: This is the standard port number for DNS traffic, used by DNS servers to respond to client requests for domain name resolution.
The selection of a network medium depends on several criteria. Outline at least 3 criteria.
The selection of a network medium (also known as a transmission medium or physical layer) depends on several criteria, including:
Bandwidth: The amount of data that can be transmitted over the medium in a given time period. High-bandwidth media can transmit more data per second, which is important for applications that require high-speed data transfer, such as video streaming or large file transfers.
Distance: The maximum distance that data can be transmitted over the medium before it becomes too weak to be detected. Long-distance transmissions require media that can carry a signal over a greater distance without significant degradation, such as fiber optic cable or wireless signals.
Cost: The cost of the medium and associated hardware required for its use. Some media, such as copper cabling, are relatively inexpensive, while others, such as satellite links or specialized fiber optic cables, can be expensive.
Other criteria for selecting a network medium may include reliability, susceptibility to interference, and ease of installation and maintenance.
Describe at least 2 similarities and at least 2 differences of OSI Model and TCP/IP Protocol Suite.
Here are two similarities and two differences between the OSI Model and TCP/IP Protocol Suite:
Similarities:
Both models are used to describe the communication process between devices on a network. They both define a set of protocols and standards that enable devices to communicate with each other.
Both models are divided into layers that correspond to specific functions or tasks. Each layer in both models provides a specific set of services to the layer above it, and relies on services from the layer below it.
Differences:
The OSI Model has seven layers, while the TCP/IP Protocol Suite has four layers. The additional layers in the OSI Model provide more granularity and detail, while the TCP/IP Protocol Suite’s simplified model makes it easier to implement and troubleshoot.
The OSI Model is a theoretical model that is not tied to any specific technology, while the TCP/IP Protocol Suite was designed specifically for the internet and is widely used in network communication today. As a result, the OSI Model is more abstract and less practical, while the TCP/IP Protocol Suite is more concrete and relevant to real-world networking.