The steps to capture the normal TCP connection flow (a sample program is provided as part of this book) are as follows:
tcp.port==8082.TCPServer01.java using the javac command:
bash$ ~ javac TCPServer01.java
TCPServer01 using the java command:
bash$ ~ java TCPServer01
8082:bash$ ~ netstat -an | grep 8082 tcp46 0 0 *.8082 *.* LISTEN
Client0301.java using the javac command:
bash$ ~ javac Client0301.java
bash$ ~ java Client0301