i'm trying to setup my MT router as pptp server...
The router has a wireless interface, and two ethernet.
the first ethernet is connected to the localnet (where dhcp server runs), and the second is connected to the adsl modem.
first of all, i setup the pptp server...
Code: Select all
/ interface pptp-server server
set enabled=yes mtu=1460 mru=1460 authentication=mschap2,mschap1 keepalive-timeout=30 default-profile=test
Code: Select all
/ ppp profile
set default name="default" local-address=0.0.0.0 remote-address=0.0.0.0 session-timeout=0s idle-timeout=0s use-compression=no \
use-vj-compression=no use-encryption=no require-encryption=no only-one=no change-tcp-mss=yes tx-bit-rate=0 rx-bit-rate=0 \
incoming-filter="" outgoing-filter="" dns-server="" wins-server="" comment=""
add name="test" local-address=dhcp_pool1 remote-address=dhcp_pool1 session-timeout=0s idle-timeout=0s use-compression=yes \
use-vj-compression=no use-encryption=yes require-encryption=yes only-one=no change-tcp-mss=no tx-bit-rate=0 rx-bit-rate=0 \
incoming-filter="" outgoing-filter="" dns-server="" wins-server="" comment=""
Code: Select all
/ ppp secret
add name="test" service=any caller-id="" password="test" profile=test local-address=0.0.0.0 remote-address=0.0.0.0 routes="" \
limit-bytes-in=0 limit-bytes-out=0 comment="" disabled=no
After few minutes, winXP reports an error 619.
So, where did i go wrong ?