Multiple UDP connections with NCAT server NOT running
Hi All,
I have a query regarding ncat.
I have a situation wherein i have a ncat server listening for multiple udp connections. The server is supposed to receive UDP packets from a ncat client. The problem however is that the server is successfully receiving the UDP packets from first udp client but when i execute the second client it is not able to get connected to the server. Server gives an error like Connection Refused.
Is there any issue with the session between the first client and the server.
Server and Client running on the same host
ncat server
System# ncat -ulk 1234 --recv-only < /dev/null
ncat client
System# dd if=/dev/urandom bs=1024K count=10 | ncat -u localhost 1234 --send-only
In case of tcp all things are working fine (Both parallel and multiple connections)
Thanks in advance
|