Steps to send UDP traffic between between linux machines Install nc tool On Centos, using command yum install nc -y Run the command on server, nc -u -l 9999 On the client server, nc -u <server_ipaddress> 9999 Send send traffic. Check the connection using command netstat | grep 9999