raspap-webgui/README.md

127 lines
6.3 KiB
Markdown
Raw Normal View History

2015-02-27 16:10:52 +01:00
![](http://i.imgur.com/xeKD93p.png)
2017-10-07 01:22:04 +02:00
# `$ raspap-webgui` [![Release 1.2.1](https://img.shields.io/badge/Release-1.2.1-green.svg)](https://github.com/billz/raspap-webgui/releases)
2017-10-26 01:45:18 +02:00
A simple, responsive web interface to control wifi, hostapd and related services on the Raspberry Pi.
2015-02-27 16:10:52 +01:00
This project was inspired by a [**blog post**](http://sirlagz.net/2013/02/06/script-web-configuration-page-for-raspberry-pi/) by SirLagz about using a web page rather than ssh to configure wifi and hostapd settings on the Raspberry Pi. I mostly just prettified the UI by wrapping it in [**SB Admin 2**](https://github.com/BlackrockDigital/startbootstrap-sb-admin-2), a Bootstrap based admin theme.
2015-02-27 17:18:06 +01:00
2016-10-24 11:48:02 +02:00
We'd be curious to hear about how you use this with your own Pi-powered access points. Ping us on Twitter ([**@billzimmerman**](https://twitter.com/billzimmerman), [**@jrmhaig**](https://twitter.com/jrmhaig) and [**@SirLagz**](https://twitter.com/SirLagz)). Until then, here are some screenshots:
2015-02-27 16:10:52 +01:00
2016-06-14 12:59:05 +02:00
![](https://i.imgur.com/l4Vgd5G.png)
![](https://i.imgur.com/mRPtEnC.png)
![](https://i.imgur.com/FFdKoML.png)
2015-02-27 16:10:52 +01:00
## Contents
2015-03-11 11:34:35 +01:00
- [Prerequisites](#prerequisites)
2016-06-16 17:02:47 +02:00
- [Quick installer](#quick-installer)
- [Manual installation](#manual-installation)
2015-03-11 12:18:45 +01:00
- [Optional services](#optional-services)
2015-02-27 16:10:52 +01:00
- [How to contribute](#how-to-contribute)
2015-03-11 12:17:03 +01:00
- [License](#license)
2015-02-27 16:10:52 +01:00
2015-03-11 11:34:35 +01:00
## Prerequisites
You need to install some extra software in order for the Raspberry Pi to act as a WiFi router and access point. If all you're interested in is configuring your RPi as a client on an existing WiFi network, you can skip this step.
There are many guides available to help you select a WiFi adapter, install a compatible driver, configure HostAPD and so on. The details are outside the scope of this project, although I've had consistently good results with the [**Edimax Wireless 802.11b/g/n nano USB adapter**](http://www.edimax.com/edimax/merchandise/merchandise_detail/data/edimax/global/wireless_adapters_n150/ew-7811un) it's small, cheap and easy to work with.
2015-03-11 12:17:03 +01:00
To configure your RPi as a WiFi router, either of these resources will start you on the right track:
2016-06-14 13:18:48 +02:00
* [**How-To: Use The Raspberry Pi As A Wireless Access Point/Router Part 1**](http://sirlagz.net/2012/08/09/how-to-use-the-raspberry-pi-as-a-wireless-access-pointrouter-part-1/)
2015-03-11 11:34:35 +01:00
* [**How-To: Turn a Raspberry Pi into a WiFi router**](http://raspberrypihq.com/how-to-turn-a-raspberry-pi-into-a-wifi-router/) (uses isc-dhcp-server instead of dnsmasq)
2015-03-11 12:17:03 +01:00
After you complete the intial setup, you'll be able to administer these services using the web UI.
2016-06-16 17:02:47 +02:00
## Quick installer
Install RaspAP from your RaspberryPi's shell prompt:
```sh
$ wget -q https://git.io/voEUQ -O /tmp/raspap && bash /tmp/raspap
```
The installer will complete the steps in the manual installation (below) for you.
2016-10-23 22:39:22 +02:00
After the reboot at the end of the installation the wireless network will be
configured as an access point as follows:
* IP address: 10.3.141.1
* Username: admin
* Password: secret
2016-10-23 22:39:22 +02:00
* DHCP range: 10.3.141.50 to 10.3.141.255
* SSID: `raspi-webgui`
* Password: ChangeMe
2016-06-16 17:02:47 +02:00
## Manual installation
Start off by installing git, lighttpd, php5, hostapd and dnsmasq.
2015-02-27 16:10:52 +01:00
```sh
$ sudo apt-get install git lighttpd php5-cgi hostapd dnsmasq
2015-02-27 16:10:52 +01:00
```
After that, enable PHP for lighttpd and restart it for the settings to take effect.
```sh
sudo lighty-enable-mod fastcgi-php
2016-10-22 23:02:39 +02:00
sudo service lighttpd restart
2015-02-27 16:10:52 +01:00
```
2015-02-28 00:31:34 +01:00
Now comes the fun part. For security reasons, the `www-data` user which lighttpd runs under is not allowed to start or stop daemons, or run commands like ifdown and ifup, all of which we want our page to do.
So what I have done is added the `www-data` user to the sudoers file, but with restrictions on what commands the user can run.
2015-02-27 16:10:52 +01:00
Add the following to the end of `/etc/sudoers`:
```sh
www-data ALL=(ALL) NOPASSWD:/sbin/ifdown wlan0
www-data ALL=(ALL) NOPASSWD:/sbin/ifup wlan0
www-data ALL=(ALL) NOPASSWD:/bin/cat /etc/wpa_supplicant/wpa_supplicant.conf
www-data ALL=(ALL) NOPASSWD:/bin/cp /tmp/wifidata /etc/wpa_supplicant/wpa_supplicant.conf
www-data ALL=(ALL) NOPASSWD:/sbin/wpa_cli scan_results
www-data ALL=(ALL) NOPASSWD:/sbin/wpa_cli scan
2016-08-14 18:40:59 +02:00
www-data ALL=(ALL) NOPASSWD:/sbin/wpa_cli reconfigure
www-data ALL=(ALL) NOPASSWD:/bin/cp /tmp/hostapddata /etc/hostapd/hostapd.conf
www-data ALL=(ALL) NOPASSWD:/etc/init.d/hostapd start
www-data ALL=(ALL) NOPASSWD:/etc/init.d/hostapd stop
www-data ALL=(ALL) NOPASSWD:/etc/init.d/dnsmasq start
www-data ALL=(ALL) NOPASSWD:/etc/init.d/dnsmasq stop
www-data ALL=(ALL) NOPASSWD:/bin/cp /tmp/dhcpddata /etc/dnsmasq.conf
www-data ALL=(ALL) NOPASSWD:/sbin/shutdown -h now
www-data ALL=(ALL) NOPASSWD:/sbin/reboot
2015-02-27 16:10:52 +01:00
```
2015-02-27 17:38:09 +01:00
2016-08-31 10:45:00 +02:00
Once those modifications are done, git clone the files to `/var/www/html`.
2016-08-31 10:48:02 +02:00
**Note,** for older versions of Raspbian (before Jessie, May 2016) use
2016-08-31 10:48:56 +02:00
`/var/www` instead.
2015-02-27 17:38:09 +01:00
```sh
2016-08-31 10:45:00 +02:00
sudo rm -rf /var/www/html
sudo git clone https://github.com/billz/raspap-webgui /var/www/html
2015-02-27 17:38:09 +01:00
```
Set the files ownership to `www-data` user.
```sh
2016-08-31 10:45:00 +02:00
sudo chown -R www-data:www-data /var/www/html
2015-02-27 17:38:09 +01:00
```
2016-05-29 17:38:43 +02:00
Move the RaspAP configuration file to the correct location
```sh
sudo mkdir /etc/raspap
2016-08-31 10:45:00 +02:00
sudo mv /var/www/html/raspap.php /etc/raspap/
sudo chown -R www-data:www-data /etc/raspap
2016-05-29 17:38:43 +02:00
```
2015-02-27 17:38:09 +01:00
Reboot and it should be up and running!
```sh
sudo reboot
```
2015-03-11 12:17:03 +01:00
2016-05-29 17:38:43 +02:00
The default username is 'admin' and the default password is 'secret'.
2015-03-11 12:17:03 +01:00
## Optional services
OpenVPN and TOR are two additional services that run perfectly well on the RPi, and are a nice way to extend the usefulness of your WiFi router. I've started on interfaces to administer these services. Not everyone will need them, so for the moment they are disabled by default. You can enable them by changing these options in `index.php`:
```sh
// Optional services, set to true to enable.
define('RASPI_OPENVPN_ENABLED', false );
define('RASPI_TORPROXY_ENABLED', false );
```
2015-03-11 14:33:04 +01:00
Please note that these are only UI's for now. If there's enough interest I'll complete the funtionality for these optional admin screens.
2015-03-11 12:17:03 +01:00
2015-02-27 16:10:52 +01:00
## How to contribute
1. File an issue in the repository, using the bug tracker, describing the
contribution you'd like to make. This will help us to get you started on the
right foot.
2. Fork the project in your account and create a new branch:
`your-great-feature`.
3. Commit your changes in that branch.
4. Open a pull request, and reference the initial issue in the pull request
message.
## License
2016-05-01 08:54:24 +02:00
See the [LICENSE](./LICENSE) file.