[SOLVED] Connman - Avoiding conflicts with local DNS server 25 April 2021, 10:44:44 Hello guys. Can you tell me in what file do I put the "--nodnsproxy" command for connman to avoiding conflicts with local DNS server. I'm using Artix Xfce4 with runit.Thanks in advance. Last Edit: 27 June 2021, 00:02:37 by nous
Re: Connman - Avoiding conflicts with local DNS server Reply #1 – 25 April 2021, 12:34:39 I would guess to the system service file. (Truly just a thought since I am not using conman)
Re: Connman - Avoiding conflicts with local DNS server Reply #2 – 25 April 2021, 13:48:19 Code: [Select]The run file is: #!/bin/sh[ -r conf ] && . ./confexec connmand -n ${OPTS}Where is that OPTS.Thanks
Re: Connman - Avoiding conflicts with local DNS server Reply #3 – 25 April 2021, 15:11:21 create file /etc/runit/sv/connmand/conf with contents:OPTS="--nodnsproxy"
Re: Connman - Avoiding conflicts with local DNS server Reply #4 – 25 April 2021, 15:50:16 Also check the man pages for resolvconf and resolvconf.conf because I think you could probably achieve the same thing using that, and that would work with any network manager or dhcp app if you installed something else in future. 1 Likes
Re: Connman - Avoiding conflicts with local DNS server Reply #5 – 25 April 2021, 16:14:42 Quote from: Artist – on 25 April 2021, 15:11:21create file /etc/runit/sv/connmand/conf with contents:OPTS="--nodnsproxy"Thank you very much. That did it.
Re: Connman - Avoiding conflicts with local DNS server Reply #6 – 25 April 2021, 18:09:29 Quote from: ####### – on 25 April 2021, 15:50:16Also check the man pages for resolvconf and resolvconf.conf because I think you could probably achieve the same thing using that, and that would work with any network manager or dhcp app if you installed something else in future.Adding to that list:Code: [Select]man bashman grep
Re: Connman - Avoiding conflicts with local DNS server Reply #7 – 25 June 2021, 08:33:19 Quote from: Artist – on 25 April 2021, 15:11:21create file /etc/runit/sv/connmand/conf with contents:OPTS="--nodnsproxy"how can i do the same for s6? tried adding Code: [Select]OPTS="--nodnsproxy"in /etc/s6/config/connman.conf, but no luck... i also tried adding '--nodnsproxy' in /etc/s6/sv/connmand-srv/run (& restart daemon), but still no luck, connman still uses :53. just starting to learn about s6, so i probably missed something while reading..