Tulasi Kumar G M
Tulasi Kumar G M

Reputation: 31

How to filter only out going packets using wireshark

How to filer only outgoing packets with respect to some port number?

Example IP is A.B.C.D and port is 443. Then have to filter only outgoing packets from port 443, so how can I do?

Upvotes: 1

Views: 6811

Answers (1)

wxShayan
wxShayan

Reputation: 308

Suppose your IP address is A.B.C.D and you are going to filter out outgoing TCP packets which their source port is 443; In this case you can simply use the following filter:

ip.src == A.B.C.D && tcp.srcport==443

Upvotes: 3

Related Questions