Reputation: 31
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
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