Unix.....>>netstat -al | grep 8787 (will see packets on port 8787)
|
|
Use the command ifconfig -a to determine the interface you want to listen on. Then use tcpdump -npi eth0 port 8787 to listen on the port where eth0 is the interface you want to listen on that you identified from the ifconfig command. |
||
|
|
|
|
What is the nature of the question here? Are you trying to see packets on port 8787? Are you looking for services listening on port 8787? Most importantly, how is this a programming-related question? |
||
|
|
|
|
yes, wanting to see packets on this port. |
||
|
|
|
|
If you want to see the actual packets then you need to use tcpdump. Use the |
||
|
|
