Search This Blog

Saturday 29 March 2014

WireShark Filters with IPaddress & Port

Filter for  ip address:

Ip.addr ==  148.147.XX.XX

Ip.src  == 148.147.XX.XX   (Source IP address filter)

Ip.dst == 148.147.XX.XX      (Destination IP address filter)

Ip.src == 148.147.XX.XX &&  Ip.dst == 148.147.XX.XX  (Source and destination IP address filter)

Filter for Port:

Tcp.port == XXX  (TCP port filter)

Udp.port == XXX  (UDP Port filter)

Tcp.srcport==XXX (TCP port filter for source)

Udp.srcport==XXX  (TCP port filter for source)

Tcp.dstport==XXX(TCP port filter for destination)

Udp.dstport==XXX(UDP port filter for destination)

No comments:

Post a Comment

REST API

  API  is an application programming interface. It is a set of rules that allow programs to talk to each other. The developer creates the AP...