-
Notifications
You must be signed in to change notification settings - Fork 275
/
Copy pathsetup.py
57 lines (49 loc) · 1.47 KB
/
setup.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import os
os.system("apt update")
os.system("apt upgrade -y")
os.system("apt install hostapd -y")
os.system("apt install dnsmasq -y")
os.system("systemctl stop hostapd")
os.system("systemctl stop dnsmasq")
os.system("apt install python3-pip -y")
os.system("pip3 install flask")
with open("/etc/hostapd/hostapd.conf", "w") as file:
lines = [
"interface=wlan0"
"driver=nl80211"
"ssid=Ballbert"
"hw_mode=g"
"channel=6"
"wmm_enabled=0"
"macaddr_acl=0"
"auth_algs=1"
"ignore_broadcast_ssid=0"
"wpa=2"
"wpa_passphrase=Ballbert"
"wpa_key_mgmt=WPA-PSK"
"rsn_pairwise=CCMP"
]
file.write("\n".join(lines))
os.system("systemctl unmask hostapd")
os.system("systemctl enable hostapd")
os.system("cp /etc/dnsmasq.conf /etc/dnsmasq.conf.copy")
with open("/etc/dnsmasq.conf", "a") as file:
lines = [
"#RPiHotspot config - No Intenet",
"interface=wlan0",
"domain-needed",
"bogus-priv",
"dhcp-range=192.168.50.150,192.168.50.200,255.255.255.0,12h",
"address=/setup.ballbert.com/10.0.0.1",
]
file.write("\n".join(lines))
os.system("cp /etc/dhcpcd.conf /etc/dhcpcd.conf.copy")
with open("/etc/dhcpcd.conf", "a") as file:
lines = [
"interface wlan0",
"nohook wpa_supplicant",
"static ip_address=192.168.50.10/24",
"static routers=192.168.50.1",
]
file.write("\n".join(lines))
os.system("reboot")