diff options
author | aapostoliuk <a.apostoliuk@vyos.io> | 2024-02-07 12:26:49 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-02-09 07:23:30 +0000 |
commit | 3e1a585f9714ffa990bb5751c7a4c7025d7c02fa (patch) | |
tree | 91914de09186cfae40e6848a9aefeef7c4c39b12 /src/conf_mode/vpn_l2tp.py | |
parent | 267579006a98fbdc5802b428d24a917421a56cb2 (diff) | |
download | vyos-1x-3e1a585f9714ffa990bb5751c7a4c7025d7c02fa.tar.gz vyos-1x-3e1a585f9714ffa990bb5751c7a4c7025d7c02fa.zip |
T5960: Rewritten authentication node in PPTP to a single view
Rewritten authentication node in accel-ppp services
to a single view. In particular - PPTP authentication.
(cherry picked from commit 018110200c9a82815dd5d0510f0732d7159c0d59)
Diffstat (limited to 'src/conf_mode/vpn_l2tp.py')
-rwxr-xr-x | src/conf_mode/vpn_l2tp.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/conf_mode/vpn_l2tp.py b/src/conf_mode/vpn_l2tp.py index 4ca717814..266381754 100755 --- a/src/conf_mode/vpn_l2tp.py +++ b/src/conf_mode/vpn_l2tp.py @@ -27,7 +27,6 @@ from vyos.utils.dict import dict_search from vyos.accel_ppp_util import verify_accel_ppp_base_service from vyos.accel_ppp_util import verify_accel_ppp_ip_pool from vyos.accel_ppp_util import get_pools_in_order -from vyos.base import Warning from vyos import ConfigError from vyos import airbag @@ -64,14 +63,8 @@ def verify(l2tp): return None verify_accel_ppp_base_service(l2tp) - - if dict_search('authentication.radius.dynamic_author.server', l2tp): - if not dict_search('authentication.radius.dynamic_author.key', l2tp): - raise ConfigError('DA/CoE server key required!') - verify_accel_ppp_ip_pool(l2tp) - if 'wins_server' in l2tp and len(l2tp['wins_server']) > 2: raise ConfigError( 'Not more then two WINS name-servers can be configured') |