DON'T WANT TO MISS A THING?

Certification Exam Passing Tips

Latest exam news and discount info

Curated and up-to-date by our experts

Yes, send me the newsletter

Unlock Success with F5 301b Pracatice Questions, 301B – BIG-IP LTM Specialist | SPOTO

Unlock your path to success in the F5 301B certification exam with SPOTO's comprehensive practice questions. As part of the F5 Certified Technology Specialist, Local Traffic Manager (F5-CTS, LTM) certification track, the 301B exam focuses on maintaining and troubleshooting BIG-IP LTM systems. SPOTO provides a range of exam preparation resources, including practice tests, sample questions, and exam simulators. Our practice questions and exam materials are designed to enhance your understanding of key concepts and boost your confidence for the exam. Access exam dumps and answers to reinforce your knowledge and prepare effectively. With SPOTO's expertise in F5 certification exams, you can trust us to help you pass the exam quickly and efficiently. Start your journey to F5 certification success with SPOTO's practice questions and unlock your potential for exam excellence.
Take other online exams

Question #1
A customer needs to intercept all of the redirects its application is sending to clients. When a redirect is matched, the customer needs to log a message including the client IP address. Which iRule should be used?
A. when HTTP_RESPONSE { if { [HTTP::is_3xx] } { log local0
B. when HTTP_REQUEST { if { [HTTP::is_301] } { log local0
C. when HTTP_REQUEST { if { [HTTP::is_redirect] } { log local0
D. when HTTP_RESPONSE { if { [HTTP::is_redirect] } { log local0
View answer
Correct Answer: C
Question #2
What is the correct command to reset an LTM device to its default settings?
A. tmsh reset-all default
B. tmsh set /sys config defaults
C. tmsh load /sys config default
D. tmsh /util bigpipe reset-factory-defaults
View answer
Correct Answer: B
Question #3
An LTM Specialist has just captured trace /var/tmp/trace.cap for site www.example.com while listening on virtual address 10.0.0.1:443 configured on partition ApplicationA. The data payload being captured is SSL encrypted. Which command should the LTM Specialist execute to decrypt the data payload?
A. ssldump -Aed -nr /var/tmp/trace
B. ssldump -Aed -nr /var/tmp/trace
C. ssldump -Aed -nr /var/tmp/trace
D. ssldump -Aed -nr /var/tmp/trace
View answer
Correct Answer: C
Question #4
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?
A. when HTTP_REQUEST { if {[HTTP::host] equals "www
B. when HTTP_REQUEST { if {[HTTP::host] equals "www
C. when HTTP_DATA { if {[HTTP::host] equals "www
D. when HTTP_RESPONSE { if {[HTTP::host] equals "www
View answer
Correct Answer: A
Question #5
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?
A. 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
B. 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
C. 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
D. import the hot fix to the /shared/images directory check the integrity of the file with an md5 checksum tmsh install sys software hotfix
View answer
Correct Answer: C
Question #6
Internet clients connecting to a virtual server to download a file are experiencing about 150 ms of latency and no packet loss. Which built-in client-side TCP profile provides the highest throughput?
A. tcp
B. tcp-legacy
C. tcp-lan-optimized
D. tcp-wan-optimized
View answer
Correct Answer: D
Question #7
An LTM device is load balancing SIP traffic. An LTM Specialist notices that sometimes the SIP request is being load balanced to the same server as the initial connection. Which setting in the UDP profile will make the LTM device more evenly distribute the SIP traffic?
A. Enable Datagram LB
B. Disable Datagram LB
C. Set Timeout to Indefinite
D. Set Timeout to Immediate
View answer
Correct Answer: A
Question #8
What is a benefit provided by F5 Enterprise Manager?
A. Enterprise Manager allows administrators to analyze traffic flow and create custom application IPS signatures
B. Enterprise Manager allows administrators to establish baseline application usage and generate an alert if an administratively set threshold for the application is exceeded
C. Enterprise Manager allows administrators to identify application vulnerabilities
D. Enterprise Manager allows administrators to monitor all application traffic
View answer
Correct Answer: D
Question #9
Which two alerting capabilities can be enabled from within an application visibility reporting (AVR) analytics profile? (Choose two.)
A. sFlow
B. SNMP
C. e-mail
D. LCD panel alert
E. high speed logging (HSL)
View answer
Correct Answer: A
Question #10
An LTM device is load balancing telnet and ssh applications in a client/server environment experiencing significant packet delay. Which setting in the TCP profile should reduce the amount of packet delay?
A. disable Bandwidth Delay
B. disable Nagle's Algorithm
C. enable Proxy Maximum Segment
D. increase Maximum Segment Retransmissions
View answer
Correct Answer: B
Question #11
Windows PC clients are connecting to a virtual server over a high-speed, low-latency network with no packet loss. Which built-in client-side TCP profile provides the highest throughput for HTTP downloads?
A. tcp
B. tcp-legacy
C. tcp-lan-optimized
D. tcp-wan-optimized
View answer
Correct Answer: C
Question #12
The pool members are serving up simple static web content. The current virtual server configuration is given as follows: tmsh list ltm virtual simple ltm virtual simple { destination 10.10.10.10:80 ip-protocol tcp mask 255.255.255.255 profiles { http { } httpcompression { } oneconnect { } tcp { } } snat automap vlans-disabled } tmsh list ltm pool simple_pool ltm pool simple_pool { members { 10.10.10.11:80 { address 10.10.10.11 } 10.10.10.12:80 { address 10.10.10.12 } 10.10.10.12:80 { address 10.10.10.13 } }
A. tcp
B. http
C. oneconnect
D. snat automap
E. httpcompression
View answer
Correct Answer: D
Question #13
Which iRule will instruct the client's browser to avoid caching HTML server responses?
A. 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" } }
B. 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" } }
C. 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" } }
D. 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" } }
View answer
Correct Answer: E
Question #14
An LTM Specialist is working with an LTM device configured with 10 virtual servers on the same domain with a different key/cert pair per virtual. For examplE. www.example.com; ftp.example.com; ssh.example.com; ftps.example.com. What should the LTM Specialist do to reduce the number of objects on the LTM device?
A. create a 0 port virtual server and have it answer for all protocols
B. create a 0
C. create a transparent virtual server thus eliminating all virtual servers
D. create a wildcard certificate and use it on all *
View answer
Correct Answer: CD
Question #15
In which file would the LTM Specialist find virtual server configurations?
A. bigip
B. bigip_sys
C. bigip_base
D. profile_base
View answer
Correct Answer: BD
Question #16
A stand-alone LTM device is to be paired with a second LTM device to create an active/standby pair. The current stand-alone LTM device is in production and has several VLANs with floating IP addresses configured. The appropriate device service clustering (DSC) configurations are in place on both LTM devices. Which two non-specific DSC settings should the LTM Specialist configure on the second LTM device to ensure no errors are reported when attempting to synchronize for the first time? (Choose two.)
A. pools
B. VLANs
C. default route
D. self IP addresses
View answer
Correct Answer: BCE
Question #17
A OneConnect profile is applied to a virtual server. The LTM Specialist would like the client source IP addresses within the 10.10.10.0/25 range to reuse an existing server side connection. Which OneConnect profile source mask should the LTM Specialist use?
A. 0
B. 255
C. 255
D. 255
E. 255
View answer
Correct Answer: C
Question #18
A web application requires knowledge of the client's true IP address for logging and analysis purposes. Instances of the application that can decode X- Forwarded-For HTTP headers reside in pool_a, while pool_b instances assume the source IP is the true address of the client. Which iRule provides the proper functionality?
A. when HTTP_DATA { if {[HTTP::header exists X-Forwarded-For]}{ pool pool_a } else { pool pool_b } }
B. when HTTP_RESPONSE { if {[HTTP::header exists X-Forwarded-For]}{ pool pool_a } else { pool pool_b } }
C. when HTTP_REQUEST { if {[HTTP::header exists X-Forwarded-For]}{ pool pool_a } else { pool pool_b } }
D. when HTTP_OPEN { if {[HTTP::header exists X-Forwarded-For]}{ pool pool_a } else { pool pool_b } }
View answer
Correct Answer: C
Question #19
An LTM Specialist is customizing local traffic logging. Which traffic management OS alert level provides the most detail?
A. Alert
B. Notice
C. Critical
D. Emergency
E. Informational
View answer
Correct Answer: C

View Answers after Submission

Please submit your email and WhatsApp to get the answers of questions.

Note: Please make sure your email ID and Whatsapp are valid so that you can get the correct exam results.

Email:
Whatsapp/phone number: