ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Wireshark-dev: Re: [Wireshark-dev] WireShark filters

Date: Tue, 17 Mar 2009 16:58:43 +0100
Hi Yonatan,

You can use a display filter:
(frame.time >= "Mar 17, 2008 14:00:00") && (frame.time <= "Mar 17, 2008 15:00:00")

If you want to see the tcp packets and not the http packets:
!http && tcp && (frame.time >= "Mar 17, 2008 14:00:00") && (frame.time <=
"Mar 17, 2008 15:00:00")

Regards
Joan

On Tue, 17 Mar 2009 16:58:37 +0200 Yonatan wrote:

>hi , 
>is it possible to fileter packets for a specific timeSpan ? 
>for example , i want to see all tcp packets beween 2pm - 3pm .     ( or
any other time values ) 
> 
>thanks 
>Yonatan