PINK for 2 IP addresses simultaneously
Hi all,
I am new at this forum, but I have been using the Javelin and specially the PINK for a while and I need a little help...
I have a system that uses a PINK (Parallax Internet Netburner Kit) as serial-to-Ethernet interface. Right now, I am sending UDP messages with the most relevant info to a Windows Service. But, I need to send the information from my circuit to 2 different IP addresses SIMULTANEOUSLY (no matter the protocol). Can I do that with my PINK?
HOW?
Thanks for your support
I am new at this forum, but I have been using the Javelin and specially the PINK for a while and I need a little help...
I have a system that uses a PINK (Parallax Internet Netburner Kit) as serial-to-Ethernet interface. Right now, I am sending UDP messages with the most relevant info to a Windows Service. But, I need to send the information from my circuit to 2 different IP addresses SIMULTANEOUSLY (no matter the protocol). Can I do that with my PINK?
HOW?
Thanks for your support
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Tech Support
Note: they want it simultaneously in order to implement redundancy...
If you really want redundancy, then broadcast the packets a few times. UDP is a stateless protocol so it cannot be guaranteed that your packet will make it to the remote host.
You can download a network protocol analyzer (such as Wireshark) to look at packets if you want to understand why 'simultaneous' is impossible. NICs can only send one packet at a time. You can technically send them so fast that it appears that it is simultaneous, but that is a bit much to ask from an embedded device.
Thank you all for your help.