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 |
One Answer:
smb2.cmd == 5 For your complete filter: smb2.cmd == 5 && ip.addr==192.168.80.10 answered 08 Jul '15, 08:59 Amato_C |
That works perfect! Thanks for helping me out with this filter.