Re: [Wireshark-users] tcpdump command

2007-05-18 Thread andre.noel
Hi, Youa re using dst host and src host that's why. To see both direction between thiese hosts try tcpdump -i eth0 -s 1500 -w dump host 192.168.0.1 http://192.168.0.1 and host www.example.com http://www.example.com This way you will have only host to host conversation both

Re: [Wireshark-users] tcpdump command

2007-05-18 Thread David Meagher
you are using src and dst filters. this is why you are only seeing traffic going in one way try just using the host that you are interested in so tcpdump -i eth0 -s 1500 -w dump2 host www.example.com On 18/05/07, Kaushal Shriyan [EMAIL PROTECTED] wrote: Hi I have to capture network traffic

[Wireshark-users] tcpdump command

2007-05-18 Thread Kaushal Shriyan
Hi I have to capture network traffic between an appliance and content server using tcpdump command and then dump to a file and read and decode it using wireshark How do i proceed I have used tcpdump -i eth0 -s 1500 -w dump src host 192.168.0.1 and dst host www.example.com when i read the dump

Re: [Wireshark-users] tcpdump command

2007-05-18 Thread Guy Harris
Kaushal Shriyan wrote: I have to capture network traffic between an appliance and content server using tcpdump command and then dump to a file and read and decode it using wireshark How do i proceed I have used tcpdump -i eth0 -s 1500 -w dump src host 192.168.0.1 and dst host