vote up -1 vote down star

Unix.....>>netstat -al | grep 8787 (will see packets on port 8787)

flag

Is there a question here? – Unkwntech Sep 17 '08 at 19:58

4 Answers

vote up 0 vote down check

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.

link|flag
vote up 1 vote down

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?

link|flag
vote up 0 vote down

yes, wanting to see packets on this port.

link|flag
vote up 0 vote down

If you want to see the actual packets then you need to use tcpdump.

Use the -s option to specify how much of the packet you want to see (0 means the whole packet) and the -X option to get a Hex and ASCII dump.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.