Skip to content
Snippets Groups Projects
300-gluon-client-bridge-network 1.71 KiB
Newer Older
#!/usr/bin/lua

local sysconfig = require 'gluon.sysconfig'
local interfaces = uci:get('network', 'client', 'ifname') or {}
if type(interfaces) == 'string' then
	local ifname = interfaces
	interfaces = {}
if sysconfig.lan_ifname and uci:get_bool('network', 'mesh_lan', 'disabled') then
	for lanif in sysconfig.lan_ifname:gmatch('%S+') do
uci:delete('network', 'client')
uci:section('network', 'interface', 'client', {
	type = 'bridge',
	ifname = interfaces,
	proto = 'none',
	auto = true,
	ipv6 = false,
	macaddr = sysconfig.primary_mac,
	igmp_snooping = true,
	multicast_querier = true,
-- TODO: remove this line and the next in 2019. Firewall zones have been renamed in 2017.
uci:delete('firewall', 'client')

uci:section('firewall', 'zone', 'drop', {
	name = 'drop',
	network = {'client'},
	input = 'DROP',
	output = 'DROP',
	forward = 'DROP',
})

local networks = uci:get_list('firewall', 'local_client', 'network')
util.add_to_set(networks, 'local_node')
uci:set_list('firewall', 'local_client', 'network', networks)
local dnsmasq = uci:get_first('dhcp', 'dnsmasq')
uci:set('dhcp', dnsmasq, 'boguspriv', false)
uci:set('dhcp', dnsmasq, 'localise_queries', false)
uci:set('dhcp', dnsmasq, 'rebind_protection', false)
-- TODO: remove this line and the next two in 2019 the zones were removed in 2017
uci:delete('firewall', 'local_node')

uci:delete('dhcp', 'local_client')