diff options
| author | Daniil Baturin <daniil@vyos.io> | 2026-03-24 17:33:31 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-24 17:33:31 +0000 |
| commit | fbae51d4683e97fd9f32b5f1d71b903e728cdca3 (patch) | |
| tree | 4cff6255dd07cfd4561b37dc8b37728a13f13c16 /src/conf_mode | |
| parent | a9a75eb7dce077bceee1ae13dc943b05d8759925 (diff) | |
| parent | 5c800be95921e2d22ea0e43b931dea1abd3616a0 (diff) | |
| download | vyos-1x-fbae51d4683e97fd9f32b5f1d71b903e728cdca3.tar.gz vyos-1x-fbae51d4683e97fd9f32b5f1d71b903e728cdca3.zip | |
Merge pull request #5071 from AlectoTheFirst/fix/pppoe-dhcpv6-noipv6
T8405: fix noipv6 emitted when dhcpv6-options configured without ipv6 node
Diffstat (limited to 'src/conf_mode')
| -rwxr-xr-x | src/conf_mode/interfaces_pppoe.py | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/conf_mode/interfaces_pppoe.py b/src/conf_mode/interfaces_pppoe.py index 976702aba..7b93c364d 100755 --- a/src/conf_mode/interfaces_pppoe.py +++ b/src/conf_mode/interfaces_pppoe.py @@ -49,9 +49,18 @@ def get_config(config=None): # We should only terminate the PPPoE session if critical parameters change. # All parameters that can be changed on-the-fly (like interface description) # should not lead to a reconnect! - for options in ['access-concentrator', 'connect-on-demand', 'service-name', - 'source-interface', 'vrf', 'no-default-route', - 'authentication', 'host_uniq']: + for options in [ + 'access-concentrator', + 'connect-on-demand', + 'service-name', + 'source-interface', + 'vrf', + 'no-default-route', + 'authentication', + 'host-uniq', + 'dhcpv6-options', + 'ipv6', + ]: if is_node_changed(conf, base + [ifname, options]): pppoe.update({'shutdown_required': {}}) # bail out early - no need to further process other nodes |
