لا تريد أن تفوت شيئا؟

نصائح اجتياز امتحان الشهادة

آخر أخبار الامتحانات ومعلومات الخصم

برعاية وحديثة من قبل خبرائنا

نعم، أرسل لي النشرة الإخبارية

خذ اختبارات أخرى عبر الإنترنت

السؤال #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
عرض الإجابة
اجابة صحيحة: C
السؤال #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
عرض الإجابة
اجابة صحيحة: B
السؤال #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
عرض الإجابة
اجابة صحيحة: C
السؤال #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
عرض الإجابة
اجابة صحيحة: A
السؤال #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
عرض الإجابة
اجابة صحيحة: C
السؤال #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
عرض الإجابة
اجابة صحيحة: D
السؤال #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
عرض الإجابة
اجابة صحيحة: A
السؤال #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
عرض الإجابة
اجابة صحيحة: D
السؤال #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)
عرض الإجابة
اجابة صحيحة: A
السؤال #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
عرض الإجابة
اجابة صحيحة: B
السؤال #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
عرض الإجابة
اجابة صحيحة: C
السؤال #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
عرض الإجابة
اجابة صحيحة: D
السؤال #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" } }
عرض الإجابة
اجابة صحيحة: E
السؤال #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 *
عرض الإجابة
اجابة صحيحة: CD
السؤال #15
In which file would the LTM Specialist find virtual server configurations?
A. bigip
B. bigip_sys
C. bigip_base
D. profile_base
عرض الإجابة
اجابة صحيحة: BD
السؤال #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
عرض الإجابة
اجابة صحيحة: BCE
السؤال #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
عرض الإجابة
اجابة صحيحة: C
السؤال #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 } }
عرض الإجابة
اجابة صحيحة: C
السؤال #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
عرض الإجابة
اجابة صحيحة: C

عرض الإجابات بعد التقديم

يرجى إرسال البريد الإلكتروني الخاص بك والواتس اب للحصول على إجابات الأسئلة.

ملحوظة: يرجى التأكد من صلاحية معرف البريد الإلكتروني وWhatsApp حتى تتمكن من الحصول على نتائج الاختبار الصحيحة.

بريد إلكتروني:
رقم الواتس اب/الهاتف: