This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Query Info Field

0

When I look in my capture, I see several:

SMB2 Create Request File: filename.txt SMB2 Create Response, Error: STATUS_OBJECT_NAME_NOT_FOUND

How can I write a query where the word "Create" is present in the Info field? I can do an ip.addr == 192.168.80.10, but I only want to see the create requests or errors, and nothing else.

asked 08 Jul '15, 06:36

kspinnato's gravatar image

kspinnato
11113
accept rate: 0%


One Answer:

0

smb2.cmd == 5

For your complete filter: smb2.cmd == 5 && ip.addr==192.168.80.10

answered 08 Jul '15, 08:59

Amato_C's gravatar image

Amato_C
1.1k142032
accept rate: 14%

That works perfect! Thanks for helping me out with this filter.

(08 Jul '15, 09:13) kspinnato