Exam 101 All QuestionsBrowse all questions from this exam
Question 78

The partial configuration below includes an iRule, a virtual server, and pools. When traffic from the client at 160.10.10.10:2056 connects to the virtual server

Test_VS and sends an HTTP request, what will the client's source address be translated to as the traffic is sent to the chosen pool member?

    Correct Answer: C

    The iRule in the configuration is evaluated based on the client's local port. The condition checks if the local port is less than 1024. In this scenario, the client's source port is 2056, which is greater than 1024. Therefore, the iRule directs the traffic to use the upper range of the snatpool. The upper_range in the snatpool configuration specifies 10.10.10.2. Consequently, the client's source address will be translated to 10.10.10.2.

Discussion
DanielseyoumOption: E

E. 10.10.10.1 - The iRule doesn't evaluate the client port. [TCP::local_port] on Client side connection refers to the VS port. To evaluate the client port in this case [TCP::remote_port] should have been used or should have been [TCP::client_port]

GHCheeOption: C

ya, C is correct upper range

espositop2004Option: C

C is correct upper range

WassuOption: C

well 2056 > 1024 then it falls under upper range so source address will be 10.10.10.2