I've done with UDP Client using port 12287 with the ip table set to 255.255.255.255 When I last did this on a PRO2 with a Dual Nic, with the address set to 255.255.255.255, it will be interpreted as "this network". When using a C2ENET-2 card, "this network" will be on the LAN-A connection. If you need to force to the LAN-B connection, then you will need to calculate the limited broadcast address and use that instead. How to calculate the subnet-directed broadcast address 1) Convert machine address to binary e.g. 10.208.20.1 = 00001010.11010000.00010100.00000001 2) Convert the Subnet Mask to Binary e.g. 255.255.240.0 = 11111111.11111111.11110000.00000000 3) Invert the Binary Subnet Mask e.g. 11111111.11111111.11110000.00000000? ? ?becomes 00000000.00000000.00001111.11111111 4) OR the machine address and the inverted subnet mask e.g. 00001010.11010000.00010100.00000001? ? ?Or 00000000.00000000.00001111.11111111 = 00001010.11010000.00011111.11111111 = 10.208.31.255 On Fri, Feb 5, 2016 at 9:12 AM, Eric Walters sentry07@... [Crestron] <Crestron@...> wrote:
|