I have two home networks. 192.168.0.0/24 and 192.168.2.0/24; my Plex server is on the former indirectly via docker.
Any clients on 192.168.2.0/24 are automatically throttled to 2 Mbps, clients on 192.168.0.0/24 are not throttled. In the Plex server configuration, under network settings, and “LAN Networks”, I specifically have listed: “192.168.0.0/24,192.168.2.0/24” (w/o quotes). Which should prevent clients on 192.168.2.0/24 from being throttled, but this is not the case.
The server is running as a docker container, and the interesting networking that docker uses may be part of the issue. The docker network is 172.20.0.0/24.
I have restarted, rebooted Plex. Tried restarting the clients. But no luck. I assume I’m missing something else.
Anyone know what I may be doing wrong and where to look?
I’m not sure I understand. The docker is bridged to the local network, otherwise I wouldn’t be able to reach it from anything but the docker host. Perhaps I’m missing your meaning here.
Sorry I misunderstood what you were asking. That setting It prevents those clients from being throttled by server if you have bandwidth limits set on server, but it does not change what the client can request. The server can’t force a client to request a higher quality from the server.
As I mentioned I have 172.20.0.0/24, 192.168.0.0/24 and 192.168.2.0/24 defined as local networks. The docker running PMS is bridged from a 172.20.0.0/24 address to a 192.168.0.0/24 address. Clients on the 192.168.0.0/24 network are not throttled, clients on the 192.168.2.0/24 network are throttled. No other difference than the subnet (I’ve moved the clients back and forth on the network).
Changing my docker container to use the host network instead of bridging (the recommendation) appears to resolve the issue as far as the throttling goes; it behaves as you’d expect, both 192.168.0.0/24 and 192.168.2.0/24 are not throttled.
This leaves me with some other network challenges regarding the other docker containers on the 172,20.0.0/24 subnet reaching the PMS. But I’m fairly sure I can work through those.
Although it’d be nice if the network bridging didn’t confuse PMS a bit in this situation, the recommendation appears to be the correct and acceptable solution.