Add setting to disable NAT for a given destination IP set

This commit is contained in:
Timotej Lazar 2024-09-16 16:24:09 +02:00
parent 5f1e1ae3e7
commit 0fa06ecbba
2 changed files with 14 additions and 8 deletions

View file

@ -15,20 +15,21 @@ def create_app(test_config=None):
'ldap_host': '',
'ldap_user': '',
'ldap_pass': '',
'ldap_base_dn': '',
'user_group': '',
'ldap_base_dn': '', # search for VPN users under this DN
'user_group': '', # limit VPN users to this LDAP group
'oidc_server': '',
'oidc_client_id': '',
'oidc_client_secret': '',
'admin_group': '',
'admin_mail': '',
'admin_group': '', # OIDC group for admin access
'admin_mail': '', # where to report errors
'no_nat_set': '', # name of destination IP set for which no NAT should be done
'wg_endpoint': '',
'wg_port': '51820',
'wg_allowed_nets': '',
'wg_dns': '',
'wg_key': '',
'wg_net': '',
'wg_net6': '',
'wg_net': '', # allocate wireguard IPv4 addresses from this prefix
'wg_net6': '', # allocate wireguard IPv6 addresses from this prefix
'version': 0,
}