subspacecommunity/subspace

dnsmasq.conf needs some updating

kristenungdom opened this issue · 4 comments

The current dnsmasq.conf binds to all interfaces even though it should not. I propeose to add to lines to the config

The current config says:

listen-address=127.0.0.1,10.99.97.1,fd00::10:97:1

Please add:
interface=lo,wg0
bind-interfaces

To complete tone config as it will otherwise bind to all regardless.

Thanks for suggesting this, manually editing the container with these changes has appeared to fix my issue in #141. Im still testing and monitoring, but users are reporting a much better experience!

Spoke too soon, issue remains

Hi all, @IndevinDCW I've faced with it too, and I've found how to fix it. My problem was related to DHCP on VM, my local /etc/resolv.conf file always updated by DHCP server (Mikrotik). I've set up

  1. DNS and IP manually, disabled DHCP ( /etc/netplan/00-installer-config.yaml and apply config sudo netplan apply )
  2. Set up DNS in /etc/resolv.conf
  3. Removed from file /etc/dhcp/dhclient.conf word domain-name-servers
  4. Rebooted server

@IndevinDCW Did you figure out how to solve this issue?