I created a wifi access point with Rpi3. The number of devices that can be connected to the wifi access point is only 5

How to increase the number of clients connected to wifi access point?
Thanks in advance
Code: Select all
dhcp-range=192.168.3.14,192.168.3.44,255.255.255.0,24h
DougieLawson wrote: ↑Thu Nov 02, 2017 10:31 amWhat's the range of addresses in your dnsmasq config?Code: Select all
dhcp-range=192.168.3.14,192.168.3.44,255.255.255.0,24h
Code: Select all
# Maximum number of stations allowed in station table. New stations will be
# rejected after the station table is full. IEEE 802.11 has a limit of 2007
# different association IDs, so this number should not be larger than that.
# (default: 2007)
max_num_sta=255
Code: Select all
max_num_sta=100