Re: [Wireshark-users] Wild Card

2007-03-22 Thread Hans Nilsson
Try this: ip[15,19]==28:28 On Wed, 21 Mar 2007 20:33:07 -0400, "Christopher Clayden" <[EMAIL PROTECTED]> said: > Hello Everyone, > > > > Can anyone tell me what the wild card is in wireshark when used in IP > addresses, if there is such? > > > > For example, say you want to create a filter

Re: [Wireshark-users] Wild Card

2007-03-22 Thread Jaap Keuter
Hi, You'll want to use the slice operator for that. First look up the offset into the IP header to the source and destination addresses parts of interest (15 and 19), then apply the slice operator to ip. Like so: (ip[15:1]==28)||(ip[19:1]==28) Thanx, Jaap On Wed, 21 Mar 2007, Christopher Clayden

[Wireshark-users] Wild Card

2007-03-21 Thread Christopher Clayden
Hello Everyone, Can anyone tell me what the wild card is in wireshark when used in IP addresses, if there is such? For example, say you want to create a filter for all DC's in your organization and there addresses are as follows: 192.168.1.40 192.168.2.40 192.168.3.40 192.168.4.40 192