diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-02 16:52:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-02 16:52:48 +0100 |
commit | 0c86d0a94beb7b36f011d911e2548b198eb634b3 (patch) | |
tree | 90adeda9f819934d768474477286f3733a499823 /data/templates/accel-ppp/pppoe.config.j2 | |
parent | 42d4a2d69288a06346ae9ca4be72a14198d6fe51 (diff) | |
parent | 47645f9d0243ce48a473ab7f8cdbd22c19f69f28 (diff) | |
download | vyos-1x-0c86d0a94beb7b36f011d911e2548b198eb634b3.tar.gz vyos-1x-0c86d0a94beb7b36f011d911e2548b198eb634b3.zip |
Merge pull request #2427 from sever-sever/T5704
T5704: PPPoE L2TP SSTP IPoE add option max-concurrent-sessions
Diffstat (limited to 'data/templates/accel-ppp/pppoe.config.j2')
-rw-r--r-- | data/templates/accel-ppp/pppoe.config.j2 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/data/templates/accel-ppp/pppoe.config.j2 b/data/templates/accel-ppp/pppoe.config.j2 index dd53edd28..e1ae3660e 100644 --- a/data/templates/accel-ppp/pppoe.config.j2 +++ b/data/templates/accel-ppp/pppoe.config.j2 @@ -62,10 +62,13 @@ wins{{ loop.index }}={{ server }} {# Common chap-secrets and RADIUS server/option definitions #} {% include 'accel-ppp/config_chap_secrets_radius.j2' %} -{% if session_control is vyos_defined and session_control is not vyos_defined('disable') %} [common] +{% if session_control is vyos_defined and session_control is not vyos_defined('disable') %} single-session={{ session_control }} {% endif %} +{% if max_concurrent_sessions is vyos_defined %} +max-starting={{ max_concurrent_sessions }} +{% endif %} [ppp] verbose=1 |