I have simple UDP client and server from https://pymotw.com/2/socket/udp.html. Message can be succesfully sent and received when I run python code inside Azure VM.
My goal is to install UDP client to my workstation and then server to Azure VM.
I have opened Azure VM firewall outbound for port 1001 with UDP protocol. I have opend UDP port from local workstation firewall.
Then I have run client sending UDP message to IP and port 1001. UDP server is set to listen message on localhost and port 1001.
However I do not get UDP message through. Ping and psping to Azure VM IP fails too.
How to open connection? Any tips?
Kenny_I