port forwarding and NAT

As simple as this
You can see my network in picture above my problem is in port forwarding for using torrent I add port forwarding to the ADSL modem and as you can see in picture that I have to configure NAT in MikroTik OS can anyone help me just to know how to let torrent work in 192.168.7.50 … and thanx for every one how can help me

this is the rules i use in ip-firewall-nat
1 ;;; Forward port 1750-1752 TCP (utorrent) from WAN to my laptop
chain=dstnat action=dst-nat to-addresses=10.255.255.251
to-ports=1750-1752 in-interface=wan dst-port=1750-1752 protocol=tcp

2 ;;; Forward port 1750-1752 UDP (utorrent) from WAN to my laptop
chain=dstnat action=dst-nat to-addresses=10.255.255.251
to-ports=1750-1752 in-interface=wan dst-port=1750-1752 protocol=udp

10.255.255.251 is the is of my laptop
wan interface is the interface connected to my modem

the only thing that can go wrong with your configuration is that I’m not sure that forwarding a range of ports from your modem to only one port in MT will work…

/ip firewall nat
add action=dst-nat chain=dstnat comment=“” disabled=no dst-address=192.168.10.1 dst-port=6881-6999 protocol=tcp to-addresses=192.168.7.50 to-ports=6881-6999
add action=dst-nat chain=dstnat comment=“” disabled=no dst-address=192.168.10.1 dst-port=6881-6999 protocol=udp to-addresses=192.168.7.50 to-ports=6881-6999

it seems that he doesn’t forward these port on the same ones…

Thanxx a lot Letni I own you one … I used your solution .. and it works … thanxx again
And thanxx for you antefe for your help…

i will try this and let all know