Can't reach lede under new hostname

Using "ok" as a domain name is not quite common, but I do not see why it should be a problem.
However, there are a couple of options in my configuration that I miss in yours, and could be related to the issue:

option domainneeded '1'
option boguspriv '1'

I have just tried to access my PC-Engines Alix (CC15.05 RC2) with openwrt.lan as opposed to openwrt.local and it works.

I also can access the rotuer by the name I added in the Network=>Hostnames section for the IP address of the router (thetardis.lan). This opens the web gui for my synology for an entry on the router.

I am unable to access the HooToo TM-02 Dumb (wired) AP I have setup at 192.168.111.19 by setting a hostname up on AP (DHCP) or by the hostname value in the system file for the AP (LEDE 17.01). I can access by setting this up on the routerin DHCP. Not sure this is a LEDE problem or it does not work as this is an AP. AP files below.

I see a few did between the dnsmasq section of dhcp

option filterwin2k '0' (Not on router)
option nonegcache '0' (Not on router)
option localservice '1' (Value is 0 on rotuer)

DHCP

config dnsmasq
	option domainneeded '1'
	option boguspriv '1'
	option filterwin2k '0'
	option localise_queries '1'
	option rebind_protection '1'
	option rebind_localhost '1'
	option local '/lan/'
	option domain 'lan'
	option expandhosts '1'
	option nonegcache '0'
	option authoritative '1'
	option readethers '1'
	option leasefile '/tmp/dhcp.leases'
	option resolvfile '/tmp/resolv.conf.auto'
	option localservice '1'

config dhcp 'lan'
	option interface 'lan'
	option dhcpv6 'server'
	option ra 'server'
	option ignore '1'
	option ra_management '1'

config dhcp 'wan'
	option interface 'wan'
	option ignore '1'

config odhcpd 'odhcpd'
	option maindhcp '0'
	option leasefile '/tmp/hosts/odhcpd'
	option leasetrigger '/usr/sbin/odhcpd-update'

config dhcp 'guest'
	option start '100'
	option leasetime '12h'
	option limit '150'
	option interface 'guest'

config domain
	option ip '192.168.111.19'
	option name 'LEDEAP'

SYSTEM
the following are in LEDE and not OpenWrt
option ttylogin '0'
option log_size '64'
option urandom_seed '0'
option log_proto 'udp'

config system
	option hostname 'LEDE'
	option ttylogin '0'
	option log_size '64'
	option urandom_seed '0'
	option zonename 'America/New York'
	option timezone 'EST5EDT,M3.2.0,M11.1.0'
	option log_proto 'udp'
	option conloglevel '8'
	option cronloglevel '8'

config timeserver 'ntp'
	option enabled '1'
	list server '0.lede.pool.ntp.org'
	list server '1.lede.pool.ntp.org'
	list server '2.lede.pool.ntp.org'
	list server '3.lede.pool.ntp.org'

config led 'led_eth'
	option name 'Ethernet'
	option sysfs 'ht-tm02:green:lan'
	option trigger 'netdev'
	option mode 'link tx rx'
	option dev 'eth0'

config led 'led_wifi_led'
	option name 'wifi'
	option sysfs 'ht-tm02:blue:wlan'
	option trigger 'netdev'
	option mode 'link tx rx'
	option dev 'wlan0'

NETWORK

config interface 'loopback'
	option ifname 'lo'
	option proto 'static'
	option ipaddr '127.0.0.1'
	option netmask '255.0.0.0'

config globals 'globals'
	option ula_prefix ''

config interface 'lan'
	option type 'bridge'
	option ifname 'eth0'
	option proto 'static'
	option netmask '255.255.255.0'
	option ip6assign '60'
	option gateway '192.168.111.1'
	option ipaddr '192.168.111.19'
	option dns '192.168.111.1'

config device 'lan_dev'
	option name 'eth0'
	option macaddr ''

config switch
	option name 'switch0'
	option reset '1'
	option enable_vlan '0'

config interface 'guest'
	option _orig_ifname 'wlan0-1'
	option _orig_bridge 'false'
	option proto 'static'
	option ipaddr '192.168.22.1'
	option netmask '255.255.255.0'

If my config AP looks odd, it has a guest LAN configured on it with this recipe:
https://blog.doenselmann.com/gaeste-wlan-auf-openwrt-access-point/

so got back with informations. It seems that I'm not able to rename the br-lan interface or somehow miss something somewhere.