mesh-vpn-openvpn: gen x509
This commit is contained in:
parent
f6dd785db5
commit
796d545ed2
@ -1,2 +1,4 @@
|
|||||||
need_number({'mesh_vpn', 'openvpn', 'mtu'})
|
need_number({'mesh_vpn', 'openvpn', 'mtu'})
|
||||||
|
need_boolean({'mesh_vpn', 'openvpn', 'self_signed'}, false)
|
||||||
|
need_string({'mesh_vpn', 'openvpn', 'ca'})
|
||||||
need_table({'mesh_vpn', 'openvpn', 'config'})
|
need_table({'mesh_vpn', 'openvpn', 'config'})
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
local site = require 'gluon.site'
|
local site = require 'gluon.site'
|
||||||
local util = require 'gluon.util'
|
local util = require 'gluon.util'
|
||||||
local vpn_core = require 'gluon.mesh-vpn'
|
local vpn_core = require 'gluon.mesh-vpn'
|
||||||
|
local sysconfig = require 'gluon.sysconfig'
|
||||||
|
local ssl = require 'openssl'
|
||||||
|
|
||||||
local uci = require('simple-uci').cursor()
|
local uci = require('simple-uci').cursor()
|
||||||
|
|
||||||
@ -29,11 +31,36 @@ end
|
|||||||
|
|
||||||
-- if mesh_vpn is on but we have no key, even tho we need one then we can't proceed
|
-- if mesh_vpn is on but we have no key, even tho we need one then we can't proceed
|
||||||
if vpn.key ~= nil and not file_exists(vpn.key) then
|
if vpn.key ~= nil and not file_exists(vpn.key) then
|
||||||
|
if site.mesh_vpn.openvpn.self_signed(true) then
|
||||||
|
local key = ssl.pkey:new()
|
||||||
|
|
||||||
|
local cert = ssl.x509:new()
|
||||||
|
cert:notbefore(os.time())
|
||||||
|
cert:notafter(os.time() + 10 * 365 * 24 * 60)
|
||||||
|
cert:subject(ssl.x509.name.new{
|
||||||
|
{ C = 'CN'},
|
||||||
|
{ O = 'gluon' },
|
||||||
|
{ CN = sysconfig.primary_mac }
|
||||||
|
})
|
||||||
|
cert:sign(key:export())
|
||||||
|
|
||||||
|
local certf = io.open(vpn.cert, 'w+')
|
||||||
|
certf:write(cert:export())
|
||||||
|
certf:close()
|
||||||
|
|
||||||
|
local keyf = io.open(vpn.key, 'w+')
|
||||||
|
keyf:write(key:export())
|
||||||
|
keyf:close()
|
||||||
|
else
|
||||||
vpn.enabled = false
|
vpn.enabled = false
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- NOTE: ip is set by static-ip
|
if vpn.ca ~= nil and not file_exists(vpn.ca) then
|
||||||
-- TODO: maybe better integration? currently we still listen to openvpn push
|
local caf = io.open(vpn.ca, 'w+')
|
||||||
|
caf:write(site.mesh_vpn.openvpn.ca())
|
||||||
|
caf:close()
|
||||||
|
end
|
||||||
|
|
||||||
uci:delete('openvpn', 'mesh_vpn')
|
uci:delete('openvpn', 'mesh_vpn')
|
||||||
if vpn.enabled then
|
if vpn.enabled then
|
||||||
|
Loading…
Reference in New Issue
Block a user