diff options
author | Christian Breunig <christian@breunig.cc> | 2023-01-25 16:12:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-25 16:12:13 +0100 |
commit | 8328e4393ad7cff4d2bd6291cd577048da270ccc (patch) | |
tree | 140027f443c1f7ae372b57c92bec19b708a78b02 /data | |
parent | 155d3c1ac748a945ce62d3f9b2629696dbdb4b70 (diff) | |
parent | 36bf5f4d5ad114115feac91e5ffc726c5a3423d8 (diff) | |
download | vyos-1x-8328e4393ad7cff4d2bd6291cd577048da270ccc.tar.gz vyos-1x-8328e4393ad7cff4d2bd6291cd577048da270ccc.zip |
Merge pull request #1775 from c-po/t4948-backport
pppoe: T4948: add CLI option to allow definition of host-uniq flag (equuleus backport)
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/pppoe/peer.tmpl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/data/templates/pppoe/peer.tmpl b/data/templates/pppoe/peer.tmpl index f416f9947..b681bea77 100644 --- a/data/templates/pppoe/peer.tmpl +++ b/data/templates/pppoe/peer.tmpl @@ -36,10 +36,13 @@ maxfail 0 plugin rp-pppoe.so {{ source_interface }} {% if access_concentrator is defined and access_concentrator is not none %} -rp_pppoe_ac '{{ access_concentrator }}' +rp_pppoe_ac "{{ access_concentrator }}" {% endif %} {% if service_name is defined and service_name is not none %} -rp_pppoe_service '{{ service_name }}' +rp_pppoe_service "{{ service_name }}" +{% endif %} +{% if host_uniq is defined and host_uniq is not none %} +host-uniq "{{ host_uniq }}" {% endif %} persist |