Hello, I’m trying to read an UDP datagram from device that publishes on a multicast group (IP 239.12.255.254 and port 9522). I’m using UDP_SOCKET & UDP_RECEIVE but I couldn’t read. I tried some tests by changing UDP_SOCKET function block configuration: 1) BIND_IP: 239.12.255.254 / BIND_PORT: 9522 status response: 0xC205 | Only one use of an address is normally permitted.
—|—
2) BIND_IP: 0.0.0.0 / BIND_PORT: 9522 status response: 0xC205 Only one use of an address is normally permitted.
3) BIND_IP: 10.110.50.194 (Fixed device ip. Same range as PLC) / BIND_PORT: 9522 status response: 0xC206 The selected IP address is not valid in this context.
4) BIND_IP: 10.110.50.197 (Fixed PLC ip) / BIND_PORT: 9522 status response: 0xC205 Only one use of an address is normally permitted. Any help? Is this kind of communication possible? Thanks!