Matthew Faltys
7 years ago
2 changed files with 17 additions and 2 deletions
@ -1,4 +1,18 @@ |
|||||||
#!/bin/ash |
#!/bin/ash |
||||||
|
|
||||||
openvpn /config.ovpn & |
|
||||||
|
# add killswitch rules |
||||||
|
iptables -A INPUT -i tun+ -j ACCEPT |
||||||
|
iptables -A OUTPUT -o tun+ -j ACCEPT |
||||||
|
iptables -A INPUT -s 127.0.0.1 -j ACCEPT |
||||||
|
iptables -A OUTPUT -d 127.0.0.1 -j ACCEPT |
||||||
|
iptables -A INPUT -p tcp --dport 9091 -j ACCEPT |
||||||
|
iptables -A OUTPUT -p tcp --sport 9091 -j ACCEPT |
||||||
|
iptables -I OUTPUT 1 -m owner --uid-owner root -p udp --dport 53 -j ACCEPT |
||||||
|
iptables -A OUTPUT -m mark ! --mark 0x1 ! -o tun+ -j DROP |
||||||
|
|
||||||
|
# start openvpn with killswitch whitelist mark |
||||||
|
openvpn --mark 1 --config /config.ovpn & |
||||||
|
|
||||||
|
# start transmission |
||||||
transmission-daemon --foreground --config-dir /transmission |
transmission-daemon --foreground --config-dir /transmission |
||||||
|
Loading…
Reference in new issue