diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2026-06-30 15:32:18 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-30 15:32:18 +0300 |
| commit | e27ac42b750322da4e5a06a6dce8d45163dac72b (patch) | |
| tree | c4db70a3f1cd6eac08ec9f207c5ec124e16205ed | |
| parent | 1956ab51a39bbf74abd91139803462d27f7a837f (diff) | |
| parent | 0d00affbf15f30f44145ed1ec3faf53a57f28fdc (diff) | |
| download | vyos-1x-e27ac42b750322da4e5a06a6dce8d45163dac72b.tar.gz vyos-1x-e27ac42b750322da4e5a06a6dce8d45163dac72b.zip | |
Merge pull request #5303 from hedrok/T9031-fix-pppoe-server-auth-protocol-change
T9031: Fix updating pppoe server protocols
| -rwxr-xr-x | src/conf_mode/service_pppoe-server.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/conf_mode/service_pppoe-server.py b/src/conf_mode/service_pppoe-server.py index ab9f8421c..1f6f6ecc7 100755 --- a/src/conf_mode/service_pppoe-server.py +++ b/src/conf_mode/service_pppoe-server.py @@ -126,6 +126,7 @@ def get_config(config=None): is_node_changed(conf, base + ['interface']), is_node_changed(conf, base + ['authentication', 'radius']), is_node_changed(conf, base + ['authentication', 'mode']), + is_node_changed(conf, base + ['authentication', 'protocols']), any( base_ifname(iface) in all_changed_vpp_ifaces for iface in pppoe.get('interface', {}) |
