如何使用 RouterOS 建立 PPTP VPN

首先,先啟用 PPTP 伺服器

/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




相關文章

安裝完成後無法ping到?

VPS 選擇 RouterOS 建立完成後無法連線嗎?您可以再次重新啟動看看,或者使用 WebKVM 登入後輸入 以下指令/interface ethernet...