Hey @Knut99
No need to apologize mate, we are always here to help each other, so you came to the right place. I agree with Phoneboy, probably if you do basic capture, it would help us.
So, I will give you some examples.
Say client IP is 10.10.10.10, you can run this from expert ->
tvpdump -enni any host 10.10.10.10 and port 443 (assuming thats the port)
You can also do fw monitor as well, like below
fw monitor -e "accept host(10.10.10.10) and port(443);"
Now, say src behind the fw is 192.168.2.2 trying to reach the client, you can do this:
fw monitor -F "192.168.2.2,0,10.10.10.10,443,0" -F "10.10.10.10,0,192.168.2.2,443,)
Idea is this "srcip,srcport,dstip,dstport,protocol"
So really what matters is dst port, src port does not matter, protocol can be any (or 0 that is)
Btw, you can also refer to this site, super useful, that my colleague made ages ago.
Best,
Andy
https://tcpdump101.com/#