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
- Host: GitHub
- URL: https://github.com/chubin/rpi-homerouter
- Owner: chubin
- Created: 2016-01-03T19:32:45.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-03T20:58:58.000Z (over 9 years ago)
- Last Synced: 2025-04-15T14:06:20.127Z (about 2 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 15
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.txtTo 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