Added check for security type

This commit is contained in:
Logan Lipke
2020-07-13 12:52:55 -07:00
parent 8453454877
commit 4f057c3f9b
6 changed files with 12 additions and 6 deletions

View File

@@ -136,7 +136,8 @@ class IPV6VariableTime(LFCliBase):
debug=self.debug)
def build(self):
self.station_profile.use_wpa2(True, self.ssid, self.password)
if self.security == "wpa2":
self.station_profile.use_wpa2(True, self.ssid, self.password)
self.station_profile.set_number_template(self.number_template)
print("Creating stations")
self.station_profile.set_command_flag("add_sta", "create_admin_down", 1)