Which of the following areresource allocation (provisioning) settingsfor BIG-IP modules?
(Choose two.)
Correct Answer:
BC
BIG-IP module provisioning determines howCPU, memory, and disk resourcesare allocated to each licensed module. F5 defines a specific set of supported provisioning levels.
Valid provisioning (resource allocation) settings Nominal
Allocates a standard, balanced amount of system resources to a module.
Intended for typical production deployments where multiple modules may be provisioned at the same time.
Dedicated
Allocatesall available system resourcesto a single module.
Used when the BIG-IP device is dedicated to running only one module (for example, ASM-only or APM-only deployments).
No other modules can be provisioned when one is set to Dedicated. These two options are valid and supported provisioning levels.
Why the other options are incorrect Maximum
This is not a valid BIG-IP provisioning level.
BIG-IP does not use ??Maximum?? as a resource allocation setting.
Limited
This is also not a supported provisioning level.
BIG-IP uses levels such as None, Minimal, Nominal, and Dedicated (module-dependent), not Limited.
The BIG-IP Administrator uses Secure Copy Protocol (SCP) to upload a TMOS image to the/shared/images/ directory in preparation for an upgrade.
After the upload is complete, what will the system dobeforethe image appears in the GUI under:
System » Software Management » Image List?
Correct Answer:
B
When a TMOS ISO file is transferred to/shared/images/, the BIG-IP automatically performs a validation step:
Checksum Verification
Before the image becomes visible in the GUI, the systemverifies the internal checksumembedded inside the ISO.
This ensures:
The file was fully transferred
The image is not corrupted
It matches the official F5 release signature
Only after passing this verification does the GUI display the ISO under ??Available Images.??
Why the other options are incorrect:
* A. Reboot into a new partition
No reboot occurs simply from uploading an image.
* C. Copying into /var/local/images/
This directory isnotused for ISO storage.
All valid images remain in/shared/images/.
Thus, the correct system action ischecksum verification.
An organization is planning to upgrade a BIG-IP system from16.1.xto17.1.x.
For a successful upgrade, theService Check Datemust be equal to or newer than the License Check Date required for 17.1.x.
Which command will show the Service Check Date on the BIG-IP system being upgraded?
Correct Answer:
A
BIG-IP licensing information, including theService Check Date, is stored in the file:
/config/bigip.license
This file contains all license attributes downloaded from the F5 licensing server, including:
License key
Licensed modules
Useful life date
Service check date
TheService Check Datedetermines whether the system is eligible for upgrades to specific TMOS versions. When reviewing upgrade readiness, administrators extract this value directly from the license file with:
grep "Service check date" /config/bigip.license
Why the other options are incorrect:
/config/bigip.confstores BIG-IP configuration objects, not license metadata.
/config/svc_chk_date.datisnota valid file in the licensing system; it does not contain license parameters.
/config/BigDB.datstores internal database values, not licensing attributes.
Thus, only thebigip.licensefile contains the correct licensing information required for verifying upgrade eligibility.
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.
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.