summaryrefslogtreecommitdiffstats
path: root/remote/modules/redsocks
diff options
context:
space:
mode:
authorJonathan Bauer2013-07-31 17:25:22 +0200
committerJonathan Bauer2013-07-31 17:25:22 +0200
commit91c66e022325637b577eb6f2d9046c1ce8b42d00 (patch)
tree34473e1e83e781ed8a8ab6ffa43c167cf8b194ac /remote/modules/redsocks
parentrestructuring (diff)
downloadtm-scripts-91c66e022325637b577eb6f2d9046c1ce8b42d00.tar.gz
tm-scripts-91c66e022325637b577eb6f2d9046c1ce8b42d00.tar.xz
tm-scripts-91c66e022325637b577eb6f2d9046c1ce8b42d00.zip
restructing
Diffstat (limited to 'remote/modules/redsocks')
-rwxr-xr-xremote/modules/redsocks/data/opt/openslx/bin/setup_proxy51
1 files changed, 0 insertions, 51 deletions
diff --git a/remote/modules/redsocks/data/opt/openslx/bin/setup_proxy b/remote/modules/redsocks/data/opt/openslx/bin/setup_proxy
deleted file mode 100755
index 6c39c077..00000000
--- a/remote/modules/redsocks/data/opt/openslx/bin/setup_proxy
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/bin/bash
-
-for wait in 1 1 2 3 4 6 8 10 end; do
- grep '^#_RCONFIG_TAG$' /opt/openslx/config > /dev/null && echo "Config found!" && break
- [ "$wait" == "end" ] && echo "Giving up!" && exit 1
- echo "No config yet..."
- sleep $wait
-done
-
-. /opt/openslx/config || echo "Error sourcing config for setup_proxy"
-
-[ -z "$SLX_PROXY_MODE" -o "x$SLX_PROXY_MODE" == "xoff" ] && echo "proxy mode disabled." && exit 0
-
-PROXY=off
-if [ "$SLX_PROXY_MODE" == "on" ]; then
- PROXY=on
-elif [ "$SLX_PROXY_MODE" == "auto" -a -n "$SLX_PXE_CLIENT_IP" ]; then
- [[ "$SLX_PXE_CLIENT_IP" =~ ^10\. ]] && PROXY=on
- [[ "$SLX_PXE_CLIENT_IP" =~ ^192\.168\. ]] && PROXY=on
- [[ "$SLX_PXE_CLIENT_IP" =~ ^172\.[123] ]] && PROXY=on
-fi
-
-[ "$PROXY" == "off" ] && echo "Proxy mode not required." && exit 0
-
-sed -i "s/%%PROXY_IP%%/$SLX_PROXY_IP/g;s/%%PROXY_PORT%%/$SLX_PROXY_PORT/g;s/%%PROXY_TYPE%%/$SLX_PROXY_TYPE/g" /etc/redsocks.conf
-
-mkdir -p /run/redsocks
-chown redsocks:redsocks /run/redsocks
-systemctl start redsocks
-
-iptables -t nat -N REDSOCKS
-iptables -t nat -A REDSOCKS -d "$SLX_PROXY_IP" -j RETURN
-iptables -t nat -A REDSOCKS -d 0.0.0.0/8 -j RETURN
-iptables -t nat -A REDSOCKS -d 10.0.0.0/8 -j RETURN
-iptables -t nat -A REDSOCKS -d 127.0.0.0/8 -j RETURN
-iptables -t nat -A REDSOCKS -d 169.254.0.0/16 -j RETURN
-iptables -t nat -A REDSOCKS -d 172.16.0.0/12 -j RETURN
-iptables -t nat -A REDSOCKS -d 192.168.0.0/16 -j RETURN
-iptables -t nat -A REDSOCKS -d 224.0.0.0/4 -j RETURN
-iptables -t nat -A REDSOCKS -d 240.0.0.0/4 -j RETURN
-if [ -n "$SLX_PROXY_BLACKLIST" ]; then
- for ADDR in $SLX_PROXY_BLACKLIST; do
- iptables -t nat -A REDSOCKS -d "$ADDR" -j RETURN
- done
-fi
-iptables -t nat -A REDSOCKS -p tcp -j REDIRECT --to-port 12345
-iptables -t nat -A PREROUTING -p tcp -j REDSOCKS
-iptables -t nat -A OUTPUT -p tcp -j REDSOCKS
-iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE
-iptables -A INPUT -i br0 -p tcp --dport 12345 -j DROP
-