Page 15 of 16 FirstFirst ... 513141516 LastLast
Results 211 to 225 of 226

Thread: Controlling (torrent) downloads thru webpage

  1. #211
    Join Date
    Jun 2005
    Location
    Slovenia
    Posts
    736
    From my testing, Yes. Post your experience here.

  2. #212
    yes, it's solved..pity i did not see this sooner. I had a 7.53GB torrent and had to leave the computer on so i could get it all

    anyway, great work

  3. #213
    Well..it seems I to have spotted another bug with torrents bigger than 2GB:

    The download speed is to slow. In fact even other torrents (smaller than 2GB) are affected. An no, it's not the number of seeds. I tried it on my computer and the speed is fine.

    As my understanding goes, it seems that this kind of torrents uses alot of the asus CPU, so it affects the others

  4. #214

    Question Transmission not accepting connections

    My transmission 1.2.2 is not accepting inbound connections.
    I'm using oleg's latest fw on 500gP v2.

    I tried telneting (port 65534) from outside, not working.
    I tried telneting (port 65534) from LAN, not working
    Then I tried telneting (port 65534) from router to itself, still not working:

    Code:
    [admin@router root]$ telnet localhost 65534
    Connection closed by foreign host.
    netstat -lnt gives me this:

    Code:
    [admin@router root]$ netstat -lnt
    Active Internet connections (only servers)
    Proto Recv-Q Send-Q Local Address           Foreign Address         State
    tcp        0      0 0.0.0.0:8008            0.0.0.0:*               LISTEN
    tcp        0      0 192.168.1.1:139         0.0.0.0:*               LISTEN
    tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN
    tcp        0      0 0.0.0.0:21              0.0.0.0:*               LISTEN
    tcp        0      0 0.0.0.0:53              0.0.0.0:*               LISTEN
    tcp        0      0 0.0.0.0:5431            0.0.0.0:*               LISTEN
    tcp        0      0 0.0.0.0:65534           0.0.0.0:*               LISTEN
    tcp        0      0 :::22                   :::*                    LISTEN
    So it is kind of listening on 65534, but still no luck.
    Webinterface is working, download is working @ fine speed, but I'm not connectable, not even from lan

    I have firewall enabled, but both lan to wan and wan to lan filters are disabled. And I guess firewall should not block router from connecting to itself on port 65534.

    What am I doing wrong

    By the way, can someone explain precisely how to open port 65534 ? Is it via " virtual server" or "wan to lan" settings in router's webinterface ? Or is it done by using something else ?

    EDIT:

    I just tried to telnet from router to itself using a port that I know that is not open. Immediately, i get this:

    Code:
    [admin@router root]$ telnet localhost 12654
    telnet: Unable to connect to remote host (127.0.0.1): Connection refused
    But when I do try to connect port 65534, the message does not appear instantly, I need to wait a few seconds before I get the error I already mentioned: Connection closed by foreign host.
    So my guess is that some sort of communication IS being done, but still, transmission does not accept connections...
    Last edited by boss; 27-06-2008 at 22:25.

  5. #215
    Does the outside telnet say the same thing? Because "connection closed by remote host" does not mean it's not working. It means it got through, it connected, then transmission closed the connection. BTW, how fast does that happen? Instantly, after you type something, after a delay?

    If it wasn't listening at all or if the firewall got in the way you would've seen something different:

    Code:
    Trying 127.0.0.1...
    telnet: Unable to connect to remote host: Connection refused
    Or a long wait with no reaction whatsoever.

    Add a -p option to your netstat to make sure it's transmission listening to that port and not something else.

    That's about all I can contribute, since I don't use transmission nowadays anymore.

    Edit: OK, I read your edit. I would guess that transmission accepts the connection, waits for a moment, then sees you're not sending through what you're supposed to (BT protocol stuff) and closes it. So I'd go on to guess that there's another reason you don't get remote connections. Off the top of my head here's several, in no particular order.

    * Your ISP blocks them, either in bulk (any incoming connection in state NEW) or filters specifically for BT peer connections.
    * You've set transmission to only accept encrypted peer connections and the torrents you're on currently don't have any peers on them that are willing to do that.
    * You haven't opened the firewall properly after all. uTorrent has a webpage you can use to test this: enter here and see if you get an OK. Replace the port number in the URL with yours.
    Last edited by wirespot; 27-06-2008 at 23:07.

  6. #216
    Umm.. Everything works fine when I use utorrent on my desktop.. so my ISP is not blocking BT... And I haven't set it even to prefer encrypted connecitons ... so that one's out, too

    I used lynx on my router to access that utorrent's page but it says my port is closed. I don't know if it's closed b/c lynx can't support this kind of check, or is it closed for real

    Anyways, what's the right place to set up a rule to allow 65534 to the router ?

    "Virtual server" or "wan to lan filters" or maybe something else ?

  7. #217
    Not "Virtual server", that's for opening ports on computers in your LAN to the outside. (Which brings me to an interesting question; you say uTorrent on your computer works, but how does IT get remote connections? Use the port test button in the uTorrent config.)

    I think the easiest way is to run this command on the router:

    Code:
    iptables -I INPUT 1 -p tcp -i vlan1 \
    --syn --dport 65534 -j ACCEPT
    If you want to run it automatically after reboot put it in /usr/local/sbin/post-firewall, and it's recommended to replace vlan1 with "$1" if you do.

    What this does is tell the firewall to allow connections in state NEW (TCP flag "syn") on port 65534, on the external router interface (vlan1). The rest is already taken care of, the firewall by default will allow connections to work once they're established.

    You sure you don't wanna consider rtorrent? You can run it in the background, is one of the most advanced console clients, there are remote graphical interfaces for it and I've had no trouble with it for a while now.

  8. #218
    Actually, the tracker I mainly download from has some client restrictions, so I'm stuck with transmission.

    As of uTorrent, I did do the forward in "virtual server" section and it worked like charm.

    I will do the iptables trick, but I think it is gonna turn bad luck too, since transmission is not responding on 65534 when testing with telnet (although it should do, as I red before somewhere here on the forums).....


    EDIT:

    I did set the iptables as instructed here, but still no outgoing traffic. I tried with openOffice torrent file, which has enough seeders and leechers, but no outgoing traffic from my side.

    Transmission is still not accepting connection when I try to telnet on port 65534.
    Is there something I'm missing here ?

    Edit #2:

    I forgot to mention, after setting iptables in post-firewall, I do get port tested OK on utorrent port testing page. So my router is ready to receive packets but refuses to do so. Please help
    Last edited by boss; 28-06-2008 at 11:32.

  9. #219
    Is it possible that nobody ever had the similar problem ?

    I really need some help on this one

  10. #220
    At this point I'd say it's most likely a problem with transmission itself. So double-check your settings and reread the transmission tutorials on the forum, that's about all the help I can give you.

  11. #221
    I think I'll reinstall everything from scratch, perhaps I made a mistake somewhere..

  12. #222
    Join Date
    Nov 2004
    Location
    Sweden
    Posts
    259
    Quote Originally Posted by wengi View Post

    syslog is running and transmissiond is reporting to /opt/var/log/messages.
    so far, so good.

    The strange thing: There are no entries like

    Code:
    Feb 19 08:30:06 transmissiond[2078]: 1171870206 4 dl 145.39 ul 24.87 ld 1.23
    Feb 19 08:35:06 transmissiond[2078]: 1171870506 4 dl 188.69 ul 25.14 ld 1.27
    Feb 19 08:40:06 transmissiond[2078]: 1171870806 4 dl 172.64 ul 25.66 ld 1.48
    I only see start and stop messages of transmissiond.
    Webinterface shows 'Unable to find recent transfer stats in syslog'

    Any idea?
    I suffered from the same. It seems I had a uclibc-opt related problem. The following lines solved it.

    Code:
    mv /opt/etc/ipkg.conf /opt/etc/ipkg.old
    /bin/echo "src unslung http://ipkg.nslu2-linux.org/feeds/optware/oleg/cross/stable" > /opt/etc/ipkg.conf
    /bin/echo "dest root /" >> /opt/etc/ipkg.conf
    ipkg update && ipkg install uclibc-opt && /usr/bin/awk '/^Package:/{system("ipkg install -force-reinstall -force-defaults " $2)}' /opt/lib/ipkg/status

  13. #223
    Is it normal to have transmission runnning three times - each time consuming 8MB of RAM?

    Code:
      PID TTY      STAT   TIME  MAJFL   TRS   DRS   RSS %MEM COMMAND
      135 ?        S      0:00     21  1179  1520   244  0.8 /sbin/syslogd -m 0 -O /
      141 ?        Ss     0:00     22    65   910   332  1.1 /opt/sbin/cron
      150 ?        Ss     0:00     50   174  1197   300  0.9 /opt/sbin/xinetd -pidfi
      162 ?        Ss     0:00     65   771  1500   636  2.1 /opt/sbin/nmbd -D
      168 ?        S      0:00    143   535  5292  3016  9.9 /opt/bin/transmission-d
      169 ?        S      0:00      0   535  5292  3016  9.9 /opt/bin/transmission-d
      170 ?        S      7:56    138   535  5292  3016  9.9 /opt/bin/transmission-d
      280 ?        Ss     0:00     20  1998  1601   284  0.9 /opt/sbin/smbd -D
      393 ?        Ss     0:01     57   327  1504   400  1.3 dropbear
      394 pts/0    Ss     0:00    118  1179  1556   492  1.6 -sh
      413 pts/0    R+     0:00    105    69  1374   472  1.5 ps -xv
    transmission is being started as
    Code:
    /opt/bin/transmission-daemon -g /opt/etc/transmision
    (my config dir) - i used wpte's scripts from http://wl500g.info/showthread.php?t=15589 - start using script in /opt/etc/init.d

    so is it normal that transmission consumes so much memory or am I doing something wrong?

    Thanx

  14. #224
    Do you by any chance have 3 torrents running? If I recall correctly, it will spawn one instance for each one.

    The memory readout is misleading. Much of it is shared among instances.

  15. #225
    No...the readings are the same for none or 5 torrents running. Even just after the system boot when no torrent is running. Anyway, the memory consumption is quite bad - 30M with no significant difference between 0 or 5 torrents running.

Page 15 of 16 FirstFirst ... 513141516 LastLast

Similar Threads

  1. Torrent clients - needed help with rtorrent compilation
    By sponsor79 in forum WL-500g Custom Development
    Replies: 2
    Last Post: 18-10-2006, 00:11
  2. torrent & ports
    By ros in forum WL-500g Q&A
    Replies: 6
    Last Post: 18-07-2006, 07:43
  3. Bandwidth Management wie kann ich für 1 PC nur Browser zulassen und keine Downloads
    By silver_ch in forum German Discussion - Deutsch (DE)
    Replies: 1
    Last Post: 02-06-2006, 11:32
  4. Torrent Client op WL500G
    By pietjebell in forum Dutch Discussion - Nederlands
    Replies: 3
    Last Post: 24-05-2006, 14:56

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •