raspap-webgui/README.md

200 lines
13 KiB
Markdown
Raw Normal View History

2021-02-04 18:22:15 +01:00
![](https://i.imgur.com/DpgvLIO.png)
2021-02-03 17:47:10 +01:00
[![Release 2.6](https://img.shields.io/badge/release-v2.6-green)](https://github.com/raspap/raspap-webgui/releases) [![Awesome](https://awesome.re/badge.svg)](https://github.com/thibmaek/awesome-raspberry-pi) [![Financial Contributors on Open Collective](https://opencollective.com/raspap/all/badge.svg?label=financial+contributors)](https://opencollective.com/raspap) ![https://travis-ci.com/github/raspap/raspap-webgui/](https://api.travis-ci.org/RaspAP/raspap-webgui.svg) [![Crowdin](https://badges.crowdin.net/raspap/localized.svg)](https://crowdin.com/project/raspap) [![Twitter URL](https://img.shields.io/twitter/url?label=%40RaspAP&logoColor=%23d8224c&url=https%3A%2F%2Ftwitter.com%2Frasp_ap)](https://twitter.com/rasp_ap) [![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/RaspAP?style=social)](https://www.reddit.com/r/RaspAP/)
2018-09-22 13:02:02 +02:00
2021-02-01 21:12:54 +01:00
RaspAP lets you quickly get a wireless access point up and running to share the connectivity of many popular [Debian-based devices](#supported-operating-systems), including the Raspberry Pi. Our popular [Quick installer](#quick-installer) creates a known-good default configuration that "just works" on all current Raspberry Pis with onboard wireless. A responsive interface gives you control over the relevant services and networking options. Advanced DHCP settings, OpenVPN client support, SSL, security audits, themes and multilingual options are included.
2015-02-27 16:10:52 +01:00
2020-01-29 22:08:22 +01:00
RaspAP has been featured on sites such as [Instructables](http://www.instructables.com/id/Raspberry-Pi-As-Completely-Wireless-Router/), [Adafruit](https://blog.adafruit.com/2016/06/24/raspap-wifi-configuration-portal-piday-raspberrypi-raspberry_pi/), [Raspberry Pi Weekly](https://www.raspberrypi.org/weekly/commander/) and [Awesome Raspberry Pi](https://project-awesome.org/thibmaek/awesome-raspberry-pi) and implemented in countless projects.
2015-02-27 17:18:06 +01:00
2021-02-03 10:07:15 +01:00
We hope you enjoy using RaspAP as much as we do creating it. Tell us how you use this with [your own projects](https://github.com/raspap/raspap-awesome).
2015-02-27 16:10:52 +01:00
2020-06-16 22:04:32 +02:00
![](https://i.imgur.com/ikWvsMG.gif)
2019-11-01 18:29:44 +01:00
![](https://i.imgur.com/EiIpdOS.gif)
![](https://i.imgur.com/eCjUS1H.gif)
![](https://i.imgur.com/5FT2BcS.gif)
![](https://i.imgur.com/RKaBFrZ.gif)
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)
2020-04-03 23:03:36 +02:00
- [Ad Blocking](#ad-blocking)
2020-03-15 12:02:20 +01:00
- [Bridged AP](#bridged-ap)
2019-04-09 21:56:19 +02:00
- [Simultaneous AP and Wifi client](#simultaneous-ap-and-wifi-client)
2019-03-11 23:38:42 +01:00
- [Support us](#support-us)
2016-06-16 17:02:47 +02:00
- [Manual installation](#manual-installation)
2020-01-07 09:21:00 +01:00
- [802.11ac 5GHz support](#80211ac-5ghz-support)
2020-03-30 00:03:42 +02:00
- [Supported operating systems](#supported-operating-systems)
2018-06-01 20:19:07 +02:00
- [Multilingual support](#multilingual-support)
2019-07-30 02:36:54 +02:00
- [HTTPS support](#https-support)
2019-11-18 13:44:02 +01:00
- [OpenVPN support](#openvpn-support)
2015-02-27 16:10:52 +01:00
- [How to contribute](#how-to-contribute)
2019-04-13 18:08:21 +02:00
- [Reporting issues](#reporting-issues)
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
2021-02-01 21:12:54 +01:00
Start with a clean install of the [latest release of Raspberry Pi OS (32-bit) Lite](https://www.raspberrypi.org/software/operating-systems/#raspberry-pi-os-32-bit). The Raspberry Pi OS desktop and 64-bit beta distros are unsupported.
2015-03-11 11:34:35 +01:00
2019-03-06 01:34:34 +01:00
1. Update Raspbian, including the kernel and firmware, followed by a reboot:
```
sudo apt-get update
2021-02-01 21:12:54 +01:00
sudo apt-get full-upgrade
2019-03-06 01:34:34 +01:00
sudo reboot
```
2021-02-01 21:12:54 +01:00
2. Set the "WLAN country" option in `raspi-config`'s **Localisation Options**: `sudo raspi-config`
2015-03-11 11:34:35 +01:00
2021-02-01 21:12:54 +01:00
3. If you have a device without an onboard wireless chipset, the [**Edimax Wireless 802.11b/g/n nano USB adapter**](https://www.edimax.com/edimax/merchandise/merchandise_detail/data/edimax/global/wireless_adapters_n150/ew-7811un) is an excellent option it's small, cheap and has good driver support.
2015-03-11 11:34:35 +01:00
2019-03-06 01:34:34 +01:00
With the prerequisites done, you can proceed with either the Quick installer or Manual installation steps below.
2015-03-11 12:17:03 +01:00
2016-06-16 17:02:47 +02:00
## Quick installer
2020-04-11 23:15:02 +02:00
Install RaspAP from your device's shell prompt:
2016-06-16 17:02:47 +02:00
```sh
2019-11-19 22:36:46 +01:00
curl -sL https://install.raspap.com | bash
2016-06-16 17:02:47 +02:00
```
The [installer](https://docs.raspap.com/quick/) will complete the steps in the manual installation (below) for you.
2016-06-16 17:02:47 +02:00
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
**Note:** As the name suggests, the Quick Installer is a great way to quickly setup a new AP. However, it does not automagically detect the unique configuration of your system. Best results are obtained by connecting to ethernet (`eth0`) or as a WiFi client, also known as managed mode, with `wlan0`. For the latter, refer to [this FAQ](https://docs.raspap.com/faq/#headless). Special instructions for the Pi Zero W are [available here](https://docs.raspap.com/ap-sta/).
2020-05-23 13:55:10 +02:00
Please [read this](https://docs.raspap.com/issues/) before reporting an issue.
2019-04-16 15:47:42 +02:00
2020-04-03 23:03:36 +02:00
## Ad Blocking
2020-04-13 10:16:52 +02:00
This feature uses DNS blacklisting to block requests for ads, trackers and other undesirable hosts. To enable ad blocking, simply respond to the prompt during the installation. As a beta release, we encourage testing and feedback from users of RaspAP.
2020-04-03 23:03:36 +02:00
Details are [provided here](https://docs.raspap.com/adblock/).
2020-04-03 23:03:36 +02:00
2020-03-15 12:02:20 +01:00
## Bridged AP
By default RaspAP configures a routed AP for your clients to connect to. A bridged AP configuration is also possible. Slide the **Bridged AP mode** toggle under the **Advanced** tab of **Configure hotspot**, then save and restart the hotspot.
2020-03-16 10:46:07 +01:00
![](https://i.imgur.com/J5VKSay.png)
2020-04-11 23:15:02 +02:00
**Note:** In bridged mode, all routing capabilities are handled by your upstream router. Because your router assigns IP addresses to your device's hotspot and its clients, you might not be able to reach the RaspAP web interface from the default `10.3.141.1` address. Instead use your RPi's hostname followed by `.local` to access the RaspAP web interface. With Raspbian default settings, this should look like `raspberrypi.local`. Alternate methods are [discussed here](https://www.raspberrypi.org/documentation/remote-access/ip-address.md).
2020-03-15 12:02:20 +01:00
More information on Bridged AP mode is provided [in our documentation](https://docs.raspap.com/bridged/).
2020-03-16 10:09:16 +01:00
2019-04-09 21:56:19 +02:00
## Simultaneous AP and Wifi client
RaspAP lets you create an AP with a Wifi client configuration, often called [AP-STA mode](https://docs.raspap.com/ap-sta/). With your system configured in managed mode, enable the AP from the **Advanced** tab of **Configure hotspot** by sliding the **Wifi client AP mode** toggle. Save settings and start the hotspot. The managed mode AP is functional without restart.
2019-04-09 21:56:19 +02:00
**Note:** This option is disabled until you configure your system as a wireless client. For a device operating in [managed mode](https://docs.raspap.com/faq/#headless) without an `eth0` connection, this configuration must be enabled [_before_ a reboot](https://docs.raspap.com/ap-sta/).
2019-04-15 09:18:20 +02:00
2019-03-11 23:38:42 +01:00
## Support us
2021-02-03 12:09:10 +01:00
RaspAP is free software, but powered by your support. If you find RaspAP useful for your personal or commercial projects, [become a GitHub sponsor](https://github.com/sponsors/RaspAP/) or join the project on [Open Collective](https://opencollective.com/RaspAP). Either of these options makes a big difference!
2020-02-09 17:40:28 +01:00
2016-06-16 17:02:47 +02:00
## Manual installation
Detailed manual setup instructions are provided [on our documentation site](https://docs.raspap.com/manual/).
2015-03-11 12:17:03 +01:00
2020-01-07 09:15:43 +01:00
## 802.11ac 5GHz support
RaspAP provides an 802.11ac wireless mode option for supported hardware (currently the RPi 3B+/4 and compatible Orange Pi models) and wireless regulatory domains. See [this FAQ](https://docs.raspap.com/faq/#80211ac) for more information.
2016-05-29 17:38:43 +02:00
2020-03-30 00:03:42 +02:00
## Supported operating systems
RaspAP was originally made for Raspbian, but now also installs on the following Debian-based distros.
| Distribution | Release | Architecture | Support |
|---|:---:|:---:|:---:|
2020-06-02 00:22:10 +02:00
| Raspberry Pi OS | (32-bit) Lite Buster | ARM | Official |
2020-03-30 00:03:42 +02:00
| Armbian | Buster | [ARM](https://docs.armbian.com/#supported-chips) | Official |
| Debian | Buster | ARM / x86_64 | Beta |
2020-03-30 00:18:58 +02:00
| Ubuntu | 18.04 LTS / 19.10 | ARM / x86_64 | Beta |
2020-03-30 00:03:42 +02:00
![](https://i.imgur.com/luiyYNw.png)
2020-03-30 00:23:06 +02:00
We find Armbian particularly well-suited for this project. Please note that "supported" is not a guarantee. If you are able to improve support for your preferred distro, we encourage you to [actively contribute](#how-to-contribute) to the project.
2020-03-30 00:03:42 +02:00
2018-06-01 20:19:07 +02:00
## Multilingual support
RaspAP uses [GNU Gettext](https://www.gnu.org/software/gettext/) to manage multilingual messages. In order to use RaspAP with one of our supported translations, you must configure a corresponding language package on your RPi. To list languages currently installed on your system, use `locale -a` at the shell prompt. To generate new locales, run `sudo dpkg-reconfigure locales` and select any other desired locales. Details are provided on our [documentation site](https://docs.raspap.com/translations/)
2018-06-01 20:19:07 +02:00
The following translations are currently maintained by the project:
2020-04-11 10:17:01 +02:00
- Čeština
- 正體中文 (Chinese traditional)
2020-04-11 10:17:01 +02:00
- 简体中文 (Chinese Simplified)
2020-04-11 09:28:22 +02:00
- Dansk
2018-06-16 23:48:00 +02:00
- Deutsch
2020-04-11 09:28:22 +02:00
- Español
- Finnish
2020-04-11 10:17:01 +02:00
- Français
2020-06-13 10:57:38 +02:00
- Ελληνικά (Greek)
2020-04-11 09:28:22 +02:00
- Indonesian
2018-06-01 20:19:07 +02:00
- Italiano
2020-04-11 10:17:01 +02:00
- 日本語 (Japanese)
- 한국어 (Korean)
2020-04-11 09:28:22 +02:00
- Nederlands
2020-10-01 08:59:28 +02:00
- Polskie
2018-06-01 20:19:07 +02:00
- Português
2020-04-11 09:28:22 +02:00
- Русский
2018-06-01 20:19:07 +02:00
- Svenska
2020-04-11 10:17:01 +02:00
- Türkçe
2019-10-30 08:14:08 +01:00
- Tiếng Việt (Vietnamese)
2018-06-01 20:19:07 +02:00
If your language is not in the list above, why not [contribute a translation](https://docs.raspap.com/translations/#contributing-to-a-translation)? Contributors will receive credit as the original translators.
2018-06-01 20:19:07 +02:00
2019-07-30 02:36:54 +02:00
## HTTPS support
The Quick Installer may be used to [generate SSL certificates](https://docs.raspap.com/ssl-quick/) with `mkcert`. The installer automates the manual steps [described here](https://docs.raspap.com/ssl-manual/), including configuring lighttpd with SSL support.
2019-11-08 11:14:44 +01:00
Simply append the `-c` or `--cert` option to the Quick Installer, like so:
2019-11-20 00:23:52 +01:00
```sh
curl -sL https://install.raspap.com | bash -s -- --cert
2019-11-08 11:14:44 +01:00
```
**Note**: this only installs mkcert and generates an SSL certificate with the input you provide. It does *not* (re)install RaspAP.
More information on SSL certificates and HTTPS support is available [in our documentation](https://docs.raspap.com/ssl-quick/).
2019-07-30 02:36:54 +02:00
2019-11-18 13:44:02 +01:00
## OpenVPN support
OpenVPN may be optionally installed by the Quick Installer. Once this is done, you can manage client configuration and the `openvpn-client` service with RaspAP.
2015-03-11 12:17:03 +01:00
2019-11-18 13:44:02 +01:00
To configure an OpenVPN client, upload a valid .ovpn file and, optionally, specify your login credentials. RaspAP will store your client configuration and add firewall rules to forward traffic from OpenVPN's `tun0` interface to your configured wireless interface.
**Note**: this feature is currently in beta. Please [read this](https://docs.raspap.com/faq/#openvpn-fails) before reporting an issue.
2015-03-11 12:17:03 +01:00
2015-02-27 16:10:52 +01:00
## How to contribute
2020-04-11 23:15:02 +02:00
1. Fork the project in your account and create a new branch: `your-great-feature`.
2. Open an issue in the repository describing the feature contribution you'd like to make.
2020-01-07 09:15:43 +01:00
3. Commit changes in your feature branch.
4. Open a pull request and reference the initial issue in the pull request message.
2019-04-10 10:57:47 +02:00
2020-02-13 08:12:50 +01:00
Find out more about our [coding style guidelines and recommended tools](CONTRIBUTING.md).
2015-02-27 16:10:52 +01:00
2019-04-13 18:08:21 +02:00
## Reporting issues
Please [read this](https://docs.raspap.com/issues/) before reporting a bug.
2019-04-13 18:08:21 +02:00
## Contributors
### Code Contributors
2020-02-13 17:08:33 +01:00
This project exists thanks to all the awesome people who [contribute](CONTRIBUTING.md) their time and expertise.
2021-02-03 10:07:15 +01:00
<a href="https://github.com/raspap/raspap-webgui/graphs/contributors"><img src="https://opencollective.com/raspap/contributors.svg?width=890&button=false" /></a>
### Financial Contributors
2020-02-13 11:17:45 +01:00
Become a [financial contributor](https://opencollective.com/raspap/contribute) and help us sustain our community.
#### Individuals
<a href="https://opencollective.com/raspap"><img src="https://opencollective.com/raspap/individuals.svg?width=890"></a>
#### Organizations
2020-02-13 11:17:45 +01:00
[Support this project](https://opencollective.com/raspap/contribute) with your organization. Your logo will show up here with a link to your website.
<a href="https://opencollective.com/raspap/organization/0/website"><img src="https://opencollective.com/raspap/organization/0/avatar.svg"></a>
<a href="https://opencollective.com/raspap/organization/1/website"><img src="https://opencollective.com/raspap/organization/1/avatar.svg"></a>
<a href="https://opencollective.com/raspap/organization/2/website"><img src="https://opencollective.com/raspap/organization/2/avatar.svg"></a>
<a href="https://opencollective.com/raspap/organization/3/website"><img src="https://opencollective.com/raspap/organization/3/avatar.svg"></a>
<a href="https://opencollective.com/raspap/organization/4/website"><img src="https://opencollective.com/raspap/organization/4/avatar.svg"></a>
<a href="https://opencollective.com/raspap/organization/5/website"><img src="https://opencollective.com/raspap/organization/5/avatar.svg"></a>
<a href="https://opencollective.com/raspap/organization/6/website"><img src="https://opencollective.com/raspap/organization/6/avatar.svg"></a>
<a href="https://opencollective.com/raspap/organization/7/website"><img src="https://opencollective.com/raspap/organization/7/avatar.svg"></a>
<a href="https://opencollective.com/raspap/organization/8/website"><img src="https://opencollective.com/raspap/organization/8/avatar.svg"></a>
<a href="https://opencollective.com/raspap/organization/9/website"><img src="https://opencollective.com/raspap/organization/9/avatar.svg"></a>
2015-02-27 16:10:52 +01:00
## License
2016-05-01 08:54:24 +02:00
See the [LICENSE](./LICENSE) file.