-
-
Notifications
You must be signed in to change notification settings - Fork 311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't force bind DNS to IPv6, if it's disabled #1335
Comments
Greetings and welcome to our community! As this is the first issue you opened here, we wanted to share some useful infos with you:
|
Hey @rwjack, thank you for raising this issue with us. After a first review we noticed that we will require the Debug Info for further investigation. However, you haven't supplied any Debug Info in your report. Please collect Debug Info from Portmaster while the reported issue is present. |
You did not provide a lot of info here, but the most probable cause is that you haven't fully disabled IPv6. Please disable IPv6 globally and/or on all network adapters. Then, restart Portmaster. |
I can't believe I forgot to check if IPv6 was enabled before I opened this ticket. Previously I had disabled it using this playbook: ---
- name: Disable ipv6 on Debian hosts
hosts: all
tasks:
- name: Disable ipv6 now
shell:
cmd: >
sysctl -w net.ipv6.conf.all.disable_ipv6=1 &&
sysctl -w net.ipv6.conf.default.disable_ipv6=1 &&
sysctl -w net.ipv6.conf.lo.disable_ipv6=1
- name: Modify /etc/sysctl.conf
blockinfile:
path: /etc/sysctl.conf
block: |
net.ipv6.conf.all.disable_ipv6=1
net.ipv6.conf.default.disable_ipv6=1
net.ipv6.conf.lo.disable_ipv6=1 Although it must have re-enabled itself after an update or something... Ran the playbook again, restarted portmaster, no warning now. |
What happened:
What did you expect to happen?:
Portmaster to have a switch not to use IPv6, because it probably can't read my mind, that I'm the one that disabled IPv6.
How did you reproduce it?:
I disabled IPv6 on my Desktop's network interface.
The text was updated successfully, but these errors were encountered: