Link to home
Start Free TrialLog in
Avatar of Mark Olivier
Mark OlivierFlag for United States of America

asked on

Need to make a device discoverable on a network other than the one it gets its IP address from.

Our Airtame wireless HDMI application searches for available Airtame devices on the network and shows them on the opening screen. We have multiple HDMI devices in the same building but on a different network. These devices can be accessed from the default network by typing in the IP address in the Airtame app. My question is: - Is there a way to use DNS or some other method to make these devices automatically discoverable as if they were on the same network?
Avatar of noci
noci

Your problem is the same as with DHCP. Broadcasts are limited to the broadcast domain.
You will need some kind or "forwarder" / "helper"  that can listen for some protocol and pass those request on to other networks etc.
(There is no generic  solution for this, reasonably hard to do well, and one does need to know the in / outs of the discovery  protocol).

Another option:    use DNS to provide a name schema for devices....
Use a two level schema:    
actual_device_name IN A ipaddress.of.some.device
location_id IN CNAME actual_device_name.

Location ID is room number, or some other identification visible on the equipment. (and can be multiple different name schemas at the same time).
The actual_device_name can be the  something that is a sticker on the device and tied to the equipment (even if equipment is carried around the premises).
The actual device name can be base on the MAC address if you like.

If devices get their address using DHCP then using DHCP reservations can make your equipment semi-static.
with stable IP address that can be reached through DNS.
ASKER CERTIFIED SOLUTION
Avatar of Gary Patterson, CISSP
Gary Patterson, CISSP
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mark Olivier

ASKER

noci, your suggestions were very helpful, and I was ready to implement them until Gary Patterson pointed out that Airtame has documents and specific instructions for doing this. I had already spoken with tech support without finding a solution, but in actuality the question I asked of them was a bit different so I can't fault them.

Gary Patterson - thank you for the excellent documents you pointed out. We will be implementing these some time next week and I'll post back how it works out.