This linux command line to check UDP connection on Linux using Conntrack command.
# conntrack -L -p udp
If you want to exclude localhost, you can using grep
# conntrack -L -p udp | grep -v "127.0.0.1"
Talk about server and programming
This linux command line to check UDP connection on Linux using Conntrack command.
# conntrack -L -p udp
If you want to exclude localhost, you can using grep
# conntrack -L -p udp | grep -v "127.0.0.1"