Problem - Internet Connection works <?> except no DNS
Please help me solve this.
Any other comments or questions on my rule setup welcome.
Home Network Setup:
ADSL Modem - Bridged
Mikrotik RB 750GL : - IP 192.168.88.1
Port 1 - ADSL Modem
Port 2 - RB250GS - IP 192.168.88.2
Port 3 -
Port 4 -
Port5 -
Mikrotik RB 250 GS:
Port 1 - RB 750GL
Port 2 - Wireless Access Point - IP 192.168.88.3
Port 3 -
Port 4 -
Port5 -
Netgear 8 Port Switch 100mbit/s
Port 1 -
Port 2 -
Port 3 -
Port 4 -
Port 5 -
Port 6 -
Port 7 -
Port 8 -
Reset RB 750GL - System - Reset Configuration
Delete all Firewall Rules
Then install the following:
Remember to add correct username and passwords
/interface pppoe-client
add name=pppoe-isp1 user=“username” password=“password"interface=ether1-gateway add-default-route=yes use-peer-dns=yes max-mru=1492 max-mtu=1492 service-name=”" disabled=no
/ip firewall filter
add action=jump chain=input comment=“Internet in from ISP 1 to router” disabled=no in-interface=pppoe-isp1 jump-target=input_from_internet
add action=jump chain=input comment=“Internet in from ISP 2 to router” disabled=no in-interface=pppoe-isp2 jump-target=input_from_internet
add action=accept chain=input_from_internet comment=“Allow established connections from Internet to Router” connection-state=established disabled=no
add action=accept chain=input_from_internet comment=“Allow related connections from Internet to router” connection-state=related disabled=no
add action=accept chain=input_from_internet comment=“Allow PING packets from Internet to router” disabled=yes protocol=icmp
add action=accept chain=input_from_internet comment=“Allow PPTP VPN connections from Internet to router” disabled=no dst-port=1723 protocol=tcp
add action=drop chain=input_from_internet comment=“Drop other connections from Internet to router” disabled=no
Port Forwarding:
/ip firewall filter
add chain=forward in-interface=pppoe-isp1 action=accept protocol=tcp dst-port=3389 disabled=no comment=“Allow Windows remote desktop from ISP1 to PC”
/ip firewall nat
add action=dst-nat chain=dstnat comment=“Port forward Windows remote desktop from ISP1 to 192.168.88.100” disabled=no dst-port=3389 in-interface=pppoe-isp1 protocol=tcp to-addresses=192.168.88.100
Yes. How did you test dns? From the router or from the local network? Can you ping dns servers from a computer in the local network? If yes, try from a computer:
Would it be a conflict with the config on the two ppoe setup to use the remote dns that would override it?
If you disable temporarily the unused ppoe does it work?
I have also noticed that when you have the ppoe dns enabled, you can’t add with winbox additional static DNS. Only the dynamic ones created by ppoe are retained.
I’ll try to add it via CLI to see if I have the same behavior.