From 04c9995d3a8bd2204b901d025e19972ded00bae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20L=C3=B6per?= Date: Tue, 3 Sep 2019 18:59:32 +0200 Subject: [PATCH] Force the captive portal option --- iotwifi/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iotwifi/commands.go b/iotwifi/commands.go index 0fcb4c6..d323c28 100644 --- a/iotwifi/commands.go +++ b/iotwifi/commands.go @@ -74,7 +74,7 @@ func (c *Command) StartDnsmasq() { "--dhcp-vendorclass=" + c.SetupCfg.DnsmasqCfg.VendorClass, "--dhcp-authoritative", "--log-facility=-", - "--dhcp-option=160,192.168.0.111", // see: https://tools.ietf.org/html/rfc7710 + "--dhcp-option-force=160,192.168.0.111", // see: https://tools.ietf.org/html/rfc7710 } cmd := exec.Command("dnsmasq", args...)