Static NAT with RB951-2HnD

I am trying to test static NAT with RB951-2HnD. Problem is that I’m not sure that I have connected it all correctly or if I did the configuration in correct way OR even if I can test it this way, with only 1 router.

PC and laptop are connected to router as shown in the picture:
static_nat.jpg
and router configuration is like this (wifi is disabled):

/interface wireless
set [ find default-name=wlan1 ] band=2ghz-b/g/n channel-width=20/40mhz-ht-above distance=indoors ht-rxchains=0,1 ht-txchains=0,1 l2mtu=2290 \
    mode=ap-bridge ssid=MikroTik-30E1B5
/interface wireless security-profiles
set [ find default=yes ] authentication-types=wpa-psk,wpa2-psk mode=dynamic-keys wpa-pre-shared-key=4AC7042FD751 wpa2-pre-shared-key=\
    4AC7042FD751
/ip hotspot user profile
set [ find default=yes ] idle-timeout=none keepalive-timeout=2m mac-cookie-timeout=3d

/ip address
add address=10.10.10.1/24 interface=ether5 network=10.10.10.0
add address=192.168.5.1/24 interface=ether4 network=192.168.5.0

/ip firewall address-list
add address=10.10.10.0/24 list=LAN

/ip firewall filter
add chain=forward comment="default configuration" connection-state=established
add chain=forward comment="default configuration" connection-state=related
add action=drop chain=forward comment="default configuration" connection-state=invalid

/ip firewall nat
add action=src-nat chain=srcnat src-address=10.10.10.2 to-addresses=192.168.5.1
add action=dst-nat chain=dstnat dst-address=192.168.5.1 to-addresses=10.10.10.2

/system leds
set 0 interface=wlan1

I would appreciate any help in this matter. Thank you!

what do you want to achieve exactly? A 1:1 port mapping between 10.10.10.1 and 10.10.10.2?