Which iRule will reject any connection originating from a 10.0.0.0/8 network?
A. when CLIENT_ACCEPTED { set remote_ip [IP::addr [IP::remote_addr] mask 8] switch $remote_ip {
"10.0.0.0" { reject }
"11.0.0.0" { pool pool_http1}
default { pool http_pool }
}
}
B. when CLIENT_ACCEPTED { set remote_ip [IP::addr [IP::local_addr] mask 8] switch $remote_ip { "10.0.0.0" { reject } "11.0.0.0" { pool pool_http1} default { pool http_pool }
}
}
C. when CLIENT_ACCEPTED { set remote_ip [IP::addr [IP::client_addr] mask 255.0.0.0] switch $remote_ip { "10.0.0.0" { reject } "11.0.0.0" { pool pool_http1} default { pool http_pool }
}
}
D. when CLIENT_ACCEPTED { set remote_ip [IP::addr [IP::local_addr] mask 255.0.0.0] switch $remote_ip { "10.0.0.0" { reject } "11.0.0.0" { pool pool_http1} default { pool http_pool }
}
}
An LTM device is monitoring three pool members. One pool member is being marked down.
What should the LTM Specialist enable to prevent the server from being flooded with connections once its monitor determines it is up?
A. manual resume
B. packet shaping
C. hold down timer
D. slow ramp timer
E. fastest load balance algorithm
An FTP monitor is NOT working correctly.
Which three pieces of information does the LTM Specialist need to provide to ensure a properly working FTP monitor? (Choose three.)
A. alias
B. File path
C. username
D. password
E. FTP server port
F. FTP server IP address
An LTM Specialist needs to rewrite text within an HTML response from a web server. A client is sending the HTTP request below:
GET / HTTP/1.1 Host: www.f5.com User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20100101 Firefox/16.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-LanguagE. en-US,en;q=0.5 Accept-EncodinG. gzip, deflate Cache-Control: no-cache Connection: keep-alive CookiE. somecookie=1
Although a stream profile has been added to the virtual server, the content within the HTTP response is NOT being matched, and therefore NOT modified.
Which HTTP header should the LTM Specialist remove from the request to ensure the content can be matched and modified?
A. Connection
B. Accept
C. Cache-Control
D. Accept-Encoding
Which command will identify the active LTM device currently handling client traffic?
A. b ha table show
B. tmsh list /sys ha-status
C. tmsh show /cm traffic-group
D. tmsh run /sys failover standby
E. tmsh show /sys ha-status all-properties
The output of a tmsh command is: ------------------------------------------------------------ Net::Interface Name Status Bits Bits Errs Errs Drops Drops Colli In Out In Out In Out sions ------------------------------------------------------------ 1.1 down 0 0 0 0 0 0 0 1.2 up 191.4K 0 0 0 374 0 0 1.3 down 0 0 0 0 0 0 0 1.4 up 22.5K 0 0 0 44 0 0 2.1 miss 0 0 0 0 0 0 0 2.2 miss 0 0 0 0 0 0 0 mgmt up 43.2G 160.0G 0 0 0 0 0 Which command was executed on the LTM device to show the output?
A. tmsh show /net interface
B. tmsh /net show interface status
C. tmsh /net show interface
D. tmsh show /net interface status
-- Exhibit
-- Exhibit -
Refer to the exhibit.
An LTM Specialist is troubleshooting a new HTTP monitor on a pool. The pool member is functioning correctly when accessed directly through a browser. However, the monitor is marking the member as down. The LTM Specialist captures
the monitor traffic via tcpdump.
What is the issue?
A. The server is marking the connection as closed.
B. The pool member is rejecting the monitor request.
C. The monitor request is NOT returning the page body.
D. The 'time-until-up' setting on the monitor is incorrect.
-- Exhibit -- Exhibit -
Refer to the exhibit.
An LTM Specialist is troubleshooting an HTTP monitor that is marking a pool member as down. Connecting to the pool member directly through a browser shows the application is up and functioning correctly.
ltm monitor http http_mon { defaults-from http destination *:* interval 5 recv "200 OK" send "GET /\\r\\n" time-until-up 0 timeout 16 }
What is the issue?
A. The HTTP headers are compressed.
B. The pool member is responding with a 404.
C. The pool member is responding without HTTP headers.
D. The request is NOT being received by the pool member.
-- Exhibit
-- Exhibit -
Refer to the exhibit.
An LTM Specialist is troubleshooting an issue with a new virtual server. When connecting through the virtual server, clients receive the message "The connection was reset" in the browser. Connections directly to the pool member show the
application is functioning correctly.
What is the issue?
A. The pool member is failing the monitor check.
B. The pool member default gateway is set incorrectly.
C. The virtual server is configured with the incorrect SNAT address.
D. The virtual server is processing encrypted traffic as plain-text HTTP.
-- Exhibit
-- Exhibit -Refer to the exhibit.
A failover has just occured on BIG-IP1. BIG-IP2 is now active and manages traffic as expected. Both Bigip's are set with a gateway failsafe to check the reachability of the main border router.
Switches have performed as expected.
Where should the LTM Specialist check for potential issues?
A. Network Interface 2.1 of BIG-IP 2
B. Network Interface 2.1 of BIG-IP 1
C. Network Interface 2.2 of BIG-IP 2
D. Network Interface 2.2 of BIG-IP 1
E. Network Interface 1.1 of BIG-IP 1
F. Network Interface 1.1 of BIG-IP 2