1829894 Members
2294 Online
109993 Solutions
New Discussion

Ho to use tcpdump

 
SOLVED
Go to solution
Jojo Castro
Regular Advisor

Ho to use tcpdump

Hi all,

We are currently some link problem between our front end connecting to our host via port.

Here is the set-up

10.144.10.134 – connects to 10.121.55.76:21920 and 10.121.55.79:21920

10.144.10.152 – connects to 10.121.55.76:21921 and 10.121.55.79:21921

10.144.10.181 – connects to 10.121.55.76:21922 and 10.121.55.79:20922


For example i want to see the status of 10.144.10.134 connection to 10.121.55.76 using port 21920, how does tcpdump helps?

What is the syntax?

Thanks!
4 REPLIES 4
avizen9
Esteemed Contributor

Re: Ho to use tcpdump

here is easy tutorial, go through it will
guide you, thanks,

http://openmaniak.com/tcpdump.php
savus
Advisor
Solution

Re: Ho to use tcpdump

Hello can use this filer:

tcpdump src 10.144.10.134 and dst 10.121.55.76 and port 21920

Regards,
Stefan
Suraj K Sankari
Honored Contributor

Re: Ho to use tcpdump

Hi,
see the man page of
http://www.tcpdump.org/tcpdump_man.html

Suraj
Jojo Castro
Regular Advisor

Re: Ho to use tcpdump

Thanks to all