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…
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)