Unit 5-10 Exam I Flashcards
- When a wireless network in a small office is being set up, which type of IP addressing is typically used on the networked devices?
private
public
network
wireless
Private
Explanation: In setting up the wireless network in a small office, it is a best practice to use private IP addressing because of the flexibility and easy management it offers.
- Which two parts are components of an IPv4 address? (Choose two.)
logical portion host portion broadcast portion subnet portion network portion physical portion
Host
Network
Explanation: An IPv4 address is divided into two parts: a network portion – to identify the specific network on which a host resides, and a host portion – to identify specific hosts on a network. A subnet mask is used to identify the length of each portion.
- What is the full decompressed form of the IPv6 address 2001:420:59:0:1::a/64?
2001: 4200:5900:0:1:0:0:a000
2001: 0420:0059:0000:0001:0000:000a
2001: 0420:0059:0000:0001:000a
2001: 0420:0059:0000:0001:0000:0000:000a
2001: 420:59:0:1:0:0:a
2001: 4200:5900:0000:1000:0000:0000:a000
2001:0420:0059:0000:0001:0000:0000:000a
Explanation: To decompress an IPv6 address, the two rules of compression must be reversed. Any 16-bit hextet that has less than four hex characters is missing the leading zeros that were removed. An IPv6 address should have a total of 8 groups of 16-bit hextets, a (::) can be replaced with consecutive zeros that were removed.
- A cybersecurity analyst believes an attacker is spoofing the MAC address of the default gateway to perform a man-in-the-middle attack. Which command should the analyst use to view the MAC address a host is using to reach the default gateway?
route print
ipconfig /all
netstat -r
arp -a
arp -a
Explanation: ARP is a protocol used with IPv4 to map a MAC address to an associated specific IP address. The command arp -a will display the MAC address table on a Windows PC.
- A user sends an HTTP request to a web server on a remote network. During encapsulation for this request, what information is added to the address field of a frame to indicate the destination?
the network domain of the destination host
the MAC address of the destination host
the IP address of the default gateway
the MAC address of the default gateway
the MAC address of the default gateway
Explanation: A frame is encapsulated with source and destination MAC addresses. The source device will not know the MAC address of the remote host. An ARP request will be sent by the source and will be responded to by the router. The router will respond with the MAC address of its interface, the one which is connected to the same network as the source.
- What addresses are mapped by ARP?
destination IPv4 address to the source MAC address
destination MAC address to a destination IPv4 address
destination MAC address to the source IPv4 address
destination IPv4 address to the destination host name
destination MAC address to a destination IPv4 address
Explanation: ARP, or the Address Resolution Protocol, works by mapping a destination MAC address to a destination IPv4 address. The host knows the destination IPv4 address and uses ARP to resolve the corresponding destination MAC address.
- What type of information is contained in an ARP table?
domain name to IP address mappings
switch ports associated with destination MAC addresses
routes to reach destination networks
IP address to MAC address mappings
IP address to MAC address mappings
Explanation: ARP tables are used to store mappings of IP addresses to MAC addresses. When a network device needs to forward a packet, the device knows only the IP address. To deliver the packet on an Ethernet network, a MAC address is needed. ARP resolves the MAC address and stores it in an ARP table.
- What type of information is contained in a DNS MX record?
the IP address of an authoritative name server
the FQDN of the alias used to identify a service
the domain name mapped to mail exchange servers
the IP address for an FQDN entry
Explanation: MX, or mail exchange messages, are used to map a domain name to several mail exchange servers that all belong to the same domain.
- A PC is downloading a large file from a server. The TCP window is 1000 bytes. The server is sending the file using 100-byte segments. How many segments will the server send before it requires an acknowledgment from the PC?
1000 segments
100 segments
1 segment
10 segments
10 segments
Explanation: With a window of 1000 bytes, the destination host accepts segments until all 1000 bytes of data have been received. Then the destination host sends an acknowledgment.
- A user issues a ping 192.168.250.103 command and receives a response that includes a code of 1 . What does this code represent?
port unreachable
network unreachable
protocol unreachable
host unreachable
host unreachable
- Which two commands can be used on a Windows host to display the routing table? (Choose two.)
netstat -r show ip route netstat -s route print tracert
netstat -r
route print
Explanation: On a Windows host, the route print or netstat -r commands can be used to display the host routing table. Both commands generate the same output. On a router, the show ip route command is used to display the routing table. The netstat -s command is used to display per-protocol statistics. The tracert command is used to display the path that a packet travels to its destination.
- A user issues a ping 2001:db8:FACE:39::10 command and receives a response that includes a code of 2 . What does this code represent?
host unreachable
port unreachable
network unreachable
protocol unreachable
protocol unreachable
Explanation: When a host or gateway receives a packet that it cannot deliver, it can use an ICMP Destination Unreachable message to notify the source that the destination or service is unreachable. The message will include a code that indicates why the packet could not be delivered. These are some of the Destination Unreachable codes for ICMPv4:
0 : net unreachable
1 : host unreachable
2 : protocol unreachable
3 : port unreachable
- What message informs IPv6 enabled interfaces to use stateful DHCPv6 for obtaining an IPv6 address?
the ICMPv6 Router Solicitation
the DHCPv6 Advertise message
the DHCPv6 Reply message
the ICMPv6 Router Advertisement
the ICMPv6 Router Advertisement
Explanation: Before an IPv6 enabled interface will use stateful DHCPv6 to obtain an IPv6 address, the interface must receive an ICMPv6 Router Advertisement with the managed configuration flag (M flag) set to 1.
- What is the purpose of ICMP messages?
to inform routers about network topology changes
to ensure the delivery of an IP packet
to provide feedback of IP packet transmissions
to monitor the process of a domain name to IP address resolution
to provide feedback of IP packet transmissions
What is the HTTP status code group for client error?
4xx