Captures TCP packets with the SYN flag set (connection initiation)
tcp.flags.syn==1 && !tcp.flags.ack
Captures SYN-ACK packets (response from the server)
tcp.flags.syn==1 && tcp.flags.ack==1
Captures ACK packets (completes the handshake)
tcp.flags.ack==1 && !tcp.flags.syn
Captures HTTP requests sent by the client
Captures HTTP responses from the server
Captures DNS query packets (client request for domain resolution)
Captures DNS response packets (server responds with IP address)
Captures ICMP echo requests (ping requests)
Captures ICMP echo replies (ping replies)
Captures FTP commands sent by the client
Captures FTP responses from the server