Groove HP52acn dhcp relay to router

I have the following simple topology

2011UiAS-2HnD
     |
	  |
	  |
	ether1
  10.8.8.2/24
     |
	  |
	  |
Groove HP52acn

The question is how to use dhcp relay to relay connected AP user to ether1 on Groove HP52acn which connected into ether1 2011UiAS-2HnD ?.

Currently i have the following

# jan/02/1970 01:29:52 by RouterOS 6.37.2
#
/interface ethernet
set [ find default-name=ether1 ] advertise=1000M-full
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
add authentication-types=wpa2-psk eap-methods="" group-ciphers=tkip,aes-ccm \
    management-protection=allowed mode=dynamic-keys name=Test \
    supplicant-identity="" unicast-ciphers=tkip,aes-ccm wpa2-pre-shared-key=\
    test
/interface wireless
set [ find default-name=wlan1 ] antenna-gain=12 band=2ghz-b/g/n \
    channel-width=20/40mhz-eC disabled=no frequency=auto frequency-mode=\
    superchannel mode=ap-bridge multicast-helper=full name=Test \
    security-profile=Test ssid=Test tx-power=26 tx-power-mode=\
    all-rates-fixed wireless-protocol=802.11 wmm-support=enabled wps-mode=\
    disabled
/ip neighbor discovery
set Test discover=no
/ip hotspot profile
set [ find default=yes ] html-directory=flash/hotspot
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
/ip settings
set rp-filter=strict tcp-syncookies=yes
/ip address
add address=10.8.8.3/24 comment=defconf interface=Test network=10.8.8.0
add address=10.8.8.2 interface=ether1 network=10.8.8.0
/ip dhcp-client
add dhcp-options=hostname,clientid disabled=no interface=ether1
/ip dhcp-relay
add dhcp-server=10.8.8.1 disabled=no interface=ether1 local-address=10.8.8.2 \
    name=Relay-Hotspot
add dhcp-server=10.8.8.1 disabled=no interface=Test local-address=\
    10.8.8.3 name=Hotspot
/ip dns
set allow-remote-requests=yes servers=10.8.8.1,8.8.8.8,8.8.4.4
/ip dns static
add address=192.168.88.1 name=router
/ip firewall filter
add action=accept chain=input comment="defconf: accept ICMP" protocol=icmp
add action=accept chain=input comment="defconf: accept establieshed,related" \
    connection-state=established,related
add action=drop chain=input comment="defconf: drop all from WAN" \
    in-interface=Test
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 in-interface=Test
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ether1
/ip service
set telnet disabled=yes
set ftp disabled=yes
set ssh disabled=yes
/system identity
set name=Test
/system leds
set 1 interface=Test
/system logging
set 0 action=disk
set 1 action=disk
set 2 action=disk
add action=disk topics=debug
/system routerboard settings
set cpu-frequency=720MHz protected-routerboot=disabled
/tool mac-server
set [ find default=yes ] disabled=yes
add interface=ether1
/tool mac-server mac-winbox
set [ find default=yes ] disabled=yes
add interface=ether1

But when the user connected to the Groove AP, it stuck at obtaining IP Address. What i need to do?

Why don’t you make a bridge of Ether1 with WLAN on Groove and put the IP address on bridge instead of Ether1 ?
With that you will pass through the ip addresses from 2011 DHCP server to every client on Groove.
Also don’t use DHCP Server on Groove.

Thanks, easier and it works :slight_smile:

Btw how to give reputation?

Glad you solve it. Never mind about reputation.