Home AP Issue No Internet Access

Hi

I’m looking for some assistance solving an odd problem I have with a Home AP setup.

I’m using a mikrotik as a wireless access point using the latest stable RouterOS. I have a netgear N300 as a the adsl modem and the mikrotik wired to the N300 and set to use Automatic mode.

I’m able to ping any IP address from the mikrotik wireless (eg 8.8.8.:sunglasses: but DNS fails immediately. I’m completely new to RouterOS and so I have no idea how to diagnose the issue. Any help would be greatly appreciated.

connect using Winbox, open a New terminal, and issue:

/export

Then copy & past the output here.

Unless you provide more details like that, and the netgear config details it will be impossible to help you.

Thanks for your response.

I'm not sure what specifics I can give you about the netgear other than to say I'm using the most basic ADSL2+ setup. It isn't set up in bridge mode because I have other AP's attached to it. There is no QOS enabled on it no access control. Is there anything in specific you would need to know about its configuration?

The following is the output from /export:

/export

jun/06/2017 22:35:38 by RouterOS 6.39.1

software id = 5R8T-NELP

/interface bridge
add admin-mac=E4:8D:8C:99:60:DB auto-mac=no fast-forward=no name=bridge-local
/interface wireless
set [ find default-name=wlan1 ] band=2ghz-b/g/n channel-width=20/40mhz-Ce
country="south africa" disabled=no distance=indoors frequency=auto mode=
ap-bridge ssid=Wireless wireless-protocol=802.11
/interface ethernet
set [ find default-name=ether1 ] name=ether1-gateway
set [ find default-name=ether2 ] name=ether2-master-local
set [ find default-name=ether3 ] master-port=ether2-master-local name=
ether3-slave-local
set [ find default-name=ether4 ] master-port=ether2-master-local name=
ether4-slave-local
set [ find default-name=ether5 ] master-port=ether2-master-local name=
ether5-slave-local
/ip neighbor discovery
set ether1-gateway discover=no
/interface wireless security-profiles
set [ find default=yes ] authentication-types=wpa-psk,wpa2-psk mode=
dynamic-keys supplicant-identity=MikroTik wpa-pre-shared-key=
"" wpa2-pre-shared-key=
""
/ip ipsec proposal
set [ find default=yes ] enc-algorithms=aes-128-cbc
/ip pool
add name=dhcp ranges=10.25.5.3-10.25.5.254
/ip dhcp-server
add address-pool=dhcp authoritative=after-2sec-delay disabled=no interface=
bridge-local name=default
/interface bridge port
add bridge=bridge-local interface=ether2-master-local
add bridge=bridge-local interface=wlan1
/interface l2tp-server server
set caller-id-type=ip-address
/ip address
add address=10.25.5.1/24 comment="default configuration" interface=
ether2-master-local network=10.25.5.0
/ip dhcp-client
add comment="default configuration" dhcp-options=hostname,clientid disabled=no
interface=ether1-gateway
/ip dhcp-server network
add address=10.25.5.0/24 comment="default configuration" dns-server=
192.168.88.1 gateway=10.25.5.1 netmask=24
/ip dns
set allow-remote-requests=yes servers=8.8.8.8
/ip dns static
add address=192.168.88.1 name=router
/ip firewall filter
add action=accept chain=input comment="default configuration" protocol=icmp
add action=accept chain=input comment="default configuration" connection-state=
established,related
add action=drop chain=input comment="default configuration" in-interface=
ether1-gateway
add action=accept chain=forward comment="default configuration"
connection-state=established,related
add action=drop chain=forward comment="default configuration" connection-state=
invalid
add action=drop chain=forward comment="default configuration"
connection-nat-state=!dstnat connection-state=new in-interface=
ether1-gateway
/ip firewall nat
add action=masquerade chain=srcnat comment="default configuration"
out-interface=ether1-gateway
/ip upnp
set enabled=yes
/ip upnp interfaces
add interface=bridge-local type=internal
add interface=ether1-gateway type=external
/system clock
set time-zone-autodetect=no
/system identity
set name=Mikrotik
/system leds
set 0 interface=wlan1
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=ether2-master-local
add interface=ether3-slave-local
add interface=ether4-slave-local
add interface=ether5-slave-local
add interface=wlan1
add interface=bridge-local
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=ether2-master-local
add interface=ether3-slave-local
add interface=ether4-slave-local
add interface=ether5-slave-local
add interface=wlan1
add interface=bridge-local

You need to change dns-server parameter on DHCP:

/ip dhcp-server network
add address=10.25.5.0/24 comment=“default configuration” dns-server=> 192.168.88.1 > gateway=10.25.5.1 netmask=24

and set it to your LAN IP:

/ip dhcp-server network
add address=10.25.5.0/24 comment=“default configuration” dns-server=> 10.25.5.1 > gateway=10.25.5.1 netmask=24

Thanks very much, that solved the issue.