diff options
author | Daniil Baturin <daniil@vyos.io> | 2023-10-07 18:13:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-07 18:13:41 +0100 |
commit | 0d975350d0a953ef7dc311c165335f7f2977e107 (patch) | |
tree | 980b5cdd88e185dbd4303495caf6fdda3fa82e6a /data | |
parent | f1eac571f22af7779ef7264425e0cc51d1aaae11 (diff) | |
parent | e357258e645cf85de0035d4ecfbf99db4dd90f7e (diff) | |
download | vyos-1x-0d975350d0a953ef7dc311c165335f7f2977e107.tar.gz vyos-1x-0d975350d0a953ef7dc311c165335f7f2977e107.zip |
Merge pull request #2335 from c-po/t5630-pppoe-mru
pppoe: T5630: allow to specify MRU in addition to already configurable MTU
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 }} |