hello every body i have a small problem i have a web server and ftp server behind the mikrotik that`s why i configure my mikrotik to pass port 80 and 21 to my server as destination nat.
so my problem is when i configure PPTP server it does not work until i remove the destination nat so when i remove these 2 rules my vpn work correctly .
well today i am trying to connect to my office through pptp and it just did not log me on it gave me a message verfiying user name and password then give me Error 619
by the way i test it from inside my network and it`s work correctly but it dos not work from outside
did you test it from outside from different machines? when our Windows users face with error 619, we suggest starting Windows Firewall Service - and it works =)
Int configuration
ip : 10.10.10.1 ( add ip address=10.10.10.1/24 interface Int )
Ext configuration ( my static ip )
ip : 212.175.52.186 ( add ip address=212.175.54.186/30 interface Ext )
then i have specified my gateway
Gateway : 212.175.54.185 ( ip route> add gateway=212.175.54.185 )
then i configure it as a masquerading nat
ip firewall nat> add chain=srcnat action=masquerade out-interface=Ext
then i started my pptp configuration
ppp secret> add name=ex service=pptp password=lkjrht local-address=10.10.10.1 remote-address=10.10.10.220
interface pptp-server> add name=FromLaptop user=ex
interface pptp-server server> set enabled=yes
interface ethernet> set Int arp=proxy-arp
so this is my configuration i did this then my problem was i could`t establish a pptp connection from out side then i test it from inside its work correctly please help me my manager need establish a pptp connection fro US and he is waiting me..
hmmm… do you have pptp nat helper enabled in Firewall - Service Ports?
maybe try ‘ip firewall nat> add chain=srcnat action=masquerade out-interface=Ext in-interface=Int’?..
and once more: do you test the connection from the same machine? what error do you have from outside?
You don’t need ‘interface pptp-server> add name=FromLaptop user=ex’.
You don’t need to fiddle with anything here;
/ip firewall service-port
because this is all about helping YOU connect to external VPNs and other services like FTP.
You will need to add a rule in the /ip firewall filter section like this;
;;; Allow PPTP incoming TCP 1723
chain=input action=accept dst-port=1723 protocol=tcp