summaryrefslogtreecommitdiff
path: root/python/vyos/ifconfig/bond.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-09-19 22:04:09 +0200
committerGitHub <noreply@github.com>2024-09-19 22:04:09 +0200
commit394c2ad60b9d78b516facd9509493f719643323c (patch)
tree3209065a833f57aa8e95ced4e280b12feabc45e1 /python/vyos/ifconfig/bond.py
parentac9f5b19604b5cbe45fcb76baae98eaa81adb7bc (diff)
parent58dfd957fd8ec24caeca73105f7823148ef8c8bf (diff)
downloadvyos-1x-394c2ad60b9d78b516facd9509493f719643323c.tar.gz
vyos-1x-394c2ad60b9d78b516facd9509493f719643323c.zip
Merge pull request #4087 from c-po/wifi-fix
wireless: T6709: fix missing wpa_supplicant configuration
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()