퍼온곳 : http://wiki.wireshark.org/CaptureFilters#Examples
Capture filter is not a display filter
Capture filters (like tcp port 80) are not to be confused with display filters (like tcp.port == 80). The former are much more limited and are used to reduce the size of a raw packet capture. The latter are used to hide some packets from the packet list.
Capture filters are set before starting a packet capture and cannot be modified during the capture. Display filters on the other hand do not have this limitation and you can change them on the fly.
In the main window, one can find the capture filter just above the interfaces list and in the interfaces dialog. The display filter can be changed above the packet list as can be seen in this picture:
Examples
Capture only traffic to or from IP address 172.18.5.4:
-
host 172.18.5.4
Capture traffic to or from a range of IP addresses:
-
net 192.168.0.0/24
or
-
net 192.168.0.0 mask 255.255.255.0
Capture traffic from a range of IP addresses:
-
src net 192.168.0.0/24
or
-
src net 192.168.0.0 mask 255.255.255.0
Capture traffic to a range of IP addresses:
-
dst net 192.168.0.0/24
or
-
dst net 192.168.0.0 mask 255.255.255.0
Capture only DNS (port 53) traffic:
-
port 53
Capture non-HTTP and non-SMTP traffic on your server (both are equivalent):
-
host www.example.com and not (port 80 or port 25)
host www.example.com and not port 80 and not port 25
Capture except all ARP and DNS traffic:
-
port not 53 and not arp
Capture traffic within a range of ports
-
(tcp[0:2] > 1500 and tcp[0:2] < 1550) or (tcp[2:2] > 1500 and tcp[2:2] < 1550)
or, with newer versions of libpcap (0.9.1 and later):
-
tcp portrange 1501-1549
Capture only Ethernet type EAPOL:
-
ether proto 0x888e
Reject ethernet frames towards the Link Layer Discovery Protocol Multicast group:
-
not ether dst 01:80:c2:00:00:0e
Capture only IPv4 traffic – the shortest filter, but sometimes very useful to get rid of lower layer protocols like ARP and STP:
-
ip
Capture only unicast traffic – useful to get rid of noise on the network if you only want to see traffic to and from your machine, not, for example, broadcast and multicast announcements:
-
not broadcast and not multicast
Capture IPv6 “all nodes” (router and neighbor advertisement) traffic. Can be used to find rogue RAs:
-
dst host ff02::1
Capture HTTP GET requests. This looks for the bytes ‘G’, ‘E’, ‘T’, and ‘ ‘ (hex values 47, 45, 54, and 20) just after the TCP header. “tcp[12:1] & 0xf0) >> 2” figures out the TCP header length. From Jefferson Ogata via the tcpdump-workers mailing list.
-
port 80 and tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x47455420
Useful Filters
Blaster and Welchia are RPC worms. (Does anyone have better links, i.e. ones that describe or show the actual payload?)
-
dst port 135 and tcp port 135 and ip[2:2]==48
-
icmp[icmptype]==icmp-echo and ip[2:2]==92 and icmp[8:4]==0xAAAAAAAA
The filter looks for an icmp echo request that is 92 bytes long and has an icmp payload that begins with 4 bytes of A’s (hex). It is the signature of the welchia worm just before it tries to compromise a system.