yes I see, sorry, I haven't payed attention to it the first time..
this example forwards all ports from the public ip of 78.134.1.1 to a private ip of 192.168.2.250:
chain=srcnat src-address=192.168.2.250 action=src-nat to-addresses=78.134.1.1 to-ports=0-65535
chain=dstnat dst-address=78.134.1.1 action=dst-nat to-addresses=192.168.2.250 to-ports=0-65535
you can do something like this if you want specific ports only:
chain=srcnat src-address=192.168.2.250 action=src-nat to-addresses=78.134.1.1 to-ports=5900,63392,8000,80001,1723
chain=dstnat dst-address=78.134.1.1 action=dst-nat to-addresses=192.168.2.250 to-ports=5900,63392,8000,80001,1723