diff options
author | Jan Pavlinec <jan.pavlinec@nic.cz> | 2020-11-09 15:58:39 +0100 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2020-11-09 20:44:46 +0100 |
commit | a86c0d97b5d74912ddfff1f1de8f01f519ee4cd1 (patch) | |
tree | ff0aaa3e4566c9c510e318fe4301bd1d9306e702 /package/network/services/dnsmasq | |
parent | 9eb9943f82e0b2d5e32ffe1c63f5a82caca5094d (diff) | |
download | upstream-a86c0d97b5d74912ddfff1f1de8f01f519ee4cd1.tar.gz upstream-a86c0d97b5d74912ddfff1f1de8f01f519ee4cd1.tar.bz2 upstream-a86c0d97b5d74912ddfff1f1de8f01f519ee4cd1.zip |
dnsmasq: explictly set ednspacket_max value
This is related to DNS Flag Day 2020. It sets default
ends buffer size value to 1232.
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
Diffstat (limited to 'package/network/services/dnsmasq')
-rw-r--r-- | package/network/services/dnsmasq/Makefile | 2 | ||||
-rw-r--r-- | package/network/services/dnsmasq/files/dhcp.conf | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package/network/services/dnsmasq/Makefile b/package/network/services/dnsmasq/Makefile index cbbbad7b87..4086aa25e0 100644 --- a/package/network/services/dnsmasq/Makefile +++ b/package/network/services/dnsmasq/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=dnsmasq PKG_UPSTREAM_VERSION:=2.82 PKG_VERSION:=$(subst test,~~test,$(subst rc,~rc,$(PKG_UPSTREAM_VERSION))) -PKG_RELEASE:=8 +PKG_RELEASE:=9 PKG_SOURCE:=$(PKG_NAME)-$(PKG_UPSTREAM_VERSION).tar.xz PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq diff --git a/package/network/services/dnsmasq/files/dhcp.conf b/package/network/services/dnsmasq/files/dhcp.conf index 19052e2333..8c42ef782e 100644 --- a/package/network/services/dnsmasq/files/dhcp.conf +++ b/package/network/services/dnsmasq/files/dhcp.conf @@ -20,6 +20,7 @@ config dnsmasq #list notinterface lo #list bogusnxdomain '64.94.110.11' option localservice 1 # disable to allow DNS requests from non-local subnets + option ednspacket_max 1232 config dhcp lan option interface lan |