Difference between revisions of "Mikrotik: VPN PPTP"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (Created page with " ==Referensi== * https://dokter-squid.com/pptp-mikrotik/") |
Onnowpurbo (talk | contribs) |
||
| Line 1: | Line 1: | ||
| + | |||
| + | |||
| + | /interface pptp-server server set enabled=yes | ||
| + | |||
| + | /ip pool | ||
| + | add name=ppp-pool ranges=172.16.0.100-172.16.0.200 | ||
| + | |||
| + | /ppp profile | ||
| + | add local-address=172.16.0.1 name=contoh-profile remote-address=ppp-pool use-encryption=required | ||
| + | |||
| + | /ppp secret | ||
| + | add name=onno password=123456 profile=contoh-profile | ||
| + | add name=test password=123456 profile=contoh-profile | ||
| + | add name=admin password=123456 profile=contoh-profile | ||
| + | |||
| + | |||
| + | |||
Revision as of 20:15, 11 June 2021
/interface pptp-server server set enabled=yes
/ip pool add name=ppp-pool ranges=172.16.0.100-172.16.0.200
/ppp profile add local-address=172.16.0.1 name=contoh-profile remote-address=ppp-pool use-encryption=required
/ppp secret add name=onno password=123456 profile=contoh-profile add name=test password=123456 profile=contoh-profile add name=admin password=123456 profile=contoh-profile