mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-23 20:03:31 +01:00
r16269@catbus: nickm | 2007-10-29 15:41:16 -0400
Apply linux-tor-prio.sh patch from Marco B by way of Mike. svn:r12274
This commit is contained in:
parent
024798ee4c
commit
07621f090f
@ -37,6 +37,11 @@ Changes in version 0.2.0.10-alpha - 2007-1?-??
|
|||||||
to $PREFIX/share/tor/fallback-consensus) for a consensus. This way
|
to $PREFIX/share/tor/fallback-consensus) for a consensus. This way
|
||||||
we start knowing some directory caches.
|
we start knowing some directory caches.
|
||||||
|
|
||||||
|
- Utilities:
|
||||||
|
- Update linux-tor-prio.sh script to allow QoS based on the uid of
|
||||||
|
the Tor prossess. See comments in scripts. (Patch from Marco Bonetti
|
||||||
|
with tweaks from Mike Perry.)
|
||||||
|
|
||||||
o Minor bugfixes:
|
o Minor bugfixes:
|
||||||
- Refuse to start if both ORPort and UseBridges are set. Bugfix
|
- Refuse to start if both ORPort and UseBridges are set. Bugfix
|
||||||
on 0.2.0.x.
|
on 0.2.0.x.
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Written by Mike Perry
|
# Written by Marco Bonetti & Mike Perry
|
||||||
# Based on instructions from Dan Singletary's ADSL Bandwidth Management HOWTO
|
# Based on instructions from Dan Singletary's ADSL Bandwidth Management HOWTO
|
||||||
# http://www.faqs.org/docs/Linux-HOWTO/ADSL-Bandwidth-Management-HOWTO.html
|
# http://www.faqs.org/docs/Linux-HOWTO/ADSL-Bandwidth-Management-HOWTO.html
|
||||||
# This script is Public Domain.
|
# This script is Public Domain.
|
||||||
|
|
||||||
# The following configuration works well for a ~5Mbit tor node. It requires
|
# BEGIN USER TUNABLE PARAMETERS
|
||||||
# that you place your Tor traffic on a separate IP from the rest of your
|
|
||||||
# traffic.
|
|
||||||
|
|
||||||
# BEGIN DEVICE PARAMETERS
|
|
||||||
|
|
||||||
DEV=eth0
|
DEV=eth0
|
||||||
BOX_IP=42.42.42.42
|
|
||||||
TOR_IP=43.43.43.43
|
# NOTE! You must START Tor under this UID. Using the Tor User/Group
|
||||||
|
# config setting is NOT sufficient.
|
||||||
|
TOR_UID=$(id -u tor)
|
||||||
|
|
||||||
|
# If the UID mechanism doesn't work for you, you can set this parameter
|
||||||
|
# instead. If set, it will take precedence over the UID setting. Note that
|
||||||
|
# you need multiple IPs for this to work.
|
||||||
|
#TOR_IP="42.42.42.42"
|
||||||
|
|
||||||
# Average ping to most places on the net, milliseconds
|
# Average ping to most places on the net, milliseconds
|
||||||
RTT_LATENCY=40
|
RTT_LATENCY=40
|
||||||
|
|
||||||
# END DEVICE PARAMETERS
|
|
||||||
# BEGIN UPLOAD PARAMETERS
|
|
||||||
|
|
||||||
# RATE_UP must be less than your connection's upload capacity. If it is
|
# RATE_UP must be less than your connection's upload capacity. If it is
|
||||||
# larger, then the bottleneck will be at your router's queue, which you
|
# larger, then the bottleneck will be at your router's queue, which you
|
||||||
# do not control. This will cause congestion and a revert to normal TCP
|
# do not control. This will cause congestion and a revert to normal TCP
|
||||||
@ -37,8 +37,6 @@ CHAIN=OUTPUT
|
|||||||
#CHAIN=PREROUTING
|
#CHAIN=PREROUTING
|
||||||
#CHAIN=POSTROUTING
|
#CHAIN=POSTROUTING
|
||||||
|
|
||||||
# END UPLOAD PARAMETERS
|
|
||||||
|
|
||||||
MTU=1500
|
MTU=1500
|
||||||
AVG_PKT=900
|
AVG_PKT=900
|
||||||
|
|
||||||
@ -56,18 +54,18 @@ BDP=$(expr $BDP / 4)
|
|||||||
|
|
||||||
if [ "$1" = "status" ]
|
if [ "$1" = "status" ]
|
||||||
then
|
then
|
||||||
echo "[qdisc]"
|
echo "[qdisc]"
|
||||||
tc -s qdisc show dev $DEV
|
tc -s qdisc show dev $DEV
|
||||||
tc -s qdisc show dev imq0
|
tc -s qdisc show dev imq0
|
||||||
echo "[class]"
|
echo "[class]"
|
||||||
tc -s class show dev $DEV
|
tc -s class show dev $DEV
|
||||||
tc -s class show dev imq0
|
tc -s class show dev imq0
|
||||||
echo "[filter]"
|
echo "[filter]"
|
||||||
tc -s filter show dev $DEV
|
tc -s filter show dev $DEV
|
||||||
tc -s filter show dev imq0
|
tc -s filter show dev imq0
|
||||||
echo "[iptables]"
|
echo "[iptables]"
|
||||||
iptables -t mangle -L TORSHAPER-OUT -v -x 2> /dev/null
|
iptables -t mangle -L TORSHAPER-OUT -v -x 2> /dev/null
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -84,8 +82,8 @@ rmmod imq 2> /dev/null > /dev/null
|
|||||||
|
|
||||||
if [ "$1" = "stop" ]
|
if [ "$1" = "stop" ]
|
||||||
then
|
then
|
||||||
echo "Shaping removed on $DEV."
|
echo "Shaping removed on $DEV."
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Outbound Shaping (limits total bandwidth to RATE_UP)
|
# Outbound Shaping (limits total bandwidth to RATE_UP)
|
||||||
@ -115,13 +113,19 @@ tc filter add dev $DEV parent 1:0 prio 0 protocol ip handle 21 fw flowid 1:21
|
|||||||
iptables -t mangle -N TORSHAPER-OUT
|
iptables -t mangle -N TORSHAPER-OUT
|
||||||
iptables -t mangle -I $CHAIN -o $DEV -j TORSHAPER-OUT
|
iptables -t mangle -I $CHAIN -o $DEV -j TORSHAPER-OUT
|
||||||
|
|
||||||
|
|
||||||
# Set firewall marks
|
# Set firewall marks
|
||||||
# Low priority to Tor IP
|
# Low priority to Tor
|
||||||
iptables -t mangle -A TORSHAPER-OUT -s $TOR_IP -j MARK --set-mark 21
|
if [ ""$TOR_IP == "" ]
|
||||||
|
then
|
||||||
|
echo "Using UID-based QoS. UID $TOR_UID marked as low priority."
|
||||||
|
iptables -t mangle -A TORSHAPER-OUT -m owner --uid-owner $TOR_UID -j MARK --set-mark 21
|
||||||
|
else
|
||||||
|
echo "Using IP-based QoS. $TOR_IP marked as low priority."
|
||||||
|
iptables -t mangle -A TORSHAPER-OUT -s $TOR_IP -j MARK --set-mark 21
|
||||||
|
fi
|
||||||
|
|
||||||
# High prio for everything else
|
# High prio for everything else
|
||||||
# Don't bother to use BOX_IP. Box probably has other IPs too...
|
|
||||||
#iptables -t mangle -A TORSHAPER-OUT -s $BOX_IP -j MARK --set-mark 20
|
|
||||||
iptables -t mangle -A TORSHAPER-OUT -m mark --mark 0 -j MARK --set-mark 20
|
iptables -t mangle -A TORSHAPER-OUT -m mark --mark 0 -j MARK --set-mark 20
|
||||||
|
|
||||||
echo "Outbound shaping added to $DEV. Rate for Tor upload at least: ${RATE_UP_TOR}Kbyte/sec."
|
echo "Outbound shaping added to $DEV. Rate for Tor upload at least: ${RATE_UP_TOR}Kbyte/sec."
|
||||||
|
Loading…
Reference in New Issue
Block a user