Skip to content

Commit

Permalink
Update /etc/config/dhcp
Browse files Browse the repository at this point in the history
After fighting with this some on my home setup I realized the servers
list is not specifying what servers to suggest to the client but instead
what servers dnsmasq itself is using. The self-referential nature of
this configuration error means it takes an inordinate amount of time for
things to 'start working'.
  • Loading branch information
jkilpatr committed Oct 12, 2024
1 parent 76f6366 commit 8c96087
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion firmware-root/etc/config/dhcp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ config dnsmasq
option nonwildcard '1'
option localservice '1'
option cachesize '1000'
list server '192.168.10.1'
list server '172.168.0.254'
list server '1.1.1.1'
list server '8.8.8.8'
list server '2606:4700:4700::1111'
list server '2001:4860:4860::8888'

Expand Down

0 comments on commit 8c96087

Please sign in to comment.