Bekijk de volledige versie : wl-500gp & transmissiom with web gui
Hello
Is anybody hier, who can help me with install transmission with web gui (step by step)? i'm trying with this http://wl500g.info/showthread.php?t=10307&page=34 but it's doesnt work...
(sorry for my english. I'm from poland and i don't have a lot of english lessons)
Hello
Is anybody hier, who can help me with install transmission with web gui
Try this (http://wl500g.info/showpost.php?p=108370&postcount=30).
If it doesn't wark read whole thread.
http://wl500g.info/showpost.php?p=60933&postcount=4
wengi made an update to his how-to for transmission, works fine here;)
[admin@wl-500g root]$ /opt/etc/init.d/S90transmission-daemon start
updating blocklist, ~4MB
starting transmission
/opt/bin/transmission-daemon: illegal option -- g
usage: transmission-daemon [-dfh] [-p file] [-s file]
Transmission 0.82 (r) http://transmission.m0k.org/
A free, lightweight BitTorrent client with a simple, intuitive interface
-d --debug Print data send and received, implies -f
-f --foreground Run in the foreground and log to stderr
-h --help Display this message and exit
-p --pidfile <path> Save the process id in a file at <path>
-s --socket <path> Place the socket file at <path>
To add torrents or set options, use the transmission-remote program.
/opt/etc/init.d/S90transmission-daemon: /opt/etc/init.d/S90transmission-daemon: 36: /tmp/harddisk/transmission/config: Permission denied
This is from putty.. I go to http://10.0.0.15:9091 and nothing...
Why do you use an ancient version of transmission if i may ask?
hmmm i don't now... i do "ipkg install transmission".. maybe I do upgrade...
you first have to do this:
ipkg update
and then
ipkg install transmission
that don't help me... but i format hdd to ext3 and everything work ok :) (at first i have fat32)
Evengard
10-02-2009, 19:32
All is OK... But it seems that the transmission port is blocked by IPTables... Or by something else... Because the upload speed is about 3kb/sec... How can I fix it?
NOTE: on Windows under Azureus same torrent - nearly 200kb/sec
ADD:
Apparently fixed with:
#!/bin/sh
iptables -I SECURITY -p udp --dport 51413 -j RETURN
accept:proto=tcp port=51413
accept:proto=udp port=51413
iptables -I INPUT -p tcp --dport 51413 -j ACCEPT
iptables -I INPUT -p udp --dport 51413 -j ACCEPT
in /usr/local/sbin/post-firewall
bibi-phoque
11-02-2009, 14:45
I'm a newbie on iptables but your post-firewall seems too complicated. Keep it simple (from Wengi's tutorial):
#!/bin/sh
iptables -I INPUT -m tcp -p tcp --dport 9091 -j ACCEPT
iptables -I INPUT -m tcp -p tcp --dport 51413 -j ACCEPT
Try the following command to see if the port is indeed open:
lynx http://www.utorrent.com:16000/testport2.php?port=51413
If it's not, add a virtual server in the webadmin GUI (51413 fowarded to 192.168.1.1).
Don't know if this is the recommended way but it works for me. I can even connect from work but to do this you need to modify the config file to add the IP address.
Yann
Evengard
12-02-2009, 20:42
I'm a newbie on iptables but your post-firewall seems too complicated. Keep it simple (from Wengi's tutorial):
#!/bin/sh
iptables -I INPUT -m tcp -p tcp --dport 9091 -j ACCEPT
iptables -I INPUT -m tcp -p tcp --dport 51413 -j ACCEPT
Try the following command to see if the port is indeed open:
lynx http://www.utorrent.com:16000/testport2.php?port=51413
If it's not, add a virtual server in the webadmin GUI (51413 fowarded to 192.168.1.1).
Don't know if this is the recommended way but it works for me. I can even connect from work but to do this you need to modify the config file to add the IP address.
Yann
I have tried the "iptables -I INPUT -m tcp -p tcp --dport 51413 -j ACCEPT" only
But the port was still closed...
"If it's not, add a virtual server in the webadmin GUI (51413 fowarded to 192.168.1.1)." also tried + the iptables command as you... Didn't worked for me. It was still closed... I found this solution in Russian topics and it is working perfectly, so why change while it's working? )))
bibi-phoque
13-02-2009, 13:28
Another thing to try, remove the dmz (if you have one setup in the GUI). It seems to conflict with my post-firewall in some way. Maybe it's specific to my router but removing this dmz solved a lot of my problems.
Evengard
16-02-2009, 19:55
Nope, no DMZ configured )