diff options
author | John Estabrook <jestabro@vyos.io> | 2021-01-21 15:02:41 -0600 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2021-02-03 11:50:32 -0600 |
commit | e336cfe1d4c68e94b1ba759f5bb5dd6907a6c6b8 (patch) | |
tree | 37e3072757bcc708f729445ab4f0d60b70a1d346 /src/conf_mode/interfaces-pppoe.py | |
parent | d38fdaa3a91b168316fc1c668491774b942b8848 (diff) | |
download | vyos-1x-e336cfe1d4c68e94b1ba759f5bb5dd6907a6c6b8.tar.gz vyos-1x-e336cfe1d4c68e94b1ba759f5bb5dd6907a6c6b8.zip |
xml: T3239: override default mtu values and remove workarounds
(cherry picked from commit ea4c72ed0dbcee3f7e8f9693c5310190833651d8)
Diffstat (limited to 'src/conf_mode/interfaces-pppoe.py')
-rwxr-xr-x | src/conf_mode/interfaces-pppoe.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/conf_mode/interfaces-pppoe.py b/src/conf_mode/interfaces-pppoe.py index fd8919918..3675db73b 100755 --- a/src/conf_mode/interfaces-pppoe.py +++ b/src/conf_mode/interfaces-pppoe.py @@ -43,12 +43,6 @@ def get_config(config=None): base = ['interfaces', 'pppoe'] pppoe = get_interface_dict(conf, base) - # PPPoE is "special" the default MTU is 1492 - update accordingly - # as the config_level is already st in get_interface_dict() - we can use [] - tmp = conf.get_config_dict([], key_mangling=('-', '_'), get_first_key=True) - if 'mtu' not in tmp: - pppoe['mtu'] = '1492' - return pppoe def verify(pppoe): |