-
-
Notifications
You must be signed in to change notification settings - Fork 9
Description
Hello!
Thank you for your work. I'm trying to use your project to connect a new accessory (generated by my HomeBridge) to HomeKit from outside my network. This will be a one time thing. I have mdns-tunneller
installed and running as a server on a Raspberry Pi on my home network (where the accessories are and where the HomeBridge is installed). Since I only need to connect one accessory I'm not looking into anything permanent so I figured I'd just run mdns-tunneller
as a client on my MacBook just until the setup is complete. I can see the client and server connecting:
$ docker run -v ~/docker/appdata/mdns-tunneler/config.yml:/app/config/local.yml -p 42069:42069 toxuin/mdns-tunneller
> mdns-tunneller@1.0.0 start:prod
> node .build/index.js
Connecting to http://x.x.x.x:42069...
Connected to the remote: http://x.x.x.x:42069
pi@raspberrypi:~ $ docker run -v ~/docker/appdata/mdns-tunneler/config.yml:/app/config/local.yml -p 42069:42069 toxuin/mdns-tunneller
> mdns-tunneller@1.0.0 start:prod
> node .build/index.js
Started server on 0.0.0.0:42069
Client connected: ::ffff:x.x.x.x:30800
I'm not sure where to go from here though. I'm trying to add an accessory from my iPhone as the Mac Home app can't add them but it doesn't seem to work as is. Both devices (iPhone and Mac) are on the same network. Is there anything else I'm supposed to do? The configuration I'm using is the default one (https://raw.githubusercontent.com/toxuin/mdns-tunneller/master/config/default.yml).
Thanks!