An open API service indexing awesome lists of open source software.

https://github.com/graddotdev/openwrt-configuration

The Bash script that configures the OpenWrt after a clean install.
https://github.com/graddotdev/openwrt-configuration

openwrt openwrt-config openwrt-configuration

Last synced: about 1 year ago
JSON representation

The Bash script that configures the OpenWrt after a clean install.

Awesome Lists containing this project

README

          

# OpenWrt Configuration

## Modules

- PPPoE
- Wi-Fi
- VPN
- DNS over HTTPS
- Bypass Censorship

## How to use?

```bash
cp environment-variables.sh.example environment-variables.sh
# Set your own variables
nano environment-variables.sh
# Enable or disable modules you want
nano configure.sh
# Copy files to OpenWrt using SSH
scp -r . root@192.168.1.1:/tmp/config
# Connect to OpenWrt using SSH
ssh root@192.168.1.1
# Change directory to /tmp/config
cd /tmp/config
# Run
./configure.sh
```