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.
- Host: GitHub
- URL: https://github.com/graddotdev/openwrt-configuration
- Owner: graddotdev
- Created: 2019-11-06T08:47:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-06T13:25:00.000Z (over 4 years ago)
- Last Synced: 2025-04-11T20:19:05.292Z (22 days ago)
- Topics: openwrt, openwrt-config, openwrt-configuration
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```