Something like this?
# The Internet interface. For ADSL or Dialup users, this should be "ppp0".
EXT="ppp0"
Code:
IPTABLES -t nat -A PREROUTING -i $EXT -p tcp --dport 6881:6889 -j DNAT --to 192.168.1.3
IPTABLES -t nat -A PREROUTING -i $EXT -p udp --dport 6881:6889 -j DNAT --to 192.168.1.3