is it possible to create expression in tcpdump that would filter incoming packets with wildcard, something like this please?
tcpdump -i bond0 -c 200 -Z root udp port 514 and src server-*.com
This doesn't work ... I was only able to filter using exact name or IP:
tcpdump -i bond0 -c 200 -Z root udp port 514 and src server-oOo.domain.com
tcpdump -i bond0 -c 200 -Z root udp port 514 and src 10.20.32.100
Thank you!