ExamGecko
Home / F5 / 301b / List of questions
Ask Question

F5 301b Practice Test - Questions Answers, Page 4

Add to Whishlist

List of questions

Question 31

Report Export Collapse

An LTM Specialist uploaded new releases .iso and .md5 files titled 'BIGIP-FILENAME' via the GUI.

Which commands are run via the command line from the root directory to verify the integrity of the new .iso file?

cd /var/shared/images md5sum --check BIGIP-FILENAME .iso
cd /var/shared/images md5sum --check BIGIP-FILENAME .iso
cd /shared/images md5sum --check BIGIP-FILENAME .iso
cd /shared/images md5sum --check BIGIP-FILENAME .iso
cd /var/shared/images md5sum --check BIGIP-FILENAME .iso.md5
cd /var/shared/images md5sum --check BIGIP-FILENAME .iso.md5
cd /shared/images md5sum --check BIGIP-FILENAME .iso.md5
cd /shared/images md5sum --check BIGIP-FILENAME .iso.md5
Suggested answer: D
asked 24/09/2024
Zulkarnain Hashim
44 questions

Question 32

Report Export Collapse

An LTM Specialist must perform a hot fix installation from the command line.

What is the correct procedure to ensure that the installation is successful?

import the hot fix to the /var/shared/images directory check the integrity of the file with an md5 checksum tmsh apply sys software hotfix volume <volume_name> <hotfix_name>.iso
import the hot fix to the /var/shared/images directory check the integrity of the file with an md5 checksum tmsh apply sys software hotfix volume <volume_name> <hotfix_name>.iso
import the hot fix to the /var/shared/images directory check the integrity of the file with an md5 checksum tmsh install sys software hotfix <hotfix_name>.iso volume <volume_name>
import the hot fix to the /var/shared/images directory check the integrity of the file with an md5 checksum tmsh install sys software hotfix <hotfix_name>.iso volume <volume_name>
import the hot fix to the /shared/images directory check the integrity of the file with an md5 checksum tmsh apply sys software hotfix volume <volume_name> <hotfix_name>.iso
import the hot fix to the /shared/images directory check the integrity of the file with an md5 checksum tmsh apply sys software hotfix volume <volume_name> <hotfix_name>.iso
import the hot fix to the /shared/images directory check the integrity of the file with an md5 checksum tmsh install sys software hotfix <hotfix_name>.iso volume <volume_name>
import the hot fix to the /shared/images directory check the integrity of the file with an md5 checksum tmsh install sys software hotfix <hotfix_name>.iso volume <volume_name>
Suggested answer: D
asked 24/09/2024
Guillermo Carrasco
36 questions

Question 33

Report Export Collapse

Which two alerting capabilities can be enabled from within an application visibility reporting (AVR) analytics profile? (Choose two.)

sFlow
sFlow
SNMP
SNMP
e-mail
e-mail
LCD panel alert
LCD panel alert
high speed logging (HSL)
high speed logging (HSL)
Suggested answer: B, C
asked 24/09/2024
Prinesh Chain
47 questions

Question 34

Report Export Collapse

What is a benefit provided by F5 Enterprise Manager?

Enterprise Manager allows administrators to analyze traffic flow and create custom application IPS signatures.
Enterprise Manager allows administrators to analyze traffic flow and create custom application IPS signatures.
Enterprise Manager allows administrators to establish baseline application usage and generate an alert if an administratively set threshold for the application is exceeded.
Enterprise Manager allows administrators to establish baseline application usage and generate an alert if an administratively set threshold for the application is exceeded.
Enterprise Manager allows administrators to identify application vulnerabilities. Virtual patches are then automatically generated and applied to remediate the detected application vulnerability.
Enterprise Manager allows administrators to identify application vulnerabilities. Virtual patches are then automatically generated and applied to remediate the detected application vulnerability.
Enterprise Manager allows administrators to monitor all application traffic. Configuration optimization suggestions based on the observed traffic patterns are then generated for the administrator to review and apply.
Enterprise Manager allows administrators to monitor all application traffic. Configuration optimization suggestions based on the observed traffic patterns are then generated for the administrator to review and apply.
Suggested answer: B
asked 24/09/2024
maria rocio ucha paz
47 questions

Question 35

Report Export Collapse

Which two items can be logged by the Application Visibility Reporting analytics profile? (Choose two.)

User Agent
User Agent
HTTP version
HTTP version
HTTP Response Codes
HTTP Response Codes
Per Virtual Server CPU Utilization
Per Virtual Server CPU Utilization
Suggested answer: A, C
asked 24/09/2024
Freddy Rojas
41 questions

Question 36

Report Export Collapse

Which file should be modified to create custom SNMP alerts?

/config/alert.conf
/config/alert.conf
/etc/alertd/alert.conf
/etc/alertd/alert.conf
/config/user_alert.conf
/config/user_alert.conf
/etc/alertd/user_alert.conf
/etc/alertd/user_alert.conf
Suggested answer: C
asked 24/09/2024
Johnny Tien
57 questions

Question 37

Report Export Collapse

An LTM Specialist has set up a custom SNMP alert.

Which command line tool should the LTM Specialist use to test the alert?

logger
logger
logtest
logtest
testlog
testlog
snmptest
snmptest
Suggested answer: A
asked 24/09/2024
Ibiyemi Araoye
46 questions

Question 38

Report Export Collapse

An LTM Specialist is customizing local traffic logging.

Which traffic management OS alert level provides the most detail?

Alert
Alert
Notice
Notice
Critical
Critical
Emergency
Emergency
Informational
Informational
Suggested answer: E
asked 24/09/2024
Mahendra Belgaonkar
43 questions

Question 39

Report Export Collapse

A new web application is hosted at www.example.net, but some clients are still pointing to the legacy web application at www.example.com.

Which iRule will allow clients referencing www.example.com to access the new application?

when HTTP_REQUEST { if {[HTTP::host] equals 'www.example.*' }{ HTTP::redirect 'http://www.example.net' } }
when HTTP_REQUEST { if {[HTTP::host] equals 'www.example.*' }{ HTTP::redirect 'http://www.example.net' } }
when HTTP_REQUEST { if {[HTTP::host] equals 'www.example.com' }{ HTTP::redirect 'http://www.example.net' } }
when HTTP_REQUEST { if {[HTTP::host] equals 'www.example.com' }{ HTTP::redirect 'http://www.example.net' } }
when HTTP_DATA { if {[HTTP::host] equals 'www.example.*' }{ HTTP::redirect 'http://www.example.net' } }
when HTTP_DATA { if {[HTTP::host] equals 'www.example.*' }{ HTTP::redirect 'http://www.example.net' } }
when HTTP_RESPONSE { if {[HTTP::host] equals 'www.example.com' }{ HTTP::redirect 'http://www.example.net' } }
when HTTP_RESPONSE { if {[HTTP::host] equals 'www.example.com' }{ HTTP::redirect 'http://www.example.net' } }
Suggested answer: B
asked 24/09/2024
Sydney Taing
37 questions

Question 40

Report Export Collapse

Which iRule will instruct the client's browser to avoid caching HTML server responses?

when HTTP_REQUEST { if {[HTTP::header Content-Type] equals 'html'} { HTTP::header insert Pragma 'no-cache' HTTP::header insert Expires 'Fri, 01 Jan 1990 00:00:00 GMT' HTTP::header replace Cache-Control 'no-cache,no-store,must-revalidate' } }
when HTTP_REQUEST { if {[HTTP::header Content-Type] equals 'html'} { HTTP::header insert Pragma 'no-cache' HTTP::header insert Expires 'Fri, 01 Jan 1990 00:00:00 GMT' HTTP::header replace Cache-Control 'no-cache,no-store,must-revalidate' } }
when HTTP_REQUEST { if {[HTTP::header Content-Type] contains 'html'} { HTTP::header insert Pragma 'no-cache' HTTP::header insert Expires 'Fri, 01 Jan 1990 00:00:00 GMT' HTTP::header replace Cache-Control 'no-cache,no-store,must-revalidate' } }
when HTTP_REQUEST { if {[HTTP::header Content-Type] contains 'html'} { HTTP::header insert Pragma 'no-cache' HTTP::header insert Expires 'Fri, 01 Jan 1990 00:00:00 GMT' HTTP::header replace Cache-Control 'no-cache,no-store,must-revalidate' } }
when HTTP_RESPONSE { if {[HTTP::header Content-Type] contains 'html'} { HTTP::header insert Pragma 'no-cache' HTTP::header insert Expires 'Fri, 01 Jan 1990 00:00:00 GMT' HTTP::header replace Cache-Control 'no-cache,no-store,must-revalidate' } }
when HTTP_RESPONSE { if {[HTTP::header Content-Type] contains 'html'} { HTTP::header insert Pragma 'no-cache' HTTP::header insert Expires 'Fri, 01 Jan 1990 00:00:00 GMT' HTTP::header replace Cache-Control 'no-cache,no-store,must-revalidate' } }
when HTTP_RESPONSE { if {[HTTP::header Content-Type] equals 'html'} { HTTP::header insert Pragma 'no-cache' HTTP::header insert Expires 'Fri, 01 Jan 1990 00:00:00 GMT' HTTP::header replace Cache-Control 'no-cache,no-store,must-revalidate' } }
when HTTP_RESPONSE { if {[HTTP::header Content-Type] equals 'html'} { HTTP::header insert Pragma 'no-cache' HTTP::header insert Expires 'Fri, 01 Jan 1990 00:00:00 GMT' HTTP::header replace Cache-Control 'no-cache,no-store,must-revalidate' } }
Suggested answer: C
asked 24/09/2024
nir avron
45 questions
Total 210 questions
Go to page: of 21

Related questions