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: 22 days 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 . [email protected]:/tmp/config
# Connect to OpenWrt using SSH
ssh [email protected]
# Change directory to /tmp/config
cd /tmp/config
# Run
./configure.sh
```