-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathhostap.py
executable file
·40 lines (30 loc) · 1.37 KB
/
hostap.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python3
import argparse, atexit
# Import dependencies and libraries.
from dependencies.libwifi.wifi import log, STATUS, change_log_level
from library.daemon import Daemon, NAME, VERSION
# Simplified wrapper to run an Access Point or Client Daemon.
#
# Examples:
# ./hostap.py wlan0 --ap
# ./hostap.py wlan1 --config ./setup/supplicant-wpa3-personal.conf
# ./hostap.py wlan1 --binary ./dependencies/hostap_2_9/wpa_supplicant/wpa_supplicant
# ----------------------------------- Helper Functions --------------------------------
def cleanup():
daemon.stop()
# ----------------------------------- Main Function -----------------------------------
if __name__ == "__main__":
# Arguments.
parser = argparse.ArgumentParser(description=f"{NAME} (Version {VERSION}).")
parser.add_argument('iface', help="Interface to use.")
parser.add_argument('--config', type=str, default=None, help="Configuration file.")
parser.add_argument('--binary', type=str, default=None, help="Custom hostapd/wpa_supplicant binary.")
parser.add_argument('--debug', type=int, default=0, help="Debug output level.")
parser.add_argument('--ap', default=False, action="store_true", help="Start as an Access Point")
options = parser.parse_args()
# Set debug verbosity of the logger.
change_log_level(-options.debug)
# Start the daemon.
daemon = Daemon(options)
atexit.register(cleanup)
daemon.run()