Configurable listening address #515
nvpavatar
started this conversation in
Feature requests and ideas
Replies: 1 comment 1 reply
-
|
Hey @nvpavatar! This is a really interesting usecase, are you encountering any difficulties with the setup? Did you manually copy and install the generated CA certificate on other devices?
I think we could support this without much trouble, perhaps as a non-GUI option in the JSON configuration file for now. Let me think about it just a bit more. cc @spellcascade you might find this interesting |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Right now Zen only listen on 127.255.255.255 network. I am using Zen to filter traffic from iPhone and other devices, so I had to make following change:
"-" listener, err := net.Listen("tcp", fmt.Sprintf("%s:%d", "127.0.0.1", p.port))
"+" listener, err := net.Listen("tcp", fmt.Sprintf(":%d", p.port))
Could it be a good idea to make Zen listening address configurable? With this feature Zen can be used to filter ads on any remote device
Beta Was this translation helpful? Give feedback.
All reactions