diff options
author | tv <tv@krebsco.de> | 2020-06-03 00:46:03 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-06-03 00:46:03 +0200 |
commit | 55a0cd397b80c9d899dfccfb132e6c0940b82904 (patch) | |
tree | c1301d0abee9c310ead8dc1c880ff4504f6d122d /tv/3modules | |
parent | 73da1e209e56ff0a3525e6e74a56db0c1c6b85f4 (diff) |
tv dnsmasq: listen only on configured interfaces
Diffstat (limited to 'tv/3modules')
-rw-r--r-- | tv/3modules/dnsmasq.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tv/3modules/dnsmasq.nix b/tv/3modules/dnsmasq.nix index ec927f9..ab24ac0 100644 --- a/tv/3modules/dnsmasq.nix +++ b/tv/3modules/dnsmasq.nix @@ -31,8 +31,9 @@ in { }; services.dnsmasq.enable = true; services.dnsmasq.extraConfig = '' + bind-interfaces dhcp-range=${cfg.dhcp-range} - interface=${cfg.interface} + listen-address=${cfg.address} ''; tv.iptables.extra.filter.INPUT = [ "-i ${cfg.interface} -p tcp -m tcp --dport bootps -j ACCEPT" |