Hi,
I did successfully set up VPN server on RB951, I can connect from other network but can not access to internet because DNS problem. I can ping 8.8.8.8 but not google.com
For reference I used this tutorial
https://www.bgocloud.com/knowledgebase/32/mikrotik-chr-how-to-setup-pptp-vpn-server.html
For DNS I try to set 8.8.8.8 and 8.8.4.4 and also 192.168.178.1
I also have own DNS server on RB951 and NAT rule to force users to use DNS 192.168.178.1 but it is not accessible form WAN.
If someone can help me, I will be more than thankful.
Here is FW output
/ip firewall filter
add action=drop chain=input comment=“dropping port scanners” src-address-list=“port scanners”
add chain=input comment=“PPTP VPN” dst-port=1723 protocol=tcp
add action=accept chain=input comment=“DNS udp Barbados” dst-port=53 protocol=udp src-address=192.168.25.0/24
add action=accept chain=input comment=“DNS tcp Barbados” dst-port=53 protocol=tcp src-address=192.168.25.0/24
add action=accept chain=input comment=“Allow DNS internal” dst-port=53 protocol=udp src-address=192.168.178.0/24
add action=drop chain=input comment=“Drop UDP DNS remote requests allow GUEST” dst-port=53 in-interface=!Bridge_vlan20 protocol=udp src-address-list=“!Internal network”
add action=drop chain=input comment=“Drop TCP DNS remote requests” dst-port=53 protocol=tcp src-address-list=“!Internal network”
add action=accept chain=input comment=“Allow SSH Internal Network” dst-port=22 protocol=tcp src-address=192.168.178.0/24
add action=drop chain=input comment=“DROP SSH” dst-port=22 protocol=tcp
add action=accept chain=input comment=“Allow WinBox Internal Network” dst-port=8291 protocol=tcp src-address=192.168.178.0/24
add action=drop chain=input comment=“DROP WinBox” dst-port=8291 protocol=tcp
add action=drop chain=input comment=“Drop PING” disabled=yes protocol=icmp src-address-list=“!Internal network”
add action=add-src-to-address-list address-list=“port scanners” address-list-timeout=2w chain=input comment="Port scanners to list " protocol=tcp psd=21,3s,3,1
add action=add-src-to-address-list address-list=“port scanners” address-list-timeout=2w chain=input comment=“NMAP FIN Stealth scan” protocol=tcp tcp-flags=fin,!syn,!rst,!psh,!ack,!urg
add action=add-src-to-address-list address-list=“port scanners” address-list-timeout=2w chain=input comment=“SYN/FIN scan” protocol=tcp tcp-flags=fin,syn
add action=add-src-to-address-list address-list=“port scanners” address-list-timeout=2w chain=input comment=“SYN/RST scan” protocol=tcp tcp-flags=syn,rst
add action=add-src-to-address-list address-list=“port scanners” address-list-timeout=2w chain=input comment=“FIN/PSH/URG scan” protocol=tcp tcp-flags=fin,psh,urg,!syn,!rst,!ack
add action=add-src-to-address-list address-list=“port scanners” address-list-timeout=2w chain=input comment=“ALL/ALL scan” protocol=tcp tcp-flags=fin,syn,rst,psh,ack,urg
add action=add-src-to-address-list address-list=“port scanners” address-list-timeout=2w chain=input comment=“NMAP NULL scan” protocol=tcp tcp-flags=!fin,!syn,!rst,!psh,!ack,!urg
add chain=forward comment=“Allow Established/Related Forward Chain” connection-state=established,related
add chain=input comment=“Allow Established/Related iNPUT Chain” connection-state=established,related
add action=drop chain=forward comment=“NO connection Barbados to Main” dst-address=192.168.178.0/24 src-address=192.168.25.0/24
add action=drop chain=input comment=“Router protect from Barbados” src-address=192.168.25.0/24