How to check UDP port example = 31011?

We have open port UDP port 31011, how to verify if port were working or traffic were receive.

What UNIX are you on?

As a general answer:

netstat -a | grep 31011

The status is the right most column - e.g., ESTABLISHED

if you have lsof, try this:

lsof -i:31011