1. Which layer constructs the Ethernet frame?
Answers
Data link layer
Application layer
Physical Layer
Transport layer
2. Computer 1 on network C, with IP address of 172.16.1.57, wants to send a packet to Computer 2, with IP address of 172.16.1.133. If the TTL value was set to 64 at the beginning, what is the value of the TTL once it reaches its destination?
Answers
64
0
61
65
3. Computer 1 on network B, with IP address of 192.168.1.233, wants to send a packet to Computer 2, with IP address of 172.16.1.133. Which of the following has the correct IP datagram information for the fields: Version, minimum Header Length, Source IP, and Destination IP?
Answers
Version: 4
Header Length: 20
Source IP Address: 192.168.233
Destination IP address: 172.16.1.133Version: 5
Header Length: 16
Source IP Address: 10.1.1.0/24.
Destination IP address: 172.16.1.0/24.Version: 4
Header Length: 32
Source IP Address: 10.1.1.1
Destination IP address:172.16.1.1Version: 6
Header Length: 20
Source IP Address: 8a:1a:2b:3c:4d:5f
Destination IP address: 2a:2b:3c:4d:8f
- Minimum Header Length: The minimum header length is the length of the IP header in 32-bit words. For a standard IPv4 header, the minimum size is five words (20 bytes). However, if options are included, this value can be more significant.
- Source IP: This field should be set to the source IP address, 192.168.1.233 in this case.
- Destination IP: This field should be set to the destination IP address, 172.16.1.133 in this case.
- Version: 4 (indicating IPv4)
- Minimum Header Length: 5 (for a standard IPv4 header)
- Source IP: 192.168.1.233
- Destination IP: 172.16.1.133
4. The Cat6 cable is part of the ______ layer.
Answers
Transport
Application
Physical
Network
5. What information is computer 1 looking at in the ARP table on Router Y?
Answers
Destination MAC address
Port number
TTL value
MAC address
- IP Address: The Internet Protocol (IP) addresses of devices that are part of the local network segment to which Router Y is connected. Typically, other computers are on the same subnet as Computer 1.
- MAC Addresses: These are the MAC addresses that correspond to the IP addresses given in the ARP table. This mapping transports Ethernet frames to the suitable nodes and devices on the local area network.
- Interface Information: Router Y stores information about its network interfaces, including the MAC addresses associated with each interface. This information may be accessed using its administration interface. This is very necessary to route traffic between the various networks.
6. Computer 1 on network C, with IP address of 172.16.1.57, wants to send a packet to Computer 2, with IP address of 192.168.1.14. Taking in consideration that computer 1 is sending a request to a web server on computer 2, listening on port 80, and the source port on computer 1 is 5000, which of the following contains the correct information for the fourth TCP segment of data?
Answers
Source Port: 5000
Destination Port: 80
Sequence Number: 1
Acknowledgment Number: 2Source Port: 8081
Destination Port: 50
Sequence Number: 4
Acknowledgment Number: 1Source Port: 5000
Destination Port: 80
Sequence Number: 4
Acknowledgment Number: 5Source Port: 80
Destination Port: 5000
Sequence Number: 1
Acknowledgment Number: 1
7. When constructing the Ethernet datagram to send the packet from Router Z to Computer 2, which is on Network C, what information needs to be in the destination MAC address?
Answers
Computer 2’s MAC address
Router Y’s MAC address
Computer 1’s MAC address
No MAC address is needed
8. Computer 1 on Network A sends a packet to Computer 2 on Network C. What's the last step that Router Z does after receiving the Ethernet frame?
Answers
Sends back the packages to router Y for confirmation
Decrements the TTL by 1, calculates a new checksum, and makes a new IP datagram. This new IP datagram is again encapsulated on a new Ethernet frame.
Strips away the Ethernet frame, leaving the IP datagram. Performs a checksum calculation against the entire datagram
Calculates a checksum and compares this checksum with the one in the Ethernet frame header
- Receiving the Ethernet Frame: Router Z first receives the Ethernet frame on one of its network interfaces.
- Decapsulation: It then decapsulates the Ethernet frame, extracting the IP packet from the frame. The Ethernet frame's MAC addresses determine the next-hop router or destination network.
- Routing Decision: Router Z makes a routing decision based on the destination IP address in the IP packet's header. It consults its routing table to determine the next hop or interface to which the IP packet should be forwarded.
- Forwarding the IP Packet: The router forwards the IP packet to the appropriate next hop or out of the appropriate interface. This could be another router or, in this case, the network segment (Network C) where Computer 2 is located.
- ARP Resolution: If the next hop is on a different network segment, Router Z may need to perform ARP (Address Resolution Protocol) to resolve the MAC address of the next-hop router's interface that leads to Network C.
- Forwarding to Computer 2: Once the IP packet reaches the destination network segment (Network C), it is then delivered to Computer 2 based on the IP address.
9. Computer 1 on network A, with IP address of 10.1.1.8, wants to send a packet to Computer 2, with IP address of 172.16.1.64. If the TTL value was set to 64 at the beginning, what is the value of the TTL once it reaches its destination?
Answers
65
60
0
62
10. The ________ layer is responsible for sending ones and zeros through a process called modulation from Computer 1 to Computer 2.
Answers
Transport
Physical
Network
Application
Explanation: The Physical Layer is in charge of transmitting ones and zeros from Computer 1 to Computer 2 using a procedure known as modulation. At this layer, the data is transformed into signals that may be transferred via physical media, such as cables or wireless communications. These signals may be electrical, optical, or radio waves. The process of representing digital data as analog signals for the purpose of transmission via a variety of different kinds of physical media is referred to as modulation. The physical conveyance of data is the responsibility of this layer, which sits at the bottom of the OSI model.
11. If it’s a TCP connection, which is the first segment that computer 1 needs to build?
Answers
IP datagram
handshake
TCP segment
Ethernet frame
12. What information is in the payload section of the TCP segments?
Answers
The application layer data
ART Table
The MAC address of Computer 1
Handshake
Explanation: The actual data that is being sent between the devices that are connecting is included inside the payload part of a TCP segment, which stands for the Transmission Control Protocol. In common parlance, the payload is often known as the "application data" or the "user data."