ExamGecko
Home / F5 / 301b / List of questions
Ask Question

F5 301b Practice Test - Questions Answers, Page 9

Add to Whishlist

List of questions

Question 81

Report Export Collapse

An LTM Specialist is creating a custom EAV monitor.

In which directory should the LTM Specialist upload the script?

/usr/monitor
/usr/monitor
/usr/monitors
/usr/monitors
/config/monitors
/config/monitors
/usr/bin/monitors
/usr/bin/monitors
/config/templates
/config/templates
Suggested answer: C
asked 24/09/2024
Manuel Ortega
48 questions

Question 82

Report Export Collapse

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.)

alias
alias
File path
File path
username
username
password
password
FTP server port
FTP server port
FTP server IP address
FTP server IP address
Suggested answer: B, C, D
asked 24/09/2024
Anthony Steele
44 questions

Question 83

Report Export Collapse

Which iRule statement demotes a virtual server from CMP?

set ::foo 123
set ::foo 123
set static::foo 123
set static::foo 123
persist source_addr 1800
persist source_addr 1800
[ class match $HTTP_CONTENT contains my_data_class ]
[ class match $HTTP_CONTENT contains my_data_class ]
Suggested answer: A
asked 24/09/2024
Ioana Mihaila
53 questions

Question 84

Report Export Collapse

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

The iRule execution will continue with the next statement.
The iRule execution will continue with the next statement.
The execution of the current event within the iRule will be terminated.
The execution of the current event within the iRule will be terminated.
The iRule execution will be terminated, and both the client and server side connections will be reset.
The iRule execution will be terminated, and both the client and server side connections will be reset.
The connection will continue, but the iRule will NOT be executed again for the lifetime of the connection.
The connection will continue, but the iRule will NOT be executed again for the lifetime of the connection.
Suggested answer: C
asked 24/09/2024
Mark Aplacador
46 questions

Question 85

Report Export Collapse

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?

The iRule compares a client IP to a list. If the client IP is on the list, discard and log the discard.
The iRule compares a client IP to a list. If the client IP is on the list, discard and log the discard.
The iRule compares a client IP to a list. If the client IP is NOT on the list, discard and log the discard.
The iRule compares a client IP to a list. If the client IP is NOT on the list, discard and log the discard.
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.
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.
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.
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.
Suggested answer: B
asked 24/09/2024
Paul Hackett
40 questions

Question 86

Report Export Collapse

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?

The commands set up a high-speed logging connection and then send the geographical database to the server.
The commands set up a high-speed logging connection and then send the geographical database to the server.
The commands set up a high-speed logging connection and then send the host header and client geographical detail to the connection.
The commands set up a high-speed logging connection and then send the host header and client geographical detail to the connection.
The commands set up a high-speed logging connection and then send the host header, HTTP payload, and client geographical detail to the connection.
The commands set up a high-speed logging connection and then send the host header, HTTP payload, and client geographical detail to the connection.
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.
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.
Suggested answer: B
asked 24/09/2024
David LeBlanc
24 questions

Question 87

Report Export Collapse

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?

Pool1
Pool1
Pool2
Pool2
Pool3
Pool3
Pool4
Pool4
Suggested answer: D
asked 24/09/2024
Eddie Martinez
44 questions

Question 88

Report Export Collapse

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?

Allows clients with credentials to access the old_application_pool and logs the access of clients without credentials to the new_application_pool.
Allows clients with credentials to access the old_application_pool and logs the access of clients without credentials to the new_application_pool.
Allows clients without credentials to access the old_application_pool and logs the access of clients with credentials to the new_application_pool.
Allows clients without credentials to access the old_application_pool and logs the access of clients with credentials to the new_application_pool.
Allows clients with credentials to access the old_application_pool and logs the attempted access of clients with credentials to the new_application_pool.
Allows clients with credentials to access the old_application_pool and logs the attempted access of clients with credentials to the new_application_pool.
Allows clients without credentials to access the old_application_pool and logs the attempted access of clients without credentials to the new_application_pool.
Allows clients without credentials to access the old_application_pool and logs the attempted access of clients without credentials to the new_application_pool.
Suggested answer: B
asked 24/09/2024
Malik Khabir
40 questions

Question 89

Report Export Collapse

Which three HTTP headers allow an application server to determine the client's language compatibility, browser, operating system type, and compression compatibility? (Choose three.)

Accept
Accept
Accept-Encoding
Accept-Encoding
Accept-Language
Accept-Language
Host
Host
User-Agent
User-Agent
Suggested answer: B, C, E
asked 24/09/2024
tony Gentry
52 questions

Question 90

Report Export Collapse

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

Which HTTP header will supply this information?

Host
Host
From
From
Expect
Expect
Connection
Connection
Suggested answer: A
asked 24/09/2024
Euwing Mendoza
50 questions
Total 210 questions
Go to page: of 21
Search

Related questions