diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2024-12-20 16:52:16 +0000 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2024-12-20 16:52:16 +0000 |
commit | 8f61e4293945ea895385a29f8bd387cde9f98806 (patch) | |
tree | 8eb6de468836dcab7981953e0d06d4d3416d710b /interface-definitions | |
parent | ff13d4d288e09564553458098890bb4345c5d0cf (diff) | |
download | vyos-1x-8f61e4293945ea895385a29f8bd387cde9f98806.tar.gz vyos-1x-8f61e4293945ea895385a29f8bd387cde9f98806.zip |
T6936: PPPoE-server add option combined to interface
Add option 'combined', it allows to listen to PPP requests on
both VLANs and the base parent interface (wihtout tag)
Before it was impossible to do it from our CLI
set service pppoe-server interface eth1 combined
set service pppoe-server interface eth1 vlan '10-122'
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/service_pppoe-server.xml.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/interface-definitions/service_pppoe-server.xml.in b/interface-definitions/service_pppoe-server.xml.in index 0c99fd261..32215e9d2 100644 --- a/interface-definitions/service_pppoe-server.xml.in +++ b/interface-definitions/service_pppoe-server.xml.in @@ -63,6 +63,12 @@ </completionHelp> </properties> <children> + <leafNode name="combined"> + <properties> + <help>Listen on both VLANs and the base interface</help> + <valueless/> + </properties> + </leafNode> #include <include/accel-ppp/vlan.xml.i> #include <include/accel-ppp/vlan-mon.xml.i> </children> |