mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Exclude .255 broadcast address from dhcp-range
This commit is contained in:
parent
34f1052450
commit
3bf3e0baa3
@ -58,7 +58,7 @@ configured as an access point as follows:
|
|||||||
* IP address: 10.3.141.1
|
* IP address: 10.3.141.1
|
||||||
* Username: admin
|
* Username: admin
|
||||||
* Password: secret
|
* Password: secret
|
||||||
* DHCP range: 10.3.141.50 — 10.3.141.255
|
* DHCP range: 10.3.141.50 — 10.3.141.254
|
||||||
* SSID: `raspi-webgui`
|
* SSID: `raspi-webgui`
|
||||||
* Password: ChangeMe
|
* Password: ChangeMe
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# RaspAP wlan0 configuration for wired (ethernet) AP mode
|
# RaspAP wlan0 configuration for wired (ethernet) AP mode
|
||||||
interface=wlan0
|
interface=wlan0
|
||||||
domain-needed
|
domain-needed
|
||||||
dhcp-range=10.3.141.50,10.3.141.255,255.255.255.0,12h
|
dhcp-range=10.3.141.50,10.3.141.254,255.255.255.0,12h
|
||||||
dhcp-option=6,9.9.9.9,1.1.1.1
|
dhcp-option=6,9.9.9.9,1.1.1.1
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
},
|
},
|
||||||
"dnsmasq": {
|
"dnsmasq": {
|
||||||
"wlan0": {
|
"wlan0": {
|
||||||
"dhcp-range": [ "10.3.141.50,10.3.141.255,255.255.255.0,12h" ]
|
"dhcp-range": [ "10.3.141.50,10.3.141.254,255.255.255.0,12h" ]
|
||||||
},
|
},
|
||||||
"uap0": {
|
"uap0": {
|
||||||
"dhcp-range": [ "192.168.50.50,192.168.50.150,12h" ]
|
"dhcp-range": [ "192.168.50.50,192.168.50.150,12h" ]
|
||||||
|
Loading…
Reference in New Issue
Block a user