/interface pptp-server server set authentication=mschap2 enabled=yes
增加 VPN 用戶的內網網段
/ip pool add name=PPTP_Pool ranges=192.168.0.100-192.168.0.200
防火牆允許 1723 PPTP Port 以及 GRE 通道進入
/ip firewall filter add chain=input dst-port=1723 protocol=tcp
/ip firewall filter add chain=input protocol=gre
將 VPN 內網網段設定成需要 NAT 才能上網 (若不設定此項目,用戶將無法透過 VPN 上網)
/ip firewall nat add action=masquerade chain=srcnat out-interface=ether1 src-address=192.168.0.0/24
針對 VPN 設定上網路由
/ppp profile set default-encryption local-address=192.168.0.1 remote-address=PPTP_Pool
增加使用者,其中 User1 和 Pass123 請改成您想要的帳號密碼
/ppp secret add name=User1 password=Pass123