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

https://github.com/chubin/rpi-homerouter

Small management app for home router based on Raspberry Pi
https://github.com/chubin/rpi-homerouter

Last synced: about 2 months ago
JSON representation

Small management app for home router based on Raspberry Pi

Awesome Lists containing this project

README

        

## Routing setup

You can add it to /etc/network/interfaces or in oher network initialization files:

ip rule add from 192.168.0.3 table t0
ip rule add from 192.168.2.3 table t1
ip route add default via 192.168.0.1 table t0
ip route add default via 192.168.2.1 table t1

## Installation

apt-get install python-dev
pip install -r requirements.txt

To install systemd-service file:

cp share/rpi-homerouter.service /etc/systemd/system/rpi-homerouter.service
systemctl enable rpi-homerouter.service
systemctl start rpi-homerouter.service