F5 301b Practice Test - Questions Answers, Page 9
List of questions
Related questions
An LTM Specialist is creating a custom EAV monitor.
In which directory should the LTM Specialist upload the script?
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.)
Which iRule statement demotes a virtual server from CMP?
What is the effect of an iRule error such as referencing an undefined variable?
when CLIENT_ACCEPTED {
if { [matchclass [IP::client_addr] equals WebClient1-Whitelist1] }{
#log local0. 'Valid client IP: [IP::client_addr] - forwarding traffic'
#Pool WebClient1
} else {
log local0. 'Invalid client IP: [IP::client_addr] - discarding'
discard
}
}
What does the following iRule do?
set hsl [HSL::open -proto UDP -pool syslog_server_pool]
HSL::send $hsl '<190> [HTTP::host] from [whereis [IP::client_addr] country continent state city zip] , IP: [IP::client_addr]'
What do the following iRule commands do when they are used in the same iRule?
An LTM Specialist configures the following iRule on an LTM device:
when HTTP_REQUEST {
if {[string tolower [HTTP::uri]] contains '/URI1/' } {
pool Pool1
}
elseif {[string tolower [HTTP::uri]] contains '/URI2/' } {
pool Pool2
}
elseif {[string tolower [HTTP::uri]] contains '/URI3/' } {
pool Pool3
}
else { pool Pool4}
}
Given the following request: http://www.example.comURI1/index.html?fu=bar&pass=1234
Which pool will be selected by the iRule?
Given the iRule:
when HTTP_REQUEST {
if {([HTTP::username] ne '') and ([HTTP::password] ne '') } {
log local0. 'client ip [IP::remote_addr] credentials provided [HTTP::username] [HTTP::password]'}
else {
pool old_application_pool
}
}
The associated virtual server has a default pool named new_application_pool.
Which functionality does the iRule provide?
Which three HTTP headers allow an application server to determine the client's language compatibility, browser, operating system type, and compression compatibility? (Choose three.)
A web application requires the client to provide the destination server and service identification.
Which HTTP header will supply this information?
Question