Replies: 1 comment
-
I wouldn't put Scrypted on your router or give it direct WAN access. Lots more ports are opened besides this one. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
At the moment the scrypted node server will perform a
listen()
with no address specified:scrypted/server/src/scrypted-server-main.ts
Line 45 in 6d520dc
On a multi network system this will listen on all interfaces. When hosting on OpenWRT or similar style routers, this will have the unexpected effect of opening HTTP ports on the WAN port as we are using the host network when launching the docker container.
It could be a simple change to use the user provided list of interfaces from
scrypted.addressSettings.getLocalAddresses()
instead to restrict the server listen to the LAN interface, which seems desirable.Beta Was this translation helpful? Give feedback.
All reactions