summaryrefslogtreecommitdiff
path: root/python/vyos/ifconfig/bond.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-09-19 21:26:38 +0200
committerChristian Breunig <christian@breunig.cc>2024-09-19 21:26:38 +0200
commit58dfd957fd8ec24caeca73105f7823148ef8c8bf (patch)
treebf768cd422b089ed8614eb5018254558f4195736 /python/vyos/ifconfig/bond.py
parentff0c3b81df719c0ddcf6a3e435d393b8f193e5ec (diff)
downloadvyos-1x-58dfd957fd8ec24caeca73105f7823148ef8c8bf.tar.gz
vyos-1x-58dfd957fd8ec24caeca73105f7823148ef8c8bf.zip
wireless: T6709: fix missing wpa_supplicant configuration
Commit 0ee8d5e35 ("ethernet: T6709: move EAPoL support to common framework") added support to also have EAPoL on other interface types then ethernet. This introduced a regression where the wireless interface wpa_supplicant configuration would get deleted.
Diffstat (limited to 'python/vyos/ifconfig/bond.py')
-rw-r--r--python/vyos/ifconfig/bond.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/vyos/ifconfig/bond.py b/python/vyos/ifconfig/bond.py
index b8ea90049..8ba481728 100644
--- a/python/vyos/ifconfig/bond.py
+++ b/python/vyos/ifconfig/bond.py
@@ -504,3 +504,6 @@ class BondIf(Interface):
# call base class first
super().update(config)
+
+ # enable/disable EAPoL (Extensible Authentication Protocol over Local Area Network)
+ self.set_eapol()