What's new

Wan acess Transmission

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

I tried:


"rpc-whitelist": "*.*.*.*",
"rpc-whitelist-enabled": false,

and


"rpc-whitelist": "*.*.*.*",
"rpc-whitelist-enabled": true,


but no sucess...strange, from PC and iPad it works...
 
I'm trying to access Transmission web through WAN and I can't get it to work.

My firewall-start file looks like this (-rwxr-xr-x /jffs/scripts/firewall-start):

#!/bin/sh
iptables -I INPUT -p tcp --destination-port 51413 -j ACCEPT
iptables -I INPUT -p udp --destination-port 51413 -j ACCEPT
ifconfig br0:trans 192.168.1.10 up
sh /jffs/scripts/firewall start skynetloc=/tmp/mnt/sda1/skynet # Skynet Firewall Addition
iptables -I INPUT -p tcp --destination-port 9091 -j ACCEPT

My settings.json looks like this:
"alt-speed-down": 50,
"alt-speed-enabled": false,
"alt-speed-time-begin": 540,
"alt-speed-time-day": 127,
"alt-speed-time-enabled": false,
"alt-speed-time-end": 1020,
"alt-speed-up": 50,
"bind-address-ipv4": "192.168.1.10",
"bind-address-ipv6": "::",
"blocklist-enabled": false,
"blocklist-url": "http://list.iblocklist.com/?list=bt_level1",
"cache-size-mb": 2,
"dht-enabled": true,
"download-dir": "/mnt/sda1/downloads",
"download-queue-enabled": true,
"download-queue-size": 5,
"encryption": 0,
"idle-seeding-limit": 30,
"idle-seeding-limit-enabled": false,
"incomplete-dir": "/mnt/sda1/downloads",
"incomplete-dir-enabled": false,
"lpd-enabled": true,
"message-level": 1,
"peer-congestion-algorithm": "",
"peer-id-ttl-hours": 6,
"peer-limit-global": 50000,
"peer-limit-per-torrent": 3000,
"peer-port": 51413,
"peer-port-random-high": 65535,
"peer-port-random-low": 49152,
"peer-port-random-on-start": false,
"peer-socket-tos": "lowcost",
"pex-enabled": true,
"port-forwarding-enabled": false,
"preallocation": 1,
"prefetch-enabled": false,
"queue-stalled-enabled": true,
"queue-stalled-minutes": 30,
"ratio-limit": 2,
"ratio-limit-enabled": false,
"rename-partial-files": true,
"rpc-authentication-required": true,
"rpc-bind-address": "0.0.0.0",
"rpc-enabled": true,
"rpc-host-whitelist": "",
"rpc-host-whitelist-enabled": false,
"rpc-password": "PASSWORD",
"rpc-port": 9091,
"rpc-url": "/transmission/",
"rpc-username": "USERNAME",
"rpc-whitelist": "*.*.*.*",
"rpc-whitelist-enabled": true,
"scrape-paused-torrents-enabled": true,
"script-torrent-added-enabled": false,
"script-torrent-added-filename": "",
"script-torrent-done-enabled": false,
"script-torrent-done-filename": "",
"seed-queue-enabled": false,
"seed-queue-size": 10,
"speed-limit-down": 100,
"speed-limit-down-enabled": false,
"speed-limit-up": 100,
"speed-limit-up-enabled": false,
"start-added-torrents": true,
"trash-original-torrent-files": true,
"umask": 18,
"upload-slots-per-torrent": 14,
"utp-enabled": true,
"watch-dir": "/opt/etc/transmission/watchdir",
"watch-dir-enabled": true

I can see that the router is listening on port 9091:

Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:9091 0.0.0.0:* LISTEN

I have both Diversion and Skynet installed and the next step after web access to Transmission is to set it up to work behind VPN.

I have no problem using Transmission web inside my LAN on port 9091, but from WAN 9091 is closed, so it looks like a firewall issue?
 
I have no problem using Transmission web inside my LAN on port 9091, but from WAN 9091 is closed, so it looks like a firewall issue?

It's not a firewall issue...

Understand what these config setting really mean in the transmission config file...

Code:
"rpc-authentication-required": true,
"rpc-bind-address": "0.0.0.0",
"rpc-enabled": true,
"rpc-host-whitelist": "",
"rpc-host-whitelist-enabled": false,
"rpc-password": "PASSWORD",
"rpc-port": 9091,
"rpc-url": "/transmission/",
"rpc-username": "USERNAME",
"rpc-whitelist": "*.*.*.*",
"rpc-whitelist-enabled": true,

You can always review here...

https://github.com/transmission/transmission/wiki/Editing-Configuration-Files

Just keep in mind, any service on the WAN can be problematic...
 
It's not a firewall issue...

Understand what these config setting really mean in the transmission config file...

Code:
"rpc-authentication-required": true,
"rpc-bind-address": "0.0.0.0",
"rpc-enabled": true,
"rpc-host-whitelist": "",
"rpc-host-whitelist-enabled": false,
"rpc-password": "PASSWORD",
"rpc-port": 9091,
"rpc-url": "/transmission/",
"rpc-username": "USERNAME",
"rpc-whitelist": "*.*.*.*",
"rpc-whitelist-enabled": true,

You can always review here...

https://github.com/transmission/transmission/wiki/Editing-Configuration-Files

Just keep in mind, any service on the WAN can be problematic...

When I opened port 9091 in the AC86u GUI it worked, didnt need to re-edit settings.json. Now i just need to configure it to work behind VPN.
 

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top