WireShark filters
WireShark filters
ip.addr == <IP address> : To filter by IP address
tcp.port == <Port no> : To filter by port number
dns or http : Displays dns and http traffic
frame matches "<string>" : Strings search
tcp.analysis.flags : Shows the problems like packet loss, windows problem
!(arp or dns or icmp) : removes arp, dns and icmp from the traces
Follow TCP stream : Any packets that are related to the tcp conversation
tcp.stream eq 32 : Same above
tcp contains facebook : Contains text facebook
udp contains facebook : dns query facebook, p2p,
http.request : All the gets, servers, tran
http.response.code == 200 : Filter by the http responses
tcp.flags.syn ==1 : security filtering (attacked)
tcp.flags.reset == 1 : resets
Comments
Post a Comment