1. transmission requires quite a lot of cpu from the router (I guess that's the ip-filter), so at higher speeds the cpu is just too slow to handle that. It also depends on the size of the torrent you're downloading since big files require lot of hard drive activity, also limiting speed... this is the same case with starting many torrents at the same time
rtorrent possibly can download a bit faster, since it doesn't use much cpu compared to transmission.
2. are there leechers available?
yes? then you have to check your modem on port-forwarding, and make sure you have the ip-tables firewall set up:
should be looking something like this:
you should edit [port] as the port you are using (can be found in the transmission config file).PHP Code:#!/bin/sh
iptables -D INPUT -j DROP
# Torrent client rules
# transmission
iptables -A INPUT -p tcp --dport [port] -j ACCEPT
iptables -A INPUT -p udp --dport [port] -j ACCEPT
# rtorrent
iptables -I INPUT 1 -p tcp -i "$1" --syn --dport [port low]:[port high]0 -j ACCEPT
iptables -I INPUT 1 -p udp -i "$1" --dport [port] -j ACCEPT
iptables -A INPUT -j DROP
[port low]:[port high] is a port range in rtorrent



Reply With Quote

