00:00

QUESTION 1

Which two items demonstrate the creation of a new volumefor software images?
(Choose two.)

Correct Answer: AC
In BIG-IP, software images are installed onboot volumes(for example, HD1.1, HD1.2, HD1.3, etc.).
To install software on anew volume, the administrator must instruct the system to create a new boot location before installation.
There are two correct ways to create a new volume:
* A. tmsh command (with correct syntax)
tmsh install software image /shared/images/BIGIP-.iso volume HD1.5 create-volume
This syntax correctly includes:
install software image
full path to ISO (/shared/images/...)
volume name (HD1.5)
create-volumekeyword
This instructs BIG-IP to create the new boot volume as part of the installation.
* C. Using the GUI ?? System>Disk Management
From the Disk Management menu, the administrator can:
Select ??New Volume??
Enter the volume identifier (e.g., HD1.5)
Apply changes
This GUI method is officially supported and explicitly creates a new boot volume before installing the software.
Why the other options are incorrect:
* B. Incorrect tmsh syntax
Missing /shared/images/ path
Incorrect command structure
* D. Incorrect command structure
Missing required keywords and correct command hierarchy
* E. Software Management ?? Install does NOT create volumes
This installs to anexistingvolume only
The GUI install dialog does not create new boot volumes
Thus, onlyOption AandOption Cproperly create a new software volume.

QUESTION 2

Which command will display the current active volume on a BIG-IP system?

Correct Answer: B
To identify which boot volume is currently active on a BIG-IP system, the correct command is:
tmsh show sys software status
This command displays:
All installed boot volumes (HD1.1, HD1.2, HD1.3, etc.)
The BIG-IP software version installed on each volume
The Active field, indicating which volume the system is currently booted from
The installation status (''complete'', ''in-progress'', ''allowed'')
This is the standard and authoritative way to determine the active boot location.
Why the other options are incorrect:
* A . tmsh show sys version
Displays OS version, build, and date.
Does not show boot locations or which volume is active.
* C . tmsh list sys software update
Shows software update configurations, not boot volume status.
Does not display which volume is active.

QUESTION 3

What command will allow the BIG-IP Administrator to view theconfigured management IPof a BIG-IP system?
(Choose one.)

Correct Answer: B
Comprehensive and Detailed Explanation (Paraphrased)
The BIG-IP stores the configured management IP address as asystem configuration objectunder the/syshierarchy.
To display configured (persistent) values, BIG-IP uses thetmsh list command, not show.
Why tmsh list sys management-ip is correct
The management IP configuration is defined under:
/sys management-ip
Running:
tmsh list sys management-ip
displays:
The configured management IP address
Netmask
Associated attributes
This command shows theactual configured management IP, which is what the question asks for.
Why the other options are incorrect
* A. tmsh show sys management-ip
The show command is used for runtime statistics and status.
management-ip is a configuration object, not a statistics object.
* C. tmsh list sys management-route
Displays management routing information, not the management IP address itself.
* D. tmsh list net self
Displays Self IPs used on the data plane.
Does not show the management interface IP.

QUESTION 4

An F5 BIG-IP Administrator is asked to report which modules areprovisionedon the BIG-IP.
In which two ways can this be done? (Choose two.)

Correct Answer: AD
Provisioning determines:
F5CAB1 dumps exhibit Which BIG-IP modules are enabled (LTM, ASM, APM, AFM, DNS, etc.)
F5CAB1 dumps exhibit Their provisioning levels (None, Minimal, Nominal, Dedicated)
Two accurate ways to view provisioning settings are:
* A. GUI — System # Resource Provisioning # Module Allocation
This is the primary GUI screen showing:
F5CAB1 dumps exhibit All modules
F5CAB1 dumps exhibit Their provisioning level
F5CAB1 dumps exhibit System resource distribution impact
Administrators commonly use this page to confirm or change module provisioning.
* D. TMSH — list /sys provision
This tmsh command displays each module and its provisioning level: sys provision ltm { level nominal }
sys provision asm { level none }
This is the authoritative CLI method for checking module provisioning configurations.
Why the other options are incorrect:
* B. show /sys provision
F5CAB1 dumps exhibit Showsruntimeinformation butnot the actual configuration levels.
F5CAB1 dumps exhibit list is the correct command for configuration details.
* C. Statistics # Module Statistics
F5CAB1 dumps exhibit Shows performance statistics, NOT provisioning status.
Therefore, the correct responses areAandD.

QUESTION 5

A BIG-IP device is licensed forLTM, ASM, APM, and AFM.
Currently, it will only be used forload balancingandweb application firewalling.
To ensure optimal performance and efficient resource utilization, which of the following module provisioning combinations is the best choice?

Correct Answer: C
BIG-IP provisioning determines how CPU, memory, and disk resources are allocated to each module. The goal is to provision only the modules required and at levels appropriate to their performance needs.
Requirements in the question
The device will be used for:
F5CAB1 dumps exhibit LTM(Local Traffic Manager) # load balancing
F5CAB1 dumps exhibit ASM(Application Security Manager) # WAF No functions require:
F5CAB1 dumps exhibit APM (Access Policy Manager)
F5CAB1 dumps exhibit AFM (Advanced Firewall Manager)
Why Option C is correct
Provisioning bothLTMandASMatNominallevel provides:
F5CAB1 dumps exhibit Adequate performance for production load
F5CAB1 dumps exhibit Plentiful system resources while avoiding dedicating the entire system to a single module
F5CAB1 dumps exhibit Balanced allocation without starving memory or CPU
SettingAPM: NoneandAFM: Noneensures unused modules consume zero resources.
Why the other options are incorrect
* A. Dedicated provisioning for both LTM and ASM
F5CAB1 dumps exhibit Two modules cannot both run in ??Dedicated?? mode.
F5CAB1 dumps exhibit Dedicated mode allocatesallresources to a single module — the second module cannot be dedicated simultaneously.
* B. LTM and ASM both Dedicated
F5CAB1 dumps exhibit Same issue: only one module can be Dedicated at a time.
F5CAB1 dumps exhibit Also unnecessary for load balancing + WAF.
* D. Setting APM and AFM to Minimal
F5CAB1 dumps exhibit Minimal still consumes memory and CPU.
F5CAB1 dumps exhibit Unused modules should be set toNone.
Therefore,Option Cis the best provisioning strategy.