Mikrotik PPTP How To
1. Add Pool of IP-Addresses to be used with this service
[admin@MikroTik] > ip pool add name=PPTP-Pool ranges=192.168.10.10-192.168.10.20
2. Create “Profile”
[admin@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” for users/computers that will access the VPN.
[admin@MikroTik] > ppp secret add name=bexis password=12345678 profile=PPTP-Profile
4. Enable PPTP Server
[admin@MikroTik] > interface pptp-server server set authentication=chap,mschap1,mschap2 default-profile=PPTP-Profile enabled=yes
5. Accept incoming connections in the firewall
[admin@MikroTik] > ip firewall filter add chain=input comment=”PPTP VPN” dst-port=1723 protocol=tcp
6. Setup binding interface based on username of the “caller”
[admin@MikroTik] > interface pptp-server add name=pptp-in user=bexis