mesh-vpn: set correct device
This commit is contained in:
parent
703a51b3b9
commit
e63dc9b644
@ -11,21 +11,18 @@ local enabled
|
|||||||
|
|
||||||
local file = '/etc/openvpn/mesh_vpn.ovpn'
|
local file = '/etc/openvpn/mesh_vpn.ovpn'
|
||||||
|
|
||||||
-- TODO: support for directly specifying options in site conf
|
-- TODO: support for directly specifying options in site conf??
|
||||||
|
|
||||||
fd = io.open(file, 'w')
|
fd = io.open(file, 'w')
|
||||||
fd:write(site.mesh_vpn.openvpn.config())
|
fd:write(site.mesh_vpn.openvpn.config())
|
||||||
|
fd:write("\ndev " .. vpn_core.get_interface())
|
||||||
fd:close()
|
fd:close()
|
||||||
|
|
||||||
|
-- NOTE: ip is set by static-ip
|
||||||
|
|
||||||
uci:section('openvpn', 'mesh_vpn', {
|
uci:section('openvpn', 'mesh_vpn', {
|
||||||
enabled = enabled,
|
enabled = enabled,
|
||||||
config = file,
|
config = file,
|
||||||
-- uuid = util.node_id(),
|
|
||||||
-- interface = vpn_core.get_interface(),
|
|
||||||
-- bind_interface = 'br-wan',
|
|
||||||
-- group = 'gluon-mesh-vpn',
|
|
||||||
-- broker_selection = 'usage',
|
|
||||||
-- address = site.mesh_vpn.openvpn.brokers(),
|
|
||||||
})
|
})
|
||||||
|
|
||||||
uci:save('openvpn')
|
uci:save('openvpn')
|
||||||
|
Loading…
Reference in New Issue
Block a user