Community discussions

MikroTik App
 
srh
just joined
Topic Author
Posts: 1
Joined: Thu Apr 30, 2015 1:58 pm

RB2011 PPTP Help. External users cannot connect

Thu Apr 30, 2015 2:10 pm

Helo, im having a problem with a PPTP server. It works well for users that are inside the network, but external users cannot connect. On the Log all I get is "TCP Connection established from xx.xxx.xxx.xxx." After that - no "disconnected", no nothing. What am I doing wrong? Firewall filter rules are:
0 chain=input action=accept protocol=tcp dst-port=1723
1 chain=input action=accept protocol=gre
2 chain=output action=accept protocol=gre
3 chain=output action=accept protocol=tcp dst-port=1723
 
suntelSean
newbie
Posts: 48
Joined: Sat Oct 11, 2014 12:41 am

Re: RB2011 PPTP Help. External users cannot connect

Thu Apr 30, 2015 7:04 pm

Can you output your entire IP firewall filter?
/ip firewall filter export hide-sensitive
 
gradash
newbie
Posts: 33
Joined: Mon Apr 20, 2015 11:44 am

Re: RB2011 PPTP Help. External users cannot connect

Fri May 22, 2015 6:15 pm

same trouble, what wrong ?, my firewall

/ip firewall filter
add chain=input comment="Allow gre" protocol=gre
add chain=output protocol=gre
add chain=input comment="Allow port 1723" dst-port=1723 protocol=tcp
add chain=output dst-port=1723 protocol=tcp
add chain=forward comment="Allow all subnets" dst-address-list=LocalNet \
    src-address-list=LocalNet
add chain=input comment="Allow ping" protocol=icmp
add chain=forward protocol=icmp
add chain=input comment="Allow estabilished" connection-state=established
add chain=forward connection-state=established
add chain=input comment="Allow related" connection-state=related
add chain=forward connection-state=related
add chain=input comment="Allow UDP" protocol=udp
add chain=forward protocol=udp
add action=drop chain=input comment="Drop invalid" connection-state=invalid
add action=drop chain=forward connection-state=invalid