ExamGecko
Home Home / F5 / 301b

F5 301b Practice Test - Questions Answers, Page 9

Question list
Search
Search

List of questions

Search

Related questions











An LTM Specialist is creating a custom EAV monitor.

In which directory should the LTM Specialist upload the script?

A.
/usr/monitor
A.
/usr/monitor
Answers
B.
/usr/monitors
B.
/usr/monitors
Answers
C.
/config/monitors
C.
/config/monitors
Answers
D.
/usr/bin/monitors
D.
/usr/bin/monitors
Answers
E.
/config/templates
E.
/config/templates
Answers
Suggested answer: C

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
A.
alias
Answers
B.
File path
B.
File path
Answers
C.
username
C.
username
Answers
D.
password
D.
password
Answers
E.
FTP server port
E.
FTP server port
Answers
F.
FTP server IP address
F.
FTP server IP address
Answers
Suggested answer: B, C, D

Which iRule statement demotes a virtual server from CMP?

A.
set ::foo 123
A.
set ::foo 123
Answers
B.
set static::foo 123
B.
set static::foo 123
Answers
C.
persist source_addr 1800
C.
persist source_addr 1800
Answers
D.
[ class match $HTTP_CONTENT contains my_data_class ]
D.
[ class match $HTTP_CONTENT contains my_data_class ]
Answers
Suggested answer: A

What is the effect of an iRule error such as referencing an undefined variable?

A.
The iRule execution will continue with the next statement.
A.
The iRule execution will continue with the next statement.
Answers
B.
The execution of the current event within the iRule will be terminated.
B.
The execution of the current event within the iRule will be terminated.
Answers
C.
The iRule execution will be terminated, and both the client and server side connections will be reset.
C.
The iRule execution will be terminated, and both the client and server side connections will be reset.
Answers
D.
The connection will continue, but the iRule will NOT be executed again for the lifetime of the connection.
D.
The connection will continue, but the iRule will NOT be executed again for the lifetime of the connection.
Answers
Suggested answer: C

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?

A.
The iRule compares a client IP to a list. If the client IP is on the list, discard and log the discard.
A.
The iRule compares a client IP to a list. If the client IP is on the list, discard and log the discard.
Answers
B.
The iRule compares a client IP to a list. If the client IP is NOT on the list, discard and log the discard.
B.
The iRule compares a client IP to a list. If the client IP is NOT on the list, discard and log the discard.
Answers
C.
The iRule compares a client IP to a list. If the client IP is on the list, the client is sent to Pool WebClient1. Otherwise, discard and log the discard.
C.
The iRule compares a client IP to a list. If the client IP is on the list, the client is sent to Pool WebClient1. Otherwise, discard and log the discard.
Answers
D.
The iRule compares a client IP to a list. If the client IP is NOT on the list, the client is sent to Pool WebClient1. Otherwise, discard and log the discard.
D.
The iRule compares a client IP to a list. If the client IP is NOT on the list, the client is sent to Pool WebClient1. Otherwise, discard and log the discard.
Answers
Suggested answer: B

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?

A.
The commands set up a high-speed logging connection and then send the geographical database to the server.
A.
The commands set up a high-speed logging connection and then send the geographical database to the server.
Answers
B.
The commands set up a high-speed logging connection and then send the host header and client geographical detail to the connection.
B.
The commands set up a high-speed logging connection and then send the host header and client geographical detail to the connection.
Answers
C.
The commands set up a high-speed logging connection and then send the host header, HTTP payload, and client geographical detail to the connection.
C.
The commands set up a high-speed logging connection and then send the host header, HTTP payload, and client geographical detail to the connection.
Answers
D.
The commands set up a high-speed logging connection to the LTM device and then send the host header and client geographical detail to the connection.
D.
The commands set up a high-speed logging connection to the LTM device and then send the host header and client geographical detail to the connection.
Answers
Suggested answer: B

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?

A.
Pool1
A.
Pool1
Answers
B.
Pool2
B.
Pool2
Answers
C.
Pool3
C.
Pool3
Answers
D.
Pool4
D.
Pool4
Answers
Suggested answer: D

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?

A.
Allows clients with credentials to access the old_application_pool and logs the access of clients without credentials to the new_application_pool.
A.
Allows clients with credentials to access the old_application_pool and logs the access of clients without credentials to the new_application_pool.
Answers
B.
Allows clients without credentials to access the old_application_pool and logs the access of clients with credentials to the new_application_pool.
B.
Allows clients without credentials to access the old_application_pool and logs the access of clients with credentials to the new_application_pool.
Answers
C.
Allows clients with credentials to access the old_application_pool and logs the attempted access of clients with credentials to the new_application_pool.
C.
Allows clients with credentials to access the old_application_pool and logs the attempted access of clients with credentials to the new_application_pool.
Answers
D.
Allows clients without credentials to access the old_application_pool and logs the attempted access of clients without credentials to the new_application_pool.
D.
Allows clients without credentials to access the old_application_pool and logs the attempted access of clients without credentials to the new_application_pool.
Answers
Suggested answer: B

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.
Accept
A.
Accept
Answers
B.
Accept-Encoding
B.
Accept-Encoding
Answers
C.
Accept-Language
C.
Accept-Language
Answers
D.
Host
D.
Host
Answers
E.
User-Agent
E.
User-Agent
Answers
Suggested answer: B, C, E

A web application requires the client to provide the destination server and service identification.

Which HTTP header will supply this information?

A.
Host
A.
Host
Answers
B.
From
B.
From
Answers
C.
Expect
C.
Expect
Answers
D.
Connection
D.
Connection
Answers
Suggested answer: A
Total 210 questions
Go to page: of 21