Wireless devices not getting internet with repeater mode.

I’m currently running my MikroTik RB951G-2HND in repeater mode. It is connected to a Netgear AP remotely.
If I plug a device into the MikroTik via ethernet, that device will get an Internet connection. If I connect to the MikroTik via Wifi, the device is connected to the network but does not receive Internet.
My main network is on 92.168.80.0/24
Anyone have any suggestions on what I may be doing wrong?

# may/29/2018 00:36:17 by RouterOS 6.39.2
# software id = DWCR-EWWD
#
/interface bridge
add admin-mac=CE:2D:E0:17:CB:77 auto-mac=no comment=defconf name=bridge
/interface ethernet
set [ find default-name=ether2 ] name=ether2-master
set [ find default-name=ether3 ] master-port=ether2-master
set [ find default-name=ether4 ] master-port=ether2-master
set [ find default-name=ether5 ] master-port=ether2-master
set [ find default-name=ether1 ] master-port=ether2-master
/ip neighbor discovery
set ether1 discover=no
/interface wireless security-profiles
add authentication-types=wpa2-psk mode=dynamic-keys name=\
    wlan1-NetgearAP--repeater wpa2-pre-shared-key="MyPassword"
/interface wireless
set [ find default-name=wlan1 ] band=2ghz-b/g/n disabled=no frequency=2462 \
    mode=station-pseudobridge security-profile=wlan1-NetgearAP-repeater ssid=\
    Gemini
add disabled=no mac-address=CE:2D:E0:17:CB:77 master-interface=wlan1 name=\
    wlan2 security-profile=wlan1-NetgearAP-repeater ssid=NetgearAP
/ip pool
add name=dhcp ranges=192.168.80.201-192.168.80.254
/ip dhcp-server
add address-pool=dhcp disabled=no interface=bridge name=defconf
/interface bridge port
add bridge=bridge comment=defconf interface=ether2-master
add bridge=bridge comment=defconf interface=wlan1
add bridge=bridge interface=wlan2
/ip address
add address=192.168.80.2/24 comment=defconf interface=ether2-master network=\
    192.168.80.0
/ip dhcp-client
add comment=defconf dhcp-options=hostname,clientid disabled=no interface=\
    ether1
add dhcp-options=hostname,clientid disabled=no interface=bridge
/ip dhcp-server network
add address=192.168.80.0/24 comment=defconf gateway=192.168.80.2 netmask=24
/ip dns
set allow-remote-requests=yes
/ip dns static
add address=192.168.80.2 name=router
/ip firewall filter
add action=accept chain=input comment="defconf: accept ICMP" protocol=icmp
add action=accept chain=input comment="defconf: accept established,related" \
    connection-state=established,related
add action=drop chain=input comment="defconf: drop all from WAN" disabled=yes \
    in-interface=ether1
add action=fasttrack-connection chain=forward comment="defconf: fasttrack" \
    connection-state=established,related
add action=accept chain=forward comment="defconf: accept established,related" \
    connection-state=established,related
add action=drop chain=forward comment="defconf: drop invalid" \
    connection-state=invalid
add action=drop chain=forward comment=\
    "defconf:  drop all from WAN not DSTNATed" connection-nat-state=!dstnat \
    connection-state=new disabled=yes in-interface=ether1
/ip firewall nat
# in/out-interface matcher not possible when interface (ether1) is slave - use master instead (ether2-master)
add action=masquerade chain=srcnat comment="defconf: masquerade" \
    out-interface=ether1
/system clock
set time-zone-name=America/Chicago
/system routerboard settings
set init-delay=0s
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=bridge
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=bridge

The Mikrotik and Netgear are not compatible for that type of setup. You can run an network cable betwen them or setup the Mikrotik with a seperate network with the WAN being wlan1 in station mode.