aboutsummaryrefslogtreecommitdiffstats
path: root/dfilters
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-06-09 07:43:32 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-06-09 07:43:32 +0000
commit45bac4dda7837e0c618da54847f718673d144c86 (patch)
tree4a6e8a6cbd9cf13917d427c00fd6600fb6e894dd /dfilters
parentd77f558c5915db836c8385e781810f8ad445af05 (diff)
provide global default files for cfilters/colorfilters/dfilters
at least the colorfilters file needs some more "finetuning" NSIS (Win32): install these files into the Ethereal Program dir, but don't overwrite existing ones makefile.am: I've added the three files to EXTRA_DIST and pkgdata_DATA, which *seems* to be the right places svn path=/trunk/; revision=14595
Diffstat (limited to 'dfilters')
-rw-r--r--dfilters15
1 files changed, 15 insertions, 0 deletions
diff --git a/dfilters b/dfilters
new file mode 100644
index 0000000000..3930f8d4c3
--- /dev/null
+++ b/dfilters
@@ -0,0 +1,15 @@
+"Ethernet address 00:08:15:00:08:15" eth.addr == 00:08:15:00:08:15
+"Ethernet type 0x0806 (ARP)" eth.type == 0x0806
+"Ethernet broadcast" eth.addr == ff:ff:ff:ff:ff:ff
+"No ARP" not arp
+"IP only" ip
+"IP address 192.168.0.1" ip.addr == 192.168.0.1
+"IP address isn't 192.168.0.1, don't use != for this!" !(ip.addr == 192.168.0.1)
+"IPX only" ipx
+"TCP only" tcp
+"UDP only" udp
+"UDP port isn't 53 (not DNS), don't use != for this!" !(tcp.port == 53)
+"TCP or UDP port is 80 (HTTP)" tcp.port == 80 || udp.port == 80
+"HTTP" http
+"No ARP and no DNS" not arp and !(udp.port == 53)
+"Non-HTTP and non-SMTP to/from 192.168.0.1" not (tcp.port == 80) and not (tcp.port == 25) and ip.addr == 192.168.0.1