In the “WinBox->New Terminal” I can ping my company servers but in my PC i can’t.
I want my PC connect to my company servers via PPTP Client.
Most probably the problem is you are not masquerading connections going out via vpn interface; due to this devices on your company network will receive traffic with source addresses from your remote network (192.168.0.0/24) whose company router won’t know how to reach.
You have two options:
- Add a route on the company router so that it routes traffic towards 192.168.0.0/24 via the VPN interface (you will need to create a PPTP-Server Binding interface for such vpn connection)
or…
- Add a src-nat / masquerading rule to traffic exiting via the vpn interface before the pppoe-out1 masquerade rule:
/ip firewall nat
...
add action=masquerade chain=src-nat out-interface=vpn
...
This will make all connections on remote router going to the company router via vpn interface to appear as the source being the vpn interface IP, 10.80.2.208 instead of remote network devices 192.168.x.x IPs.