You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
489 B
Bash
13 lines
489 B
Bash
#!/bin/bash
|
|
#Routingtabelle ffmyk ist per default nicht erreichbar
|
|
ip -4 route add unreachable default table ffmyk
|
|
ip -6 route add unreachable default table ffmyk
|
|
|
|
#Alles, was mit 0x1 markiert wird gehört zu Tabelle ffmyk
|
|
ip -4 rule add from all fwmark 0x1 table ffmyk
|
|
ip -6 rule add from all fwmark 0x1 table ffmyk
|
|
|
|
#Alles mit Freifunk-IP - woher auch immer - gehlrt zu Tabelle ffmyk
|
|
ip -4 rule add from 10.222.0.0/16 table ffmyk
|
|
ip -6 rule add from 2001:470:cd45:FF00::/56 table ffmyk
|