diff options
author | DmitriyEshenko <dmitriy.eshenko@vyos.io> | 2021-09-01 18:53:08 +0000 |
---|---|---|
committer | DmitriyEshenko <dmitriy.eshenko@vyos.io> | 2021-09-01 18:53:08 +0000 |
commit | 23388fe193f04ab05f270098123cbb3e5f0b9f75 (patch) | |
tree | 8dba5788da17f28352ecca02dcf2282967caf6e3 /data | |
parent | f5f58669cccbb99ae2b8bc9737e9d6bb782a53a4 (diff) | |
download | vyos-1x-23388fe193f04ab05f270098123cbb3e5f0b9f75.tar.gz vyos-1x-23388fe193f04ab05f270098123cbb3e5f0b9f75.zip |
pptp-server: T3790: Change ippool priority and define gw-ip-address
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/accel-ppp/pptp.config.tmpl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/data/templates/accel-ppp/pptp.config.tmpl b/data/templates/accel-ppp/pptp.config.tmpl index 5a6cfe749..3cfc4a906 100644 --- a/data/templates/accel-ppp/pptp.config.tmpl +++ b/data/templates/accel-ppp/pptp.config.tmpl @@ -2,12 +2,13 @@ [modules] log_syslog pptp -ippool +shaper {% if auth_mode == 'local' %} chap-secrets {% elif auth_mode == 'radius' %} radius {% endif %} +ippool {% for proto in auth_proto %} {{proto}} {% endfor %} @@ -87,6 +88,10 @@ nas-ip-address={{ radius_nas_ip }} bind={{ radius_source_address }} {% endif %} {% endif %} +{# Both chap-secrets and radius block required the gw-ip-address #} +{% if gw_ip is defined and gw_ip is not none %} +gw-ip-address={{ gw_ip }} +{% endif %} [cli] tcp=127.0.0.1:2003 |