This video i want to show you How to create PPTP VPN Server in Mikrotik Router step by step.
1. Add Pool of IP-Addresses to be used with this service
Mikrotik = ip pool add name=PPTP-Pool ranges=192.168.19.20-192.168.19.30
2. Create "Profile"
MikroTik=ppp profile add change-tcp-mss=yes local-address=PPTP-Pool name=PPTP-Profile only-one=yes remote-address=PPTP-Pool use-encryption=yes dns-server=8.8.8.8,8.8.4.4
3. Create "Secrets" user for users/computers that will access the VPN.
MikroTik=ppp secret add name=itsupportbd password=itsupportbd profile=PPTP-Profile
4. Enable PPTP VPN Server
MikroTik=interface pptp-server server set authentication=chap,mschap1,mschap2 default-profile=PPTP-Profile enabled=yes
5. User Accept incoming connections in the firewall rull:
MikroTik=ip firewall filter add chain=input comment="itsupportBD VPN" dst-port=1723 protocol=tcp