Hey guys,
since few days im trying to configure my Mikrotik RB941-2nD as OpenVPN wifi client. I successfully created OpenVPN server behind ISP router, i can access lan network of this server from anywhere (tested on OpenVPN connect on Windows and Android), even when i “import .ovpn” file to my fresh/factory reset send MT RB941-2nD it can establish connection with that first MT OpenVPN Server but i dont know how to follow with configuration that second MT will route all VPN connection through wlan1.
Basically what i want to achieve is to connect to my second MT OVPN Client through wifi and obtain Public IP from my first MT OVP Server.
Here is how i imagine how it looks or should look like

Here is my mikrotik client config
[admin@MikroTik] > export compact hide-sensitive
1970-01-02 00:13:11 by RouterOS 7.16.1
software id = B2U4-RC51
model = RB941-2nD
/interface bridge
add name=bridge1
/interface wireless
set [ find default-name=wlan1 ] disabled=no mode=ap-bridge ssid=MikroTik
/interface ovpn-client
add auth=null certificate=client cipher=aes256-gcm connect-to=name.duckdns.org mac-address=FE:21:4F:0B:E8:E8 name=ovpn-import86527 user=wire
/interface list
add name=WAN
add name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/interface bridge filter
add action=drop chain=input dst-port=68 in-interface=wlan1 ip-protocol=udp mac-protocol=ip
/interface bridge port
add bridge=bridge1 interface=wlan1
add bridge=bridge1 interface=ether1
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether4
/interface list member
add interface=wlan1 list=WAN
add interface=ether1 list=LAN
add interface=ether2 list=LAN
add interface=ether3 list=LAN
add interface=ether4 list=LAN
/ip dhcp-client
add interface=bridge1
/system note
set show-at-login=no
[admin@MikroTik] > ip address/
[admin@MikroTik] /ip/address> print
Flags: D - DYNAMIC
Columns: ADDRESS, NETWORK, INTERFACE
ADDRESS NETWORK INTERFACE
0 D 192.168.1.17/24 192.168.1.0 bridge1
1 D 10.110.1.240/24 10.110.1.0 ovpn-import86527
[admin@MikroTik] /ip/address> ..
[admin@MikroTik] /ip> route/
[admin@MikroTik] /ip/route> print
Flags: D - DYNAMIC; A - ACTIVE; c - CONNECT, d - DHCP, v - VPN
Columns: DST-ADDRESS, GATEWAY, DISTANCE
DST-ADDRESS GATEWAY DISTANCE
DAd 0.0.0.0/0 192.168.1.1 1
DAv 0.0.0.0/1 10.110.1.1 0
DAc 10.110.1.0/24 ovpn-import86527 0
DAv 95.49.185.167/32 192.168.1.1 0
DAv 128.0.0.0/1 10.110.1.1 0
DAc 192.168.1.0/24 bridge1 0
>
I really appreciate any help. Thanks!