Hello outsidefactor,
Can you do a
Code: Select all
cat core.conf | grep -E "natpmp|upnp"
Output will look like this:
Code: Select all
<USER>@<SYSTEM>:<directory path to deluge directory># cat core.conf | grep -E "natpmp|upnp"
"natpmp": true,
"upnp": true,
And also do a
This way you will be able to see all the current connections of deluged (deluge daemon). The tcp and udp connections. In the output down here you see in my case how it looks like.
There you see for example
58846
this is the daemon port, but you also see other ports. My
random Active port at this moment was
51218
and this indeed is also visible in the output.
Output of the command.
Code: Select all
<USER>@<SYSTEM>:~# ss -tulpn | grep deluged
udp UNCONN 0 0 <IPADDRES>:1900 0.0.0.0:* users:(("deluged",pid=1450,fd=255))
udp UNCONN 0 0 <IPADDRES>%enP4p65s0:51218 0.0.0.0:* users:(("deluged",pid=1450,fd=15))
udp UNCONN 0 0 127.0.0.1%lo:51218 0.0.0.0:* users:(("deluged",pid=1450,fd=13))
udp UNCONN 0 0 <IPADDRES>:37078 0.0.0.0:* users:(("deluged",pid=1450,fd=241))
udp UNCONN 0 0 <IPADDRES>:46735 0.0.0.0:* users:(("deluged",pid=1450,fd=367))
udp UNCONN 0 0 0.0.0.0:6771 0.0.0.0:* users:(("deluged",pid=1450,fd=617))
udp UNCONN 0 0 0.0.0.0:6771 0.0.0.0:* users:(("deluged",pid=1450,fd=592))
tcp LISTEN 0 3000 <IPADDRES>%enP4p65s0:51218 0.0.0.0:* users:(("deluged",pid=1450,fd=14))
tcp LISTEN 0 3000 127.0.0.1%lo:51218 0.0.0.0:* users:(("deluged",pid=1450,fd=12))
tcp LISTEN 0 50 0.0.0.0:58846 0.0.0.0:* users:(("deluged",pid=1450,fd=23))
If this also works as it should be. Could you make sure UPNP is turned on in your Router. Often routers of the ISP have problems. Outdated firmware (bugs) or logs that have made the RAM become full (in such cases just a reboot of the Router would wipe all the logs in the RAM).
You could also test it if you have a old Router that has also a UPNP setting. And you forward all the traffic to that old Router and use that old Router do the UPNP job. This is to be sure if the problem is your ISP Router.
I just recently discovered that my UPNP did not work ( i use openWRT on my Router). It turned out that
miniUPNP
had a bug that it was not getting the public ipaddress. Now the connection works normal.