Trouble setting up IPC KnownNetworks with Docker and Traefik #3534
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
Well you're definitely not loading the (Which on its own is ASF problem because it should gracefully error but otherwise continue to work, so I'll change this crash into an error, but that doesn't change the fact your IPC interface would not start at all, even if ASF did) So firstly evaluate why your config is not picked up, likely wrong location or stuff like that, and when ASF starts crashing then that'll be a sign it gets picked up, so that's when you fix it by removing invalid comment from it that you've added. |
Beta Was this translation helpful? Give feedback.
-
|
@rashedobaid I can't confirm what you're stating entirely. I started completely new instance of ASF on my LAN home server. As expected, I couldn't connect with it, because IPC is listening on localhost only initially. So I enabled access for all IPs (as per your config), then I could access ASF-ui there, but it complained about Then I added Most likely one of the following happens:
In second case, that's entirely intended, your web server properly informs ASF in As stated in the wiki, this mechanism is not something you should disregard, unless you entirely trust the networks you've specified. You're not in that network, you're accessing your machine remotely from external IP, the fact that your web server is within that network does not change that (as it executes requests on your behalf), which means the security mechanisms work as expected. If you want to shoot yourself in the foot, ASF allows doing that, but then don't complain one day somebody found your domain and stole your Steam accounts - this is why even though you configured everything properly, ASF still complains about |
Beta Was this translation helpful? Give feedback.

@rashedobaid I can't confirm what you're stating entirely.
I started completely new instance of ASF on my LAN home server. As expected, I couldn't connect with it, because IPC is listening on localhost only initially.
So I enabled access for all IPs (as per your config), then I could access ASF-ui there, but it complained about
IPCPasswordnot being set, once again, as expected, because that's additional security measure.Then I added
192.168.0.0/16(which is my LAN network) toKnownNetworks, restarted the instance and once again, as expected, I can now access whole ASF-ui withoutIPCPasswordset, it doesn't complain about anything anymore. This confirms the whole mechanism in ASF regardi…