mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-19 03:25:05 +00:00
realm: StationProfile: fixes mode null on station create
This commit is contained in:
@@ -3241,7 +3241,8 @@ class StationProfile:
|
|||||||
if self.use_ht160:
|
if self.use_ht160:
|
||||||
self.desired_add_sta_flags.append("ht160_enable")
|
self.desired_add_sta_flags.append("ht160_enable")
|
||||||
self.desired_add_sta_flags_mask.append("ht160_enable")
|
self.desired_add_sta_flags_mask.append("ht160_enable")
|
||||||
self.add_sta_data["mode"] = self.mode
|
if self.mode is not None:
|
||||||
|
self.add_sta_data["mode"] = self.mode
|
||||||
if use_radius:
|
if use_radius:
|
||||||
self.desired_add_sta_flags.append("8021x_radius")
|
self.desired_add_sta_flags.append("8021x_radius")
|
||||||
self.desired_add_sta_flags_mask.append("8021x_radius")
|
self.desired_add_sta_flags_mask.append("8021x_radius")
|
||||||
|
|||||||
Reference in New Issue
Block a user