Collection of pure Unix shell scripts and utilities for managing Ubiquiti EdgeMAX routers. Some scripts are derived from various guides around the internet. This repo is designed to be installed into /config/scripts
.
I prefer to install this through git, but some routers have smaller filesystems, like the EdgeRouter-X, and git can take up a lot of space.
- SSH access with admin privileges
curl -so /tmp/edgeos-scripts.tar.gz https://www.github.com/CEnnis91/edgeos-scripts/archive/master.tar.gz
cd /config
mv scripts/ scripts_old/ # if it exists
tar xzvf /tmp/edgeos-scripts.tar.gz
mv edgeos-scripts-master/ scripts/
If you don't have git installed yet:
curl -so /tmp/cfg_debian_packages.sh https://raw.githubusercontent.com/CEnnis91/edgeos-scripts/master/bin/cfg_debian_packages.sh
# don't run random things from the internet without inspecting them first
chmod +x /tmp/cfg_debian_packages.sh
/tmp/cfg_debian_packages.sh
apt-get update && apt-get install -y git
Once git is installed:
cd /config
mv scripts/ scripts_old/ # if it exists
git clone https://github.com/CEnnis91/edgeos-scripts.git scripts/
TODO, I'm not sure what I plan to do with this yet.
- EdgeRouter - Add Debian Packages to EdgeOS
- Install EdgeOS Packages Script V1.0 with Upgrade Persistence
- EdgeRouter - Custom Dynamic DNS
- EdgeRouter - OpenVPN Server
- https://github.com/hungnguyenm/edgemax-acme
- https://github.com/acmesh-official/acme.sh
License is Unlicense.