42763d21dc
This is currently only implemented in the gluon-mesh-vpn-fastd package. Advertising the public key may be deemed problematic when your threat-model involves protecting the nodes privacy from tunnel traffic correlation by onlink observers. It can be enabled by setting site.mesh_vpn.fastd.pubkey_privacy to `false`.
8 lines
365 B
Lua
8 lines
365 B
Lua
need_boolean(in_site({'mesh_vpn', 'enabled'}), false)
|
|
need_number({'mesh_vpn', 'mtu'})
|
|
need_boolean(in_site({'mesh_vpn', 'pubkey_privacy'}), false)
|
|
|
|
need_boolean(in_site({'mesh_vpn', 'bandwidth_limit', 'enabled'}), false)
|
|
need_number(in_site({'mesh_vpn', 'bandwidth_limit', 'ingress'}), false)
|
|
need_number(in_site({'mesh_vpn', 'bandwidth_limit', 'egress'}), false)
|