A BIG-IP Administrator needs to collect HTTP status code and HTTP method for traffic flowing through a virtual server. Which default profile provides this information? (Choose one answer)
Correct Answer: C
To collect application-layer details such asHTTP status codes(200, 404, 500, etc.) andHTTP methods(GET, POST, PUT, DELETE), the BIG-IP system must use a profile designed for traffic visibility and reporting rather than basic traffic handling. TheAnalytics profile (Option C)is the correct choice because it is specifically designed to collect, store, and present detailed statistics about HTTP and TCP traffic passing through a virtual server. When an Analytics profile is attached to a virtual server, BIG-IP can record metrics such as HTTP response codes, request methods, URI paths, latency, throughput, and client-side/server-side performance data. These statistics are then accessible through the BIG-IP GUI underStatistics # Analytics, allowing administrators to validate application behavior and troubleshoot performance or functional issues. TheHTTP profile (Option B)enables HTTP protocol awareness and features like header insertion and compression, but it does not provide historical or statistical reporting of HTTP methods and response codes. Request Adapt (Option A)is used for ICAP-based content adaptation, not visibility.Statistics (Option D)is not a standalone profile and does not provide HTTP-level insight. Therefore, the Analytics profile is the only default profile that fulfills this requirement.
F5CAB5 Exam Question 17
A BIG-IP Administrator creates a new Virtual Server. The end user is unable to access the page. During troubleshooting, the administrator learns that the connection between the BIG-IP system and server is NOT set up correctly. What should the administrator do to solve this issue?
Correct Answer: C
When a virtual server is not working as expected despite the pool members being marked "UP" (Green), the issue is frequently a return-path routing failure. If the BIG-IP forwards a request with the original client's source IP address, the backend server will try to respond directly to that client. If the server does not have its default gateway pointed back to the BIG-IP, the response packet will be routed elsewhere (or dropped), resulting in a connection timeout for the user. To resolve this, the administrator must configure "Source Address Translation" (SNAT). By setting SNAT to "Automap" or a specific SNAT address, the BIG-IP replaces the client's IP with its own internal self-IP. The backend server then sees the BIG-IP as the source and sends the response back to it locally. This troubleshooting step ensures a functional, symmetric tr18affic flow. Identifying the need for SNAT is one of the most common troubleshooting tasks for new virtual server deployments where the BIG-IP is not the default gateway for the backend servers.
F5CAB5 Exam Question 18
A BIG-IP Administrator configured the following virtual server to pass traffic on all addresses and ports. After configuration is completed, the BIG-IP Administrator notices that the virtual server is unable to pass traffic. Plaintext ltm virtual forwarding_any_vs { destination 0.0.0.0:any ip-forward mask 255.255.255.255 profiles { fastL4 {} } serverssl-use-sni disabled source 0.0.0.0/0 translate-address disabled translate-port disabled } Which part of the configuration is the cause of the issue?
Correct Answer: B
The failure of the Forwarding (IP) virtual server is caused by an incorrect Network Mask configuration for a wildcard destination. * Wildcard Destination: The administrator intends to create a "Wildcard" Virtual Server that listens for any destination IP address (0.0.0.0). * The Mask Conflict: A mask of 255.255.255.255 (or /32) tells the BIG-IP to look for a specific, single host address. When combined with 0.0.0.0, the system is literally looking for traffic destined for the IP 0.0.0.0, which is not a valid routable destination for standard traffic. * Correct Configuration: To allow the virtual server to catch traffic for any IP address, the mask must be changed to 0.0.0.0 (or /0). This signifies that the system should ignore all bits of the destination address and match everything. * Forwarding Logic: The rest of the configuration-including ip-forward (Forwarding IP type), translate-address disabled, and translate-port disabled-is correct for a BIG-IP acting as a router /gateway.
F5CAB5 Exam Question 19
What information is required for a BIG-IP Administrator to open an F5 Support ticket?
Correct Answer: D
To ensure a support case is processed and routed efficiently, F5 specifies a mandatory set of baseline information. * Serial Number: Required to verify the support contract and entitlement level for the hardware or virtual edition. * QKView: This is described as the "first and most important thing to have when opening a case". It provides the F5 Support Engineer with the necessary diagnostic data to understand the system's current state and resource utilization. * Problem Description: A precise description of the issue, including symptoms, when the problem started, and the business impact, is critical for routing the case to the correct technical team. * Contact Info: Accurate contact information for the individual who will be working on the ticket with F5. * Comparison: While packet captures (Option A) or UCS files (Option B) are often useful, they are not strictly required for the initial opening of all support tickets; however, a QKView is considered a primary prerequisite for technical analysis.
F5CAB5 Exam Question 20
Due to a change in application requirements, a BIG-IP Administrator needs to modify the configuration of a Virtual Server to include a Fallback Persistence Profile. Which persistence profile type should the BIG-IP Administrator use for this purpose?
Correct Answer: D
Comprehensive and Detailed Explanation From BIG-IP Administration S73upport and Troubleshooting documents: Persistence is critical for ensuring that a client's session remains with the same pool member throughout its duration. If primary persistence (like Cookie Persistence) fails-for instance, because the client has disabled cookies-load balancing will not work as expected, and the session may be broken. A "Fallback Persistence Profile" provides a backup method75. The most common and reliable fallback method is "Source Address Affinity"76. This method tracks the client's IP address in the BIG-IP's persistence table and ensures that any subsequent requests from that IP are routed to the same pool member, even if the primary persistence token is missing. Troubleshooting session drops often involves checking if a fallback method is configured to handle scenarios where the primary method is unsupported by the client's browser or environment. Without a fallback, the BIG-IP would revert to standard load balancing, potentially sending the client to a different server that lacks their session data.