Adding config files

This commit is contained in:
Axel Rafn
2020-12-16 14:24:27 +00:00
parent 64fcf1efb8
commit 6ff3eebcb3
6 changed files with 67 additions and 1 deletions

3
configs/dhcpcd.conf Normal file
View File

@ -0,0 +1,3 @@
interface wlan0
static ip_address=10.1.1.1/24
denyinterfaces wlan0

2
configs/dnsmasq.conf Normal file
View File

@ -0,0 +1,2 @@
interface=wlan0
dhcp-range=10.1.1.10,10.1.1.210,255.255.255.0,24h

14
configs/hostapd.conf Normal file
View File

@ -0,0 +1,14 @@
interface=wlan0
bridge=br0
hw_mode=g
channel=7
wmm_enabled=0
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=2
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
ssid=v0xb0x
wpa_passphrase=PASSWORD

View File

@ -0,0 +1 @@
DAEMON_CONF="/etc/hostapd/hostapd.conf"