connect to my torrent client from anyware

Hi and good morning, i need to connect to my torrent client from internet.
but i have no idea of what shoud i do.

Here is dome details:

my router address is 192.168.88.1
my pc with torrent is 192.168.88.25
my client is qBittorrent and it has a web gui on port 8080
qBittorrent can connect to no-ip.com (maybe can help)

please can someone tell me what can i do?
i really don’t know nothing about this…

THANKS
sofferenza.jpg

i try this

/ip firewall nat add chain=dstnat dst-port=8080 action=dst-nat 
protocol=tcp to-address=192.168.88.25 to-port=8080

but nothing works :frowning:

Is the remote option enabled in your torrent client?

Also is the application allowed through your windows firewall.

Also, How are you getting your public IP?

It could be that your router is behind a nat from the ISP.

Yes, i have enabled web gui on qBittorrent client

Yes i allowed the windows firewall

I configure my bittorrent client to use my no-ip.com account, and i think that it check the public ip address automatically

my isp open to me ports from 1 to 65535, it should be enough.

Thanks

That should work, but it’s going to block outbound connections to anything on port 8080…

Your dstnat chain should have this rule:
chain=dstnat in-interface=ether1 protocol=tcp dst-port=8080 action=dst-nat to-address=192.168.88.25

(no need to specify to-port because you’re not trying to map the port to something else)

Also, make sure this traffic isn’t being blocked by the filter table.

If there is a default drop rule in the forward chain, make sure that before it, you have this rule:
chain=forward action=accept protocol=tcp dst-port=8080 dst-address=192.168.88.25
(note that this rule needs to use the inside IP address because by the time the filter forward chain runs, dstnat has already taken place)