[Wireshark-users] Capture filter for ARP, DNS and PING

2008-01-06 Thread nilay yildirim
Hi,

How can I set up a capture filter just to capture ARP, DNS and PING? I did
it with Display filters but the same method didn't work for the Capture
filter. I'm new to Wireshark and still struggling with some easy stuff.

Nilay
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


Re: [Wireshark-users] Capture filter for ARP, DNS and PING

2008-01-06 Thread Troopy .

Try

icmp or dns or arp

Regards

TRoopy
-- Original Message --
From: nilay yildirim [EMAIL PROTECTED]
Reply-To: Community support list for Wireshark wireshark-users@wireshark.org
Date:  Sun, 6 Jan 2008 16:21:59 -0500

Hi,

How can I set up a capture filter just to capture ARP, DNS and PING? I did
it with Display filters but the same method didn't work for the Capture
filter. I'm new to Wireshark and still struggling with some easy stuff.

Nilay



 

 
__
Désirez vous une adresse éléctronique @suisse.com?
Visitez la Suisse virtuelle sur http://www.suisse.com

___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


Re: [Wireshark-users] Capture filter for ARP, DNS and PING

2008-01-06 Thread Guy Harris
nilay yildirim wrote:

 How can I set up a capture filter just to capture ARP, DNS and PING?

DNS generally means traffic to or from the Domain Name System port, 
and PING generally means ICMP Echo and Echo Reply packets, so:

arp or port domain or icmp[icmptype] = icmp-echo or icmp[icmptype] = 
icmp-echoreply
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


Re: [Wireshark-users] Capture filter for ARP, DNS and PING

2008-01-06 Thread nilay yildirim
Thanks. So how about if I wanted to only capture all packets to and from
10.10.10.10 ( host ip adress) but just arp, dns and ping? What does this
changes? Or I need to create another filter???

arp or port domain or icmp[icmptype] = icmp-echo or icmp[icmptype] =
icmp-echoreply


On Jan 6, 2008 5:28 PM, Guy Harris [EMAIL PROTECTED] wrote:

 nilay yildirim wrote:

  How can I set up a capture filter just to capture ARP, DNS and PING?

 DNS generally means traffic to or from the Domain Name System port,
 and PING generally means ICMP Echo and Echo Reply packets, so:

arp or port domain or icmp[icmptype] = icmp-echo or icmp[icmptype]
 =
 icmp-echoreply
 ___
 Wireshark-users mailing list
 Wireshark-users@wireshark.org
 http://www.wireshark.org/mailman/listinfo/wireshark-users

___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


Re: [Wireshark-users] Capture filter for ARP, DNS and PING

2008-01-06 Thread Frank Bulk
Perhaps this has been asked and answered, but is there a tool or utility to
convert between capture and display syntax?

Frank 


From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of nilay yildirim
Sent: Sunday, January 06, 2008 3:22 PM
To: wireshark-users@wireshark.org
Subject: [Wireshark-users] Capture filter for ARP, DNS and PING

Hi,

How can I set up a capture filter just to capture ARP, DNS and PING? I did
it with Display filters but the same method didn't work for the Capture
filter. I'm new to Wireshark and still struggling with some easy stuff. 

Nilay  


___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users


Re: [Wireshark-users] Capture filter for ARP, DNS and PING

2008-01-06 Thread Guy Harris
nilay yildirim wrote:
 Thanks. So how about if I wanted to only capture all packets to and from 
 10.10.10.10 http://10.10.10.10 ( host ip adress) but just arp, dns and 
 ping? What does this changes? Or I need to create another filter???

ARP packets don't go to or from IP addresses - they go to or from MAC 
addresses, so you can't capture ARP traffic to or from 10.10.10.10, as 
that notion makes no sense.

However, you could do

host 10.10.10.10 and (port domain or icmp[icmptype] = icmp-echo or 
icmp[icmptype] = icmp-echoreply)

which will capture DNS and ICMP ping traffic to or from 10.10.10.10.
___
Wireshark-users mailing list
Wireshark-users@wireshark.org
http://www.wireshark.org/mailman/listinfo/wireshark-users