initial commit for docker dnsmasq and tailscale

This commit is contained in:
2025-03-27 22:30:52 -07:00
parent 0ff5b8a867
commit 3ddacad42a
5 changed files with 81 additions and 0 deletions

27
dnsmasq.conf Normal file
View File

@@ -0,0 +1,27 @@
# Don't use /etc/hosts or /etc/resolv.conf
no-hosts
no-resolv
# Listen on all interfaces
#interface=*
interface=eth0
interface=tailscale0
# Resolve *.local to 192.168.1.16
address=/.local/192.168.1.16
# Forward other queries to 192.168.1.1
server=192.168.1.1
# Log queries
log-queries
log-facility=-
# Don't use /etc/hosts
no-hosts
# Don't act as a DHCP server
no-dhcp-interface=
# Bind to all interfaces
bind-interfaces