Results 1 to 15 of 39

Thread: Transmission Setup Help

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    How do I configure my router to access transmission from WAN on port 80?

  2. #2
    Join Date
    Jun 2005
    Location
    Slovenia
    Posts
    736
    First move router web interface to some other port. Eg. 8001 with
    Code:
    nvram set http_lanport=8001
    nvram commit
    reboot
    Then change /opt/etc/init.d/S80busybox_httpd and change
    port to 80.
    This will give you acces from inside. Then configure NAT and
    virtual server to accept connections from WAN.

  3. #3
    I cannot get any torrent to download. I am using a pppoe connection.

    The cgi interface is working ok. I put a torrent in the 'source' directory and push it to active. Then I see in the 'work' directory a folder with the name of the torrent file and transfer.data and transfer.gnuplot. But there is no download activity.

    When I use the update button I get the message: "Unable to find recent transfer stats in syslog" When I look at the syslog there is no transfer data and I only see:
    Code:
    May  6 12:53:26 pppoe-relay[86]: PADI packet from 00:0d:52:68:e5:36 on interface eth1 not permitted
    "netstat -ln" gives no LISTEN on 65534
    "telnet my.outside.ip 65534" gets reply:
    Code:
    Connecting To my.outside.ip...Could not open connection to the host, on port 65534: Connect failed
    My post-firewall looks like this:
    Code:
    #!/bin/sh
    
    #SSH and FTP access from WAN
    iptables -D INPUT -j DROP
    iptables -A INPUT -p tcp --dport 22 -j ACCEPT
    iptables -A INPUT -p tcp --dport 21 -j ACCEPT
    iptables -t nat -A PREROUTING -i vlan1 -p tcp --dport 22 -j DNAT
    --to-destination $4:22
    iptables -t nat -A PREROUTING -i vlan1 -p tcp --dport 21 -j DNAT
    --to-destination $4:21
    iptables -I INPUT 2 -p tcp --syn --dport 443 -j ACCEPT
    
    #Bittorrent
    iptables -A INPUT -i $1 -p tcp --syn --dport 65534 -j ACCEPT
    iptables -t nat -A PREROUTING -i $1 -p tcp --dport 65534 -j DNAT
    --to-destination $4:65534
    iptables -t nat -A PREROUTING -i vlan1 -p tcp --dport 8008 -j DNAT
    --to-destination $4:8008
    
    iptables -A INPUT -j DROP
    The log in the cgi interface shows:
    Code:
    May  6 16:37:07 transmission_watchdog: Transmission daemon restarted!
    May  6 16:37:07 transmissiond[309]: Transmission daemon 0.70-svn (1692) started - http://transmission.m0k.org/
    
    Creating graph...
    
    plot '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):2 title 'download' axis x1y1 with impulses, '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):3 title 'upload' with impulses, '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):4 axis x1y2 title 'load' with lines ^ "/opt/ext/torrent/work/transfer.gnuplot", line 13: warning: Skipping data file with no valid points plot '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):2 title 'download' axis x1y1 with impulses, '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):3 title 'upload' with impulses, '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):4 axis x1y2 title 'load' with lines ^ "/opt/ext/torrent/work/transfer.gnuplot", line 13: warning: Skipping data file with no valid points plot '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):2 title 'download' axis x1y1 with impulses, '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):3 title 'upload' with impulses, '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):4 axis x1y2 title 'load' with lines ^ "/opt/ext/torrent/work/transfer.gnuplot", line 13: warning: Skipping data file with no valid points plot '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):2 title 'download' axis x1y1 with impulses, '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):3 title 'upload' with impulses, '/opt/ext/torrent/work/transfer.data' using ($1+86400++3600):4 axis x1y2 title 'load' with lines ^ "/opt/ext/torrent/work/transfer.gnuplot", line 13: x range is invalid

  4. #4
    Join Date
    Jun 2005
    Location
    Slovenia
    Posts
    736
    check with "ps" if transmisisond is running.

    Note that you must use oleg package feed and not wl500g!

    Code:
    ]$ cat /opt/etc/ipkg.conf 
    #Uncomment the following line for native packages feed (if any)
    #src/gz native http://ipkg.nslu2-linux.org/feeds/optware/oleg/native/stable
    src/gz optware http://ipkg.nslu2-linux.org/feeds/optware/oleg/cross/stable
    dest /opt/ /

  5. #5
    I have checked with "ps" and transmissiond is not running.

    I have also made the described changes tot ipkg.conf and reinstalled transmission with the oleg package feed. Unfortunately still no success.

  6. #6
    Join Date
    Jun 2005
    Location
    Slovenia
    Posts
    736
    It is not enough to reinstall transmission onlyu. You need to reinstall all packages and ipkg-opt and uclibc-opt too!

  7. #7
    Quote Originally Posted by oleo View Post
    It is not enough to reinstall transmission onlyu. You need to reinstall all packages and ipkg-opt and uclibc-opt too!
    When I give the command
    Code:
    ipkg install ipkg-opt
    I get two errors:

    Code:
    Installing ipkg-opt (0.99.163-9) to /opt/...
    Downloading http://ipkg.nslu2-linux.org/feeds/optware/oleg/cross/stable/ipkg-opt_0.99.163-9_mipsel.ipk
    An error ocurred, return value: 2.
    Collected errors:
    Package ipkg-opt wants to install file /opt/bin/ipkg
            But that file is already provided by package ipkg
    Package ipkg-opt wants to install file /opt/bin/update-alternatives
            But that file is already provided by package ipkg

Similar Threads

  1. Torrentflux mod, controls Transmission - can someone package it?
    By nant15 in forum WL-500g Custom Development
    Replies: 5
    Last Post: 14-11-2006, 19:49
  2. How to setup Speedtouch 246 to the Asus wl-700gE
    By ronnylar in forum WL-700g Q&A
    Replies: 5
    Last Post: 14-11-2006, 17:11
  3. What setup should I go for?
    By FixXxeR in forum WL-500gP Q&A
    Replies: 0
    Last Post: 07-08-2006, 19:28
  4. how to setup the router as acces point
    By arnold in forum WL-500g Q&A
    Replies: 0
    Last Post: 22-02-2006, 13:34
  5. Replies: 0
    Last Post: 10-02-2006, 17:46

Posting Permissions

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