diff options
author | Christian Breunig <christian@breunig.cc> | 2023-10-07 19:50:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-07 19:50:42 +0200 |
commit | 7720ee247c03eeeab895da27804996571ffb476b (patch) | |
tree | 24212ec13751537430b99d63d283620cdc0acc73 /data | |
parent | 669acb05c91aa90f28b9aee823b27c7a29afdec0 (diff) | |
parent | 713647429b981f35822e8b4c9fafe990d120643c (diff) | |
download | vyos-1x-7720ee247c03eeeab895da27804996571ffb476b.tar.gz vyos-1x-7720ee247c03eeeab895da27804996571ffb476b.zip |
Merge pull request #2346 from vyos/mergify/bp/sagitta/pr-2335
pppoe: T5630: allow to specify MRU in addition to already configurable MTU (backport #2335)
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/pppoe/peer.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/pppoe/peer.j2 b/data/templates/pppoe/peer.j2 index f30cefe63..2a99fcb2a 100644 --- a/data/templates/pppoe/peer.j2 +++ b/data/templates/pppoe/peer.j2 @@ -50,7 +50,7 @@ ifname {{ ifname }} ipparam {{ ifname }} debug mtu {{ mtu }} -mru {{ mtu }} +mru {{ mru }} {% if authentication is vyos_defined %} {{ 'user "' + authentication.username + '"' if authentication.username is vyos_defined }} |