Hi mogabyte,
It is ALWAYS important to see what the reality is and not what you think how reality is. Even though you see a setting in a configuration has been turned on, look at the reality if it is indeed turned on. I speak with experience as an Linux Engineer in my corporate life.
Could you do a
ss -tulpn | grep deluged
. This is to determine what kind of ports deluged is listening on.
It will look something like this.
Code: Select all
<USER>@<SYSTEM>:# ss -tulpn | grep deluged
udp UNCONN 0 0 <IPADDRESS>:54988 0.0.0.0:* users:(("deluged",pid=282459,fd=23))
udp UNCONN 0 0 0.0.0.0:6771 0.0.0.0:* users:(("deluged",pid=282459,fd=18))
udp UNCONN 0 0 0.0.0.0:6771 0.0.0.0:* users:(("deluged",pid=282459,fd=17))
udp UNCONN 0 0 <IPADDRESS>:1900 0.0.0.0:* users:(("deluged",pid=282459,fd=20))
udp UNCONN 0 5888 <IPADDRESS>%enP4p65s0:60407 0.0.0.0:* users:(("deluged",pid=282459,fd=14))
udp UNCONN 0 0 127.0.0.1%lo:60407 0.0.0.0:* users:(("deluged",pid=282459,fd=12))
udp UNCONN 0 0 <IPADDRESS>:45431 0.0.0.0:* users:(("deluged",pid=282459,fd=19))
tcp LISTEN 0 50 0.0.0.0:58846 0.0.0.0:* users:(("deluged",pid=282459,fd=22))
tcp LISTEN 0 3000 <IPADDRESS>%enP4p65s0:60407 0.0.0.0:* users:(("deluged",pid=282459,fd=13))
tcp LISTEN 0 3000 127.0.0.1%lo:60407 0.0.0.0:* users:(("deluged",pid=282459,fd=10))
From here on, are you sure on the router side portforwarding has been enabled? Or are you using UPNP? In my case for example i use upnp.
This is on my router (i use OpenWRT with miniupnp as the OS for my Router)
Active UPnP Redirects
Code: Select all
<USER>@<ROUTER>:~# cat /tmp/run/miniupnpd.leases
TCP:60407:<IPADDRESS DELUGE SYSTEM>:60407:1707758209:Deluge/2.1.1 libtorrent/2.0.5.0
UDP:60407:<IPADDRESS DELUGE SYSTEM>:60407:1707758209:Deluge/2.1.1 libtorrent/2.0.5.0
So now you can see the clear process of traffic coming through my router on
port 60407 and being send to my deluge system with
port 60407 and my deluge system is listening on that ipadress with interface and
port 60407 with both protocols (udp & tcp)