olsr12: use gluon_mesh

This commit is contained in:
Maciej Krüger 2022-05-20 16:06:59 +02:00 committed by Alexander List
parent cf6e3ae1b3
commit 7dee16b8ee

View File

@ -12,15 +12,14 @@ uci:delete('openvpn', 'olsr12_vpn')
-- NOTE: we need to place olsr12 files in a persistent directory, -- NOTE: we need to place olsr12 files in a persistent directory,
-- since reconfigure only happens on upgrades -- since reconfigure only happens on upgrades
-- Since it happens on upgrades tho, we do not need to store it -- But since it happens on upgrades, we do not need to store it
-- in a permanent directory like /etc/openvpn -- in a permanent directory like /etc/openvpn
if site.mesh.olsrd.olsr12.enable() then if site.mesh.olsrd.olsr12.enable(false) then
-- TODO: gluon_wired once added in mesh-olsrd -- TODO: gluon_wired once added in mesh-olsrd
uci:section('network', 'interface', 'olsr12', { uci:section('network', 'interface', 'olsr12', {
ifname = 'olsr12', ifname = 'olsr12',
proto = 'tap', proto = 'gluon_mesh',
zone = 'mesh',
}) })
local cred = io.open('/etc/olsr12.auth', 'w') local cred = io.open('/etc/olsr12.auth', 'w')
@ -58,15 +57,8 @@ if site.mesh.olsrd.olsr12.enable() then
bindto = uci:get_list('olsrd2', 'wired_mesh', 'bindto'), bindto = uci:get_list('olsrd2', 'wired_mesh', 'bindto'),
-- TODO: link quality -- TODO: link quality
}) })
local intfs = uci:get_list('firewall', 'mesh', 'network')
table.insert(intfs, 'olsr12')
uci:set_list('firewall', 'mesh', 'network', intfs)
end end
uci:save('olsrd2') uci:save('olsrd2')
uci:save('firewall')
uci:save('network') uci:save('network')
uci:save('openvpn') uci:save('openvpn')