Initial commit.

This commit is contained in:
2021-05-24 22:18:33 +03:00
commit e2954d55f4
3701 changed files with 330017 additions and 0 deletions

18
ppp/ip-up.d/route-traffic Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
# ppp interface
IFACE="ppp0"
# gazduire.ro
SG="188.214.17.0/24"
VG="188.214.21.0/24"
RG0="188.215.64.0/25"
RG1="188.215.64.128/25"
VPS="91.208.142.0/24"
# lastpass
route add -net ${SG} dev ${IFACE}
route add -net ${VG} dev ${IFACE}
route add -net ${RG0} dev ${IFACE}
route add -net ${RG1} dev ${IFACE}
route add -net ${VPS} dev ${IFACE}