IP protocol does not define something like a port. Two protocols over IP have TCP and UDP ports.
If you want to display only TCP connection packets sent from port 80 on one side and on port 80 on the other, you can use this display filter:
tcp.srcport==80 && tcp.dstport==80
Similarly, you can define a filter for UDP communications. You can narrow the filter with additional conditions, for example
ip.srcaddr==1.2.3.4
or
ip.addr==55.66.77.88
You can even use C && and || style statements as well as parentheses to create sophisticated filters.
(ip.addr==128.100.1.1 && tcp.port==80) || (ip.addr==10.1.2.1 && udp.port==68)
What you really want to filter is your decision.
harper
source share