tcpdump is a very useful tool that helps gather information that sometimes cannot be found in the logs generated through the Strategy Diagnostics Configuration application. This tool captures network traffic and which can be saved to a file.
In Linux, tcpdump can be launched by executing the command "tcpdump" in a console (it is normally required to run this command as root in order to have access to the traffic on network interfaces). Shown below is a list of useful parameters to capture the required information.
Examples:
tcpdump -i any -s0 -n -w <filename.cap> port <port number> and host <host name or host ip>
tcpdump -i any -s0 -n -w <filename.cap> port <port number> or host <host name or host ip>
tcpdump -i any -s0 -n -w <filename.cap> port <port number>
tcpdump -i any -s0 -n -w <filename.cap> host <host name or host ip>
tcpdump -i any -s0 -w <filename.cap>
REFERENCE:
http://www.tcpdump.org/tcpdump_man.html
WARNING:
The third-party product(s) discussed in this technical note is manufactured by vendors independent of Strategy. Strategy makes no warranty, express, implied or otherwise, regarding this product, including its performance or reliability..