Dlep radio configuration

Is here someone that has a working dlep setup? Here is the Plugin description.

So I setup a dlep router (with oonf-dlep-proxy) with

config dlep-router
  list 'name' 'eth0'
  option 'datapath_if' 'eth0'

and a dlep-radio (with oonf-dlep-radio) with

config dlep_radio
  list   'name'        'wlan0'
  option 'datapath_if' 'br-lan'
  option 'not_proxied' 'false' 
  option 'proxied'     'false'
                              
config nl80211_listener
  option 'if'          'wlan0'
  option 'interval'    '1.0' 

The nl80211_listener seems to work great. The network part seems weird, since netstat shows it only binds to link local ipv6 addresses. I have to add extra options conatining my local address, to make it available via ipv4.

config dlep_radio
  list   'name'        'wlan0'
  option 'datapath_if' 'br-lan'
  option 'not_proxied' 'false'
  option 'proxied'     'false'
  option 'session_bindto' '10.0.0.2'
  option 'discovery_bindto' '10.0.0.2'

I tried to change that on router agent side

config dlep-router
  list 'name' 'eth0'
  option 'datapath_if' 'br-lan'
  option 'connect_to' '10.0.0.2'
  option 'discovery_bindto' '10.0.0.3'

but it does not work. :confused: