Exam 301b All QuestionsBrowse all questions from this exam
Question 42

An application is configured on an LTM device:

Virtual server: 10.0.0.1:80 (VLAN vlan301)

SNAT IP: 10.0.0.1 -

Pool members: 10.0.1.1:8080, 10.0.1.2:8080, 10.0.1.3:8080 (VLAN vlan302)

Which packet capture should the LTM Specialist perform on the LTM device command line interface to capture only server traffic specifically for this application?

    Correct Answer: C

    To capture traffic between the virtual server and the pool members specifically, the packet capture should focus on the pool members' traffic on VLAN vlan302. The correct tcpdump command for this purpose is 'tcpdump -ni vlan302 -s 0 'port 8080 and (host 10.0.1.1 or host 10.0.1.2 or host 10.0.1.3)' -w /var/tmp/trace.cap'. This command ensures capturing traffic only on VLAN 302 for the specified pool member IP addresses and ports.

Discussion
GVKDOption: C

C - Correct