diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-11 11:20:37 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-04-11 11:26:33 +0200 |
commit | 7f648cb2348ebe790757a98ef1d51275d0377650 (patch) | |
tree | c0aab25710e7c7ec36f2ef7f6357a0e95a3d30e9 /src | |
parent | fb40f020bcd2bdb0e2fbbbd13d4557e7e4da030d (diff) | |
download | vyos-1x-7f648cb2348ebe790757a98ef1d51275d0377650.tar.gz vyos-1x-7f648cb2348ebe790757a98ef1d51275d0377650.zip |
vpn: sstp: T2008: bugfix KeyError 'client_gateway'
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/vpn_sstp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/conf_mode/vpn_sstp.py b/src/conf_mode/vpn_sstp.py index 6a574dabb..13a24675d 100755 --- a/src/conf_mode/vpn_sstp.py +++ b/src/conf_mode/vpn_sstp.py @@ -61,6 +61,7 @@ default_config_data = { 'local_users' : [], 'auth_mode' : 'local', 'auth_proto' : ['auth_mschap_v2'], + 'client_gateway': '', 'radius_server' : [], 'radius_acct_tmo' : '3', 'radius_max_try' : '3', |