diff options
author | Zhiyuan Wan <h@iloli.bid> | 2023-03-20 11:33:33 +0800 |
---|---|---|
committer | Zhiyuan Wan <h@iloli.bid> | 2023-03-21 13:20:02 +0800 |
commit | 616c5b38ec2f26fd589b3a01dbc4c2bf9b4d22c1 (patch) | |
tree | b110a527402d1b3d078fcddba96bb89894c2261d /interface-definitions | |
parent | c820be57b6c77cdb0a5055d0c3a77dc8d550e2d7 (diff) | |
download | vyos-1x-616c5b38ec2f26fd589b3a01dbc4c2bf9b4d22c1.tar.gz vyos-1x-616c5b38ec2f26fd589b3a01dbc4c2bf9b4d22c1.zip |
pppoe: T5098: allow user to set pppd holdoff option
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/interfaces-pppoe.xml.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/interface-definitions/interfaces-pppoe.xml.in b/interface-definitions/interfaces-pppoe.xml.in index c6fd7096b..b78f92c85 100644 --- a/interface-definitions/interfaces-pppoe.xml.in +++ b/interface-definitions/interfaces-pppoe.xml.in @@ -50,6 +50,20 @@ <constraintErrorMessage>Host-uniq must be specified as hex-adecimal byte-string (even number of HEX characters)</constraintErrorMessage> </properties> </leafNode> + <leafNode name="holdoff"> + <properties> + <help>Delay before re-dial to the access concentrator when PPP session terminated by peer (in seconds)</help> + <valueHelp> + <format>u32:0-86400</format> + <description>Holdoff time in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-86400"/> + </constraint> + <constraintErrorMessage>Holdoff must be in range 0 to 86400</constraintErrorMessage> + </properties> + <defaultValue>30</defaultValue> + </leafNode> <node name="ip"> <properties> <help>IPv4 routing parameters</help> |