ExamGecko
Home Home / F5 / 301b
Question list
Search
Search

List of questions

Search

Related questions











Question 54 - 301b discussion

Report
Export

A virtual server for a set of web services is constructed on an LTM device. The LTM Specialist has created an iRule and applied this iRule to the virtual server:

when HTTP_REQUEST {

switch [HTTP::uri] {

'/WS1/ws.jsp' {

log local0. '[HTTP::uri]-Redirected to JSP Pool'

pool JSP

}

default { log local0. '[HTTP::uri]-Redirected to Non-JSP Pool'

pool NonJSP

}

}

}

However, the iRule is NOT behaving as expected. Below is a snapshot of the log:

/WS1/ws.jsp-Redirected to JSP Pool

/WS1/ws.jsp-Redirected to JSP Pool

/WS1/ws.jsp-Redirected to JSP Pool

/WS1/WS.jsp-Redirected to Non-JSP Pool

/ws1/WS.jsp-Redirected to Non-JSP Pool

/WS1/ws.jsp-Redirected to JSP Pool

/ws1/ws.jsp-Redirected to Non-JSP Pool

What is the problem?

A.
The condition in the iRule is case sensitive.
Answers
A.
The condition in the iRule is case sensitive.
B.
The 'switch' command in the iRule has been used incorrectly.
Answers
B.
The 'switch' command in the iRule has been used incorrectly.
C.
The pool members of both pools need to be set up as case-insensitive members.
Answers
C.
The pool members of both pools need to be set up as case-insensitive members.
D.
The 'Process Case-Insensitivity' option for the virtual server needs to be selected.
Answers
D.
The 'Process Case-Insensitivity' option for the virtual server needs to be selected.
Suggested answer: A
asked 24/09/2024
B Erol
57 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first