PPTP or OVPN Client as Proxy

Hi all, I would like to ask you for help with my MikroTik RB951Ui-2HnD , I need to create PPTP and OVPN Client on Mikrotik and all internet traffic from my local network like WLAN and LAN users goes through PPTP or OVPN connection. also I want to both connections are redundant. if PPTP connection disconnected, OVPN connection established automatically. In my country, most of websites have been blocked and I want to give users full access without any restriction. In fact,Mikrotik establish a PPTP connection to PPTP server for free internet and all user’s internet traffic redirect to PPTP server.
I tried to do this, but it isn’t working. my cofiguration is as follows :

/interface wireless
set [ find default-name=wlan1 ] band=2ghz-onlyn disabled=no frequency=2447
l2mtu=2290 mode=ap-bridge radio-name=Mikrotik ssid=MyNet
/ip pool
add name=dhcp_pool1 ranges=192.168.5.2-192.168.5.254
add name=dhcp_pool2 ranges=192.168.2.5-192.168.2.254
/ip dhcp-server
add address-pool=dhcp_pool1 disabled=no interface=wlan1 lease-time=3d name=
dhcp1
add address-pool=dhcp_pool2 disabled=no interface=ether2 lease-time=3d name=
dhcp2
/interface ovpn-client
add add-default-route=no auth=sha1 certificate=cert_2 cipher=aes128
connect-to=176.126.237.214 disabled=no mac-address=02:2D:43:2B:52:9A
max-mtu=1500 mode=ip name=ovpn-internet password=“” port=443 profile=
default user=a
/interface pptp-client
add add-default-route=no allow=pap,chap,mschap1,mschap2 connect-to=
176.126.237.214 dial-on-demand=yes disabled=no keepalive-timeout=60
max-mru=1450 max-mtu=1450 mrru=1600 name=pptp-internet password=GE3epep
profile=default-encryption user=vpnbook
/ip address
add address=192.168.1.2/24 comment=WAN interface=ether1 network=192.168.1.0
add address=192.168.2.1/24 comment=LAN interface=ether2 network=192.168.2.0
add address=192.168.5.1/24 interface=wlan1 network=192.168.5.0
/ip dhcp-server network
add address=192.168.2.0/24 dns-server=8.8.8.8 gateway=192.168.2.1
add address=192.168.5.0/24 dns-server=8.8.8.8 gateway=192.168.5.1
/ip dns
set allow-remote-requests=yes
/ip dns static
add address=8.8.8.8 name=Google1
add address=8.8.4.4 name=Google2
/ip firewall mangle
add action=mark-routing chain=prerouting new-routing-mark=VPN src-address=
192.168.2.1-192.168.2.254
/ip firewall nat
add action=masquerade chain=srcnat out-interface=pptp-internet
/ip route
add distance=1 gateway=pptp-internet routing-mark=VPN
add distance=1 gateway=192.168.1.254

Thank you very much.

I believe that this stopped working after 6.34 firmware. Try the 6.34 firmware.

I know this doesn’t work on 6.37 and later.