Skip to content

Commit

Permalink
fix(gluetun): fully disable DOT
Browse files Browse the repository at this point in the history
It is not reliable? See qdm12/gluetun#2533 maybe.
  • Loading branch information
jfroy committed Nov 8, 2024
1 parent 8ac1b0e commit 9b8b158
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions kubernetes/apps/default/qbittorrent/app/helmrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ spec:
BLOCK_MALICIOUS: off # save 300MB of RAM; https://github.com/qdm12/gluetun/issues/2054
DOT: off
DOT_CACHING: off
DOT_IPV6: off
FIREWALL_DEBUG: on
FIREWALL_INPUT_PORTS: "80,9999"
HEALTH_SERVER_ADDRESS: ":9999"
Expand Down
4 changes: 3 additions & 1 deletion kubernetes/apps/default/sabnzbd/app/helmrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ spec:
tag: v3.39.1-jfroy.4@sha256:236f04803c9c52efd1431a6bc9103c07bd454009b97582e0b9f22d9c130e1ee2
env:
BLOCK_MALICIOUS: off # save 300MB of RAM; https://github.com/qdm12/gluetun/issues/2054
DOT_IPV6: on
DOT: off
DOT_CACHING: off
DOT_IPV6: off
FIREWALL_DEBUG: on
FIREWALL_INPUT_PORTS: "80,9999"
HEALTH_SERVER_ADDRESS: ":9999"
Expand Down

2 comments on commit 9b8b158

@qdm12
Copy link

@qdm12 qdm12 commented on 9b8b158 Nov 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it still unreliable on the latest image? What errors do you get? It seems lowering the MTU fixed it for everyone on the issue you referenced. I'm also working on qdm12/gluetun#2586 to have the highest MTU possible, which I literally spent 5 full days working on πŸ˜„ But if you get another issue with the DNS forwarding code, please let me know πŸ˜‰ !

@jfroy
Copy link
Owner Author

@jfroy jfroy commented on 9b8b158 Nov 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it still unreliable on the latest image? What errors do you get? It seems lowering the MTU fixed it for everyone on the issue you referenced. I'm also working on qdm12/gluetun#2586 to have the highest MTU possible, which I literally spent 5 full days working on πŸ˜„ But if you get another issue with the DNS forwarding code, please let me know πŸ˜‰ !

It tried upstream the day I tested this (I uploaded PRs for a few other issues I found). There may be other code or configuration issues that I need to look into for DOT. I set WIREGUARD_MTU=1320.

Please sign in to comment.