The F5 Networks F5CAB5 exam, "BIG-IP Administration Support and Troubleshooting," is part of the F5 Certified Administrator, BIG-IP Certification path. It is designed for candidates who support, administer, and troubleshoot BIG-IP environments and want to prove practical operational knowledge. This exam matters because it validates your ability to identify issues quickly, interpret traffic behavior, and confirm system functionality in real-world scenarios.
| # | Exam Topics | Sub-Topics | Approximate Weightage (%) |
|---|---|---|---|
| 1 | Determine resource utilization | CPU and memory usage, connection counts, system load indicators | 15% |
| 2 | Identify network level performance issues | Latency symptoms, packet loss indicators, bandwidth constraints | 15% |
| 3 | Identify the reason load balancing is not working as expected | Pool selection behavior, persistence impact, algorithm behavior | 14% |
| 4 | Identify the reason a virtual server is not working as expected | Virtual server availability, listener configuration, traffic matching | 14% |
| 5 | Identify the reason a pool is not working as expected | Pool member status, monitor results, service reachability | 14% |
| 6 | Given a scenario, review basic stats to confirm functionality | Traffic counters, session statistics, health and availability checks | 14% |
| 7 | Given a scenario, interpret traffic flow | Request path analysis, client-to-server flow, troubleshooting clues | 14% |
This exam tests more than memorization. Candidates must understand BIG-IP behavior, identify common operational problems, and use practical troubleshooting judgment under scenario-based conditions. Strong candidates can read symptoms, review stats, and connect the evidence to the most likely root cause.
QA4Exam.com provides the F5CAB5 Exam PDF with actual questions and answers, plus an Online Practice Test that mirrors the real exam style. These resources help you experience realistic exam simulation, practice time management, and review verified answers before test day. The content is designed to help you focus on the most relevant exam areas and prepare with confidence. With up-to-date questions and a practical format, you can study smarter and improve your chances of passing on the first attempt.
This exam is for candidates pursuing the F5 Certified Administrator, BIG-IP Certification and for professionals who support or troubleshoot BIG-IP environments.
It is a practical exam that can be challenging because it focuses on troubleshooting scenarios, traffic flow, and system behavior rather than simple recall.
Braindumps alone are not the best approach. You should also understand the concepts, review the topics, and use practice testing to build confidence.
Hands-on experience is very helpful because the exam is focused on real troubleshooting situations and interpreting BIG-IP behavior.
The Exam PDF and Online Practice Test are strong preparation tools because they include actual questions and answers, but using them carefully alongside topic review gives the best first-attempt readiness.
The package includes an Exam PDF with actual questions and answers and an Online Practice Test for exam-style preparation and timing practice.
Yes, the practice test is built to simulate the exam experience and help you become familiar with the question style and pacing.
Users report that traffic is negatively affected every time a BIG-IP device fails over. The traffic becomes stabilized after a few minutes. What should the BIG-IP Administrator do to reduce the impact of future failovers?
When traffic 'stabilizes after a few minutes' following a failover, it points to a network-level performance issue involving ARP cache on upstream routers and switches. Each BIG-IP interface has a unique hardware MAC address. During failover, the Standby device takes over the floating IP address, but the upstream switch still associates that IP with the MAC of the now-offline device. Traffic is lost until the switch learns the new MAC or its ARP entry expires. 'MAC Masquerading' solves this by creating a shared, virtual MAC address for the floating traffic group. This virtual MAC is used by whichever device is currently active. Because the MAC address for the virtual server IP never changes from the perspective of the network, the upstream devices do not need to update their ARP tables. This troubleshooting solution eliminates the delay associated with failover, providing a seamless transition and ensuring that application traffic flow is not disrupted when the BIG-IP HA state changes.
Refer to the exhibit.

An LTM device has a virtual server mapped to www.f5.com . Users report that when they connect to www.f5.com they are unable to receive content. What is the likely cause of the issue? (Choose one answer)
Based on the configuration screens provided in the exhibit, the primary reason for the connectivity failure is the disabled ARP setting on the Virtual Address.
Virtual Address ARP Setting: In a standard BIG-IP deployment, the Address Resolution Protocol (ARP) must be enabled for the Virtual Address (192.168.238.111 in this case). When enabled, the BIG-IP system responds to ARP requests from the local network gateway or adjacent devices for that specific IP address.
Exhibit Analysis: Looking at the 'Virtual Address List >> 192.168.238.111' properties section, the ARP checkbox is unselected (unchecked). Because ARP is disabled, the upstream router or client cannot resolve the MAC address for 192.168.238.111, and the traffic never reaches the BIG-IP LTM.
Availability Indicators: Note the yellow circle (status indicator) on both the Virtual Server and the Pool Members. In F5 BIG-IP, a yellow status typically indicates that the object is 'Available' (Enabled) but its monitors are not currently identifying it as 'Up' (which would be a green circle), or it is in a 'Monitor Unknown' state. However, even if a pool is available, the traffic must first reach the Virtual Server, which is prevented here by the lack of ARP.
Incorrect Options Analysis:
Priority Group Activation (A): The exhibit shows this is 'Disabled'. While this affects how load balancing picks members between groups, it does not prevent all content from being received; the system would simply use all members in the pool.
Route Advertising (C): While 'Route Advertisement' is also unchecked, this is generally only required if the BIG-IP needs to dynamically propagate the Virtual Address route via protocols like BGP or OSPF. For local segment connectivity, ARP is the fundamental requirement.
Pool Failing Health Check (D): While the yellow status suggests the health checks aren't 'Green' (Successful), the critical misconfiguration shown is at the network layer (ARP), which blocks traffic before health checks or load balancing even come into play for the user session.
A gateway_icmp health monitor is configured on a pool. The BIG-IP Administrator is investigating why the pool is reported as down while the server is online. Other pools with servers in the same subnet are correctly monitored.
What can cause this behavior? (Choose one answer)
A gateway_icmp monitor checks basic network reachability by sending ICMP echo requests (pings) to the pool member or its gateway. If the pool is markedDOWNwhile the server is confirmed to be online, the most likely cause is thatICMP traffic is being blocked.
Ahost-based firewall active on the server (Option C)can block ICMP echo requests or replies, preventing BIG-IP from receiving a successful response to the health check. This results in the monitor failing and the pool member being marked down, even though the server and application are otherwise functioning normally. This explanation is consistent with the scenario where other servers in the same subnet work correctly, indicating that routing and BIG-IP configuration are not the issue.
The other options are unrelated to ICMP monitoring. Logged-in users (Option A), missing patches (Option B), and stopped HTTP services (Option D) do not affect a gateway_icmp monitor. BIG-IP troubleshooting best practices recommend verifying ICMP reachability and firewall policies when diagnosing ICMP-based monitor failures.
Clients report that they cannot reach the virtual server vs-production on port 80, but are able to ping the virtual server address. The configuration is shown below:
Plaintext
ltm virtual vs-production {
destination 10.99.20.50:http
ip-protocol tcp
mask 255.255.255.255
profiles {
http {}
tcp {}
}
source 192.168.0.0/16
translate-address enabled
translate-port enabled
vlans {
external
}
vlans-enabled
}
What is the cause?
The issue is caused by the Source Address restriction configured on the virtual server.
Source Filter: The configuration contains the line source 192.168.0.0/16. This acts as an implicit Access Control List (ACL). The virtual server will only accept and process TCP connections if the client's source IP address falls within the 192.168.x.x range.
Why Ping Works: ICMP (Ping) is handled by the Virtual Address object, not the Virtual Server object. Unless ICMP is specifically disabled on the Virtual Address, it will respond to pings from any subnet, even if the Virtual Server itself is restricted by a source filter or is even disabled.
Evaluation of Other Options:
Disabled (Option A): If the VS were disabled, the configuration would typically show disabled or state down, and the symptoms would be similar, but the source filter is a more specific 'misconfiguration' in this context.
Port 80 (Option C): The configuration destination 10.99.20.50:http explicitly confirms it is listening on port 80.
Unallowed Subnet: If a client from a different network (e.g., 10.10.1.5) tries to connect, the BIG-IP will silently drop the connection or send a reset because it does not match the defined source criteria.
A user needs to determine known security vulnerabilities on an existing BIG-IP appliance and how to remediate these vulnerabilities. Which action should the BIG-IP Administrator recommend?
F5 recommends using the iHealth diagnostic tool to identify security vulnerabilities and receive specific remediation guidance.
QKView and iHealth: A QKView file is a comprehensive diagnostic snapshot of the BIG-IP system. When this file is uploaded to the F5 iHealth portal, it is automatically parsed against a database of known issues and security advisories.
Vulnerability Diagnosis: The iHealth platform includes automated checks specifically designed to surface security gaps and 'Heuristics' that match the system's current configuration and software version to known CVEs (Common Vulnerabilities and Exposures).
Remediation Guidance: For every identified vulnerability, iHealth provides direct links to the relevant F5 Security Advisory (K-article), which contains detailed remediation steps, such as specific software versions that contain a fix or temporary mitigation commands.
UCS vs. QKView: While a UCS (User Configuration Set) file is a backup of the system configuration, it is not the format used by the iHealth diagnostic engine for automated vulnerability scanning; the QKView is the required format for this process.
Full Exam Access, Actual Exam Questions, Validated Answers, Anytime Anywhere, No Download Limits, No Practice Limits
Get All 65 Questions & Answers