Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
1) install hostapd and dnsmasq packages
2) create /etc/hostapd/hostapd.conf file
interface=wlan0
driver=nl80211
ssid=Kursovik
channel=1
hw_mode=g
auth_algs=1
wpa=3
wpa_passphrase=VeryVerySecretPassword!
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP CCMP
rsn_pairwise=CCMP
#!/bin/sh
sysctl net.ipv4.ip_forward=1
iptables -t nat -A POSTROUTING -s 192.168.2.0/24 -o eth0 -j MASQUERADE
/usr/sbin/dnsmasq \
--conf-file \
--no-hosts \
--bind-interfaces \
--except-interface=lo \
--clear-on-reload \
--strict-order \
--listen-address=192.168.2.1 \
--dhcp-range=192.168.2.100,192.168.2.199,60m \
--dhcp-option=option:router,192.168.2.1 \
--dhcp-lease-max=50
hostapd /etc/hostapd/hostapd.conf
I would start by reading the WiFi performance standards
www.ieee802.org/11
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question