Chapter 2 Done Flashcards
Which of the following benefits are realized from implementing a load balancer? (Choose two.)
A. Improved app performance
B. Increased app security
C. Increased app regulatory compliance
D. Increased app availability
A and D. Load balancers improve app performance because a pool of backend servers is available to handle client requests instead of a single server, which means that these servers can handle the additional request load that may occur. App availability is increased because a pool of backend servers is available to service client requests. A backend server failure means client requests will be serviced by backend servers that remain up and running.
A busy web site has not been responding well because of the large volume of HTTP requests sent to the web server. Which solution would be the most optimal to improve current and future web server performance?
A. Add more RAM to the web server.
B. Use two web servers hosting the same content. Configure a load balancer to distribute incoming HTTP connections between the two web servers.
C. Place a router between the web server and the Internet to throttle incoming HTTP connections.
D. Enable SSL on the web server.
B. Configuring multiple servers behind a load balancer allows for the distribution of incoming network traffic among those servers. This improves the performance of busy web applications and increases availability because more than one server is hosting the same application.
You would like to prevent client requests from being serviced by busy backend servers hosting user sessions. Which load balancer scheduling algorithm should you configure?
A. Round robin
B. Weighted round robin
C. Random
D. Least connections
D. The least connections algorithm ensures that traffic is sent to the backend server with the smallest amount of active connections.
During an IT meeting, your colleague Trinity suggests that there is a single point of failure in the single load balancer in place for the company web site ordering system. She suggests having two load balancers configured, with only one in service at a given time. What type of load balancing configuration has Trinity described?
A. Round robin
B. Active-active
C. Active-passive
D. Least connections
C. Active-passive configurations consist of two load balancers, one of which is active. When the active load balancer is unresponsive, the second load balancer takes over.
An active-passive load balancer solution is configured on your network. When the standby load balancer determines that the primary load balancer is down, what attribute does it take control of?
A. Load balancer MAC address
B. Load balancer IP address
C. First backend server MAC address
D. First backend server IP address
B. A virtual IP address (load balancer IP address) is assigned to the active load balancer. This is the externally exposed address that the DNS names must resolve to.
Your public cloud–based load balancer uses Linux backend servers to host a web application. Each backend Linux host is configured with only a single private IPv4 address. You need to be able to manage each Linux backend host remotely from your on-premises network without exposing each backend server directly to the Internet. Which options should you consider? (Choose two.)
A. Assign a public IP address to each backend Linux instance.
B. Assign an IPv6 address to each backend Linux instance.
C. Configure inbound NAT rules on the load balancer.
D. Configure a jump box solution.
C and D. Load balancer inbound NAT rules allow incoming traffic to the load balancer on a given port, such as SSH for Linux management, to be mapped to internal hosts configured with only private IP addresses. A jump box is a physical or virtual server with at least two network interfaces with routing between the interfaces disabled. One jump box interface has a connection to a public network and the second interface has a connection to an internal network. Once authenticated to the jump box, administrators can use it as a launch pad to connect to internal hosts.
To improve application performance for a public-facing web application, you want to reduce the amount of processing for each backend Windows server configured in a load balancer backend server pool. HTTPS is currently configured on each server. HTTPS is required to protect traffic web application traffic. What should you do?
A. Enable SSL/TLS pass-through on the load balancer.
B. Configure IPSec on the load balancer.
C. Configure SSL/TLS termination at the load balancer.
D. Generate a new certificate for the load balancer DNS name.
C. Configuring SSL/TLS termination at the load balancer offloads this computationally expensive operation from each backend server. This means network connections to and from the load balancer are protected using HTTPS. Traffic between the load balancer and backend servers is not protected with HTTPS.
How does an OSI layer 7 load balancer differ from a layer 4 load balancer?
A. Layer 7 load balancers can inspect IP addresses to make load balancing decisions.
B. Layer 7 load balancers can inspect URLs to make load balancing decisions.
C. Layer 7 load balancers can examine MAC addresses to make load balancing decisions.
D. Layer 7 load balancers can examine port numbers to make load balancing decisions.
B. Layer 7 of the OSI model, the application layer, enables access to all packet contents including the payload; therefore, URLs can be examined by the load balancer to determine which backend servers should receive the request.
What is the primary purpose of a load balancer health probe configuration?
A. To check Internet connectivity
B. To check load balancer responsiveness
C. To check backend server responsiveness
D. To compare performance baselines to current metrics
C. A load balancer can be configured to test connectivity to backend servers periodically on a given port number using health probes. Unresponsive backend servers are marked as unhealthy and do not receive client app requests.
While testing a custom load balanced application, you determine that the app depends on client devices being connected to the same backend server throughout a session. Which load balancer option should you enable to support this kind of behavior?
A. Source IP affinity
B. Health probe
C. Round robin
D. Fixed weight
A. Load balancer source IP affinity, also called client IP affinity, ensures that clients remain connected to the same backend host during an app session.
IPv6 addresses consist of how many bits?
A. 8
B. 16
C. 32
D. 128
D. IPv6 addresses are 128 bits long, represented as eight 16-bit groups of hexadecimal characters, where each group is separated with a colon.
You need to test to determine whether a local IPv6 stack is functioning on a Windows 10 host. Which command should you issue?
A. ping 127.0.0.1
B. ipconfig –test 127.0.0.1
C. ping 0:0:0:0:0:0:0:1
D. ipconfig –test 0:0:0:0:0:0:0:1
C. The Windows ping command can be used to test IPv6 functionality for the IPv6 local loopback address of 0:0:0:0:0:0:0:1, also referred to as ::1. The double colons represent a series of consecutive zeroes.
An IT technician issues the Windows ipconfig command and is concerned after noticing an address with an FE80 prefix. What should you tell the technician?
A. IPv6 hosts always have a link-local unicast address beginning with FE80.
B. IPv6 hosts with an FE80 address are unable to communicate on the Internet.
C. FE80 is similar to an IPv4 169.254 prefix; it means the host could not reach a DHCP server.
D. The IPv4 FE80 prefix is the local loopback address.
A. The IPv6 FE80 prefix is used for link-local unicast addresses. IPv6 hosts always have this type of IP address, whether or not they are configured with a static IP address or are configured to use DHCP.
Which IPv6 protocol is primarily responsible for error and status information?
A. TCP
B. ICMP
C. UDP
D. IP
B. The Internet Control Message Protocol (ICMP) is responsible for error and status information in IPv4 and IPv6.
One backend server named HOST 2 is used by a load balancer in a backend pool. HOST 2 has more RAM and CPU processing power than others in the same backend pool. You need to ensure that more client requests are serviced by this powerful server. What should you do?
A. Assign a lower priority weight value to HOST 2.
B. Assign a low priority weight value to the load balancer.
C. Assign a high priority weight value to the load balancer.
D. Assign a higher priority weight value to HOST 2.
D. Assigning a higher priority weight value to HOST 2 as compared to other backend hosts in the same pool means HOST 2 will service more requests than other servers in the pool.
Which load balancing scheduling algorithm treats all backend servers equally when it comes to client request processing capabilities?
A. Round robin
B. Weighted round robin
C. Random
D. Least connections
A. Round robin sends traffic to the first backend node, then the second, the third, back to the first, and so on. All servers are treated equally when it comes to client processing capability.
Which of the following terms is the most closely related to a load balancer?
A. Reverse proxy
B. Forward proxy
C. Jump box
D. Content delivery network
A. A reverse proxy accepts clients requests and forwards them to an internal host or hosts for processing, thus hiding the true identity of the internal host(s).
Which of the following load balancing solutions is best suited for routing incoming video-streaming requests to specific backend servers optimized for streaming?
A. Layer 4 load balancer
B. Round robin
C. Fixed weight
D. Layer 7 load balancer
D. OSI layer 7 (the application layer) load balancers can inspect URL requests, such as those that may include references to media, and send those requests to specific backend hosts configured to stream media.
You are configuring a load balancer to support a backend pool of FTP servers using standard port numbers. Which TCP ports should the load balancer accept FTP requests on?
A. 20, 21
B. 21, 23
C. 21, 80
D. 80, 443
A. FTP normally uses TCP ports 20 and 21.
Users complain that when they access a load balanced shopping web site, periodically the contents of their shopping cart is lost. What should you configure in the load balancer to alleviate the issue?
A. Active-passive
B. Virtual IP
C. Persistence
D. Active-active
C. Configuring the load balancer persistence setting ensures that client session traffic continues to the same backend server. This can be especially important when server-side storage is used for user sessions.
You are configuring load balancer support for an HTTPS custom web application. Which of the following statements regarding this scenario are correct? (Choose two.)
A. Backend servers can listen on any port number.
B. Traffic between the load balancer and backend servers does not have to be encrypted.
C. The backend server port number must be the same as the load balancer VIP port number.
D. HTTPS requires an active-active load balancer configuration.
A and B. Backend web servers may be configured to listen on TCP port 400, while the load balancer VIP configuration listens on the standard HTTPS port, TCP 443. Load balancers can be configured as SSL/TLS termination points to offload the extra encryption/decryption processing from the backend servers.