forked from RaspAP/raspap-webgui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request RaspAP#42 from billz/improve_installer
Improve installer
- Loading branch information
Showing
7 changed files
with
78 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Location of hostapd configuration file | ||
DAEMON_CONF="/etc/hostapd/hostapd.conf" | ||
|
||
# Additional daemon options to be appended to hostapd command:- | ||
# -d show more debug messages (-dd for even more) | ||
# -K include key data in debug messages | ||
# -t include timestamps in some debug messages | ||
# | ||
# Note that -B (daemon mode) and -P (pidfile) options are automatically | ||
# configured by the init.d script and must not be added to DAEMON_OPTS. | ||
# | ||
#DAEMON_OPTS="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Defaults from Raspberry Pi configuration | ||
hostname | ||
clientid | ||
persistent | ||
option rapid_commit | ||
option domain_name_servers, domain_name, domain_search, host_name | ||
option classless_static_routes | ||
option ntp_servers | ||
require dhcp_server_identifier | ||
slaac private | ||
nohook lookup-hostname | ||
|
||
# RaspAP-WebGui wireless configuration | ||
interface wlan0 | ||
static ip_address=10.3.141.1/24 | ||
static routers=10.3.141.1 | ||
static domain_name_server=8.8.8.8 8.8.4.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
domain-needed | ||
interface=wlan0 | ||
dhcp-range=10.3.141.50,10.3.141.255,255.255.255.0,12h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
driver=nl80211 | ||
ctrl_interface=/var/run/hostapd | ||
ctrl_interface_group=0 | ||
beacon_int=100 | ||
auth_algs=1 | ||
wpa_key_mgmt=WPA-PSK | ||
ssid=raspi-webgui | ||
channel=1 | ||
hw_mode=g | ||
wpa_passphrase=ChangeMe | ||
interface=wlan0 | ||
wpa=WPA2 | ||
wpa_pairwise=TKIP | ||
country_code= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters