mesh-olsr12-openvpn: init

This commit is contained in:
Maciej Krüger 2022-04-01 13:52:17 +02:00 committed by Alexander List
parent d6335865ea
commit 34373e92a5
4 changed files with 49 additions and 21 deletions

View File

@ -0,0 +1,13 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-mesh-olsr12-openvpn
PKG_VERSION=1
include ../gluon.mk
define Package/gluon-mesh-olsr12-openvpn
TITLE:=olsrd v1 to v2 migration fallback vpn
DEPENDS:= +gluon-mesh-olsrd +openvpn
endef
$(eval $(call BuildPackageGluon,gluon-mesh-olsr12-openvpn))

View File

@ -1,4 +1,5 @@
if need_boolean({'mesh', 'olsrd', 'olsr12', 'enable'}, false) then
need_number({'mesh', 'olsrd', 'olsr12', 'port'}, false)
need_string({'mesh', 'olsrd', 'olsr12', 'ca'})
need_string({'mesh', 'olsrd', 'olsr12', 'server'})
end

View File

@ -8,20 +8,46 @@ local sysconfig = require 'gluon.sysconfig'
local util = require 'gluon.util'
local olsrd = require 'gluon.olsrd'
uci:delete('openvpn', 'olsr12_vpn')
if site.mesh.olsrd.olsr12.enable() then
-- TODO: gluon_wired once added in mesh-olsrd
uci:section('network', 'interface', 'olsr12', {
proto = 'vxlan',
vid = 111,
port = site.mesh.olsrd.olsr12.port(598),
peeraddr = site.mesh.olsrd.olsr12.server(),
mtu = 1300,
ifname = 'olsr12',
proto = 'tap',
zone = 'mesh',
})
local cred = io.open('/tmp/olsr12', 'w')
cred:write(sysconfig.primary_mac .. '\n' .. sysconfig.primary_mac .. '\n')
cred:close()
local ca = io.open('/tmp/olsr12.ca', 'w')
ca:write(site.mesh.olsrd.olsr12.ca())
ca:close()
uci:section('openvpn', 'openvpn', 'olsr12_vpn', {
enabled = true,
client = true,
dev = 'olsr12',
dev_type = 'tap',
data_ciphers_fallback = 'none',
persist_key = true,
persist_tun = true,
ca = '/tmp/olsr12.ca',
verb = 3,
remote = {
site.mesh.olsrd.olsr12.server() .. " " .. site.mesh.olsrd.olsr12.port(1194)
},
auth_user_pass = '/tmp/olsr12',
})
uci:section('olsrd2', 'interface', 'olsr12_mesh', {
ifname = { 'olsr12' },
bindto = uci:get_list('olsrd2', 'wired_mesh', 'bindto'),
@ -38,3 +64,4 @@ end
uci:save('olsrd2')
uci:save('firewall')
uci:save('network')
uci:save('openvpn')

View File

@ -1,13 +0,0 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-mesh-olsr12-vxlan
PKG_VERSION=1
include ../gluon.mk
define Package/gluon-mesh-olsr12-vxlan
TITLE:=olsrd v1 to v2 migration fallback vpn
DEPENDS:= +gluon-mesh-olsrd +vxlan
endef
$(eval $(call BuildPackageGluon,gluon-mesh-olsr12-vxlan))