diff options
author | ficus <ficus@robocracy.org> | 2012-09-24 17:41:29 +0200 |
---|---|---|
committer | ficus <ficus@robocracy.org> | 2012-09-24 17:41:29 +0200 |
commit | b6cd6422ab2b6fbea6017a94b90c1a38b2c0ae79 (patch) | |
tree | 609f4ca434112aecce6fd6db3ea3b3c6791ff584 /freedom-maker | |
parent | 509aec268e05287b53c8047b6a99edbc43d7371e (diff) | |
download | torouter-b6cd6422ab2b6fbea6017a94b90c1a38b2c0ae79.tar.gz torouter-b6cd6422ab2b6fbea6017a94b90c1a38b2c0ae79.zip |
remove duplicate firstrun and proxy files
Diffstat (limited to 'freedom-maker')
-rwxr-xr-x | freedom-maker/source/etc/init.d/proxy | 61 | ||||
l--------- | freedom-maker/source/etc/rc2.d/S50proxy | 1 |
2 files changed, 0 insertions, 62 deletions
diff --git a/freedom-maker/source/etc/init.d/proxy b/freedom-maker/source/etc/init.d/proxy deleted file mode 100755 index 901507b..0000000 --- a/freedom-maker/source/etc/init.d/proxy +++ /dev/null @@ -1,61 +0,0 @@ -#! /bin/sh - -### BEGIN INIT INFO -# Provides: proxy -# Required-Start: $network $remote_fs $syslog -# Required-Stop: $remote_fs $syslog -# Default-Start: 2 3 4 5 -# Default-Stop: 0 1 6 -# Short-Description: Proxy for clients. -### END INIT INFO - -set -e - -INTIF1="eth0" -INTIF2="uap0" -EXTIF="eth1" -EXTIP="`/sbin/ifconfig $EXTIF | grep 'inet addr' | awk '{print $2}' | sed -e 's/.*://'`" - -loadModules() { - depmod -a - modprobe ip_tables - modprobe ip_conntrack - modprobe ip_conntrack_ftp - modprobe ip_conntrack_irc - modprobe iptable_nat - modprobe ip_nat_ftp -} - -setProc() { - echo "1" > /proc/sys/net/ipv4/ip_forward - echo "1" > /proc/sys/net/ipv4/ip_dynaddr -} - -configIpTables() { - iptables -P INPUT ACCEPT - iptables -F INPUT - iptables -P OUTPUT ACCEPT - iptables -F OUTPUT - iptables -P FORWARD DROP - iptables -F FORWARD - iptables -t nat -F - - iptables -A FORWARD -i $EXTIF -o $INTIF1 -m state --state ESTABLISHED,RELATED -j ACCEPT - iptables -A FORWARD -i $EXTIF -o $INTIF2 -m state --state ESTABLISHED,RELATED -j ACCEPT - iptables -A FORWARD -i $INTIF1 -o $EXTIF -j ACCEPT - iptables -A FORWARD -i $INTIF2 -o $EXTIF -j ACCEPT - - iptables -t nat -A POSTROUTING -o $EXTIF -j MASQUERADE -} - -case "$1" in - start) - loadModules - setProc - configIpTables - ;; - *) - log_success_msg "Usage: /etc/init.d/proxy {start}" - exit 1 - ;; -esac diff --git a/freedom-maker/source/etc/rc2.d/S50proxy b/freedom-maker/source/etc/rc2.d/S50proxy deleted file mode 120000 index 9855df4..0000000 --- a/freedom-maker/source/etc/rc2.d/S50proxy +++ /dev/null @@ -1 +0,0 @@ -../init.d/proxy
\ No newline at end of file |