Enable only selected cameras? #1362
Replies: 1 comment
-
NET_MODE is kind of broken on the newer firmware as wyze seems to be using a newer version of the TUTK SDK which breaks the NAT punching and P2P/Relay connection modes. As a result, we're only able to connect to the cameras using the "LAN" connection mode. In other words, if you can ping the camera from the bridge, you can connect to it with "LAN" mode. And yes, I believe the 2024 firmware also introduced some kind of connection limit for each resolution, so you can have 1 active connection to each resolution (one to the "HD/2k" and one to the "360p") and the camera will just kick off the other connection. Will look into adding additional filtering options, but you could potentially filter by Mac address with something like this to only allow certain cameras: - FILTER_MACS=00:aA:22:33:44:55, Aa22334455bB or add |
Beta Was this translation helpful? Give feedback.
-
I have two locations, my house and my parents' house, each with multiple Wyze cameras and a Blue Iris box running docker-wyze-bridge. All the Wyze cameras are under one account, which I manage.
Is there a way to restrict each container to see and attempt logins only selected cameras? e.g. only the cameras in the same physical location? There i is no need for the container at my place to see the cameras at my parents' place, nor vice versa.
I tried setting:
in my
C:\Docker\WyzeBridge\docker-compose.yml
but when I restart the container (even restarted the whole PC!) I do not see that string when Inspect the container, and both containers are still seeing the cameras at the other location.
I also have a persistent S2S IPSec tunnel between our two houses, for various reasons, so I'm not even sure if NET_MODE=LAN would somehow work through that. The documentation just says "LAN", but doesn't specify if this means "same subnet" or ???
I have a theory that the Wyze cameras get unhappy when too many clients log into them, so I'm trying to restrict that to just the one wyze-bridge that is local to it, plus my very occasional login from the Wyze app to restart them as necessary 🤦🏻♂️
I also don't want 18 different cameras showing up in at localhost:5000 when I'm troubleshooting; I just want to see the cameras that are physical local to this container.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions