Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wireless: T6709: fix missing wpa_supplicant configuration (backport #4087) #4088

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions python/vyos/ifconfig/bond.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,3 +504,6 @@ def update(self, config):

# call base class first
super().update(config)

# enable/disable EAPoL (Extensible Authentication Protocol over Local Area Network)
self.set_eapol()
3 changes: 3 additions & 0 deletions python/vyos/ifconfig/ethernet.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,3 +452,6 @@ def update(self, config):

# call base class last
super().update(config)

# enable/disable EAPoL (Extensible Authentication Protocol over Local Area Network)
self.set_eapol()
3 changes: 0 additions & 3 deletions python/vyos/ifconfig/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -1813,9 +1813,6 @@ def update(self, config):
value = '1' if (tmp != None) else '0'
self.set_per_client_thread(value)

# enable/disable EAPoL (Extensible Authentication Protocol over Local Area Network)
self.set_eapol()

# Enable/Disable of an interface must always be done at the end of the
# derived class to make use of the ref-counting set_admin_state()
# function. We will only enable the interface if 'up' was called as
Expand Down
Loading