OP24 install on a GL.iNET Flint 2 (GL-MT6000) with keeping/copying some settings

Ok ! Nice ! It should be possible :smiley:

Here the begining of the /etc/config/dhcp file :

root@GL-MT6000:~# cat /etc/config/dhcp

config dnsmasq
	option domainneeded '1'
	option filterwin2k '0'
	option localise_queries '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.d/resolv.conf.auto'
	option nonwildcard '1'
	option localservice '1'
	option ednspacket_max '1232'
	option rebind_protection '0'
	option filter_aaaa '1'

config dhcp 'lan'
	option interface 'lan'
	option start '100'
	option dhcpv4 'server'
	option ra_slaac '1'
	option force '1'
	option dhcpv6 'disabled'
	option ra 'disabled'
	option ignore '0'
	option leasetime '720m'
	option limit '21'
	list dhcp_option '6,192.168.2.141'

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'
	option loglevel '4'

config domain
	option name 'console.gl-inet.com'
	option ip '192.168.2.1'

config domain
	option name 'console.gl-inet.com'
	option ip '::ffff:192.168.2.1'

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

config dhcp 'secondwan'
	option interface 'secondwan'
	option ignore '1'

config host
	option mac '00:E0:4C:00:00:AA'
	option ip '192.168.2.30'
	option tag 'MBA M2 - LAN : 2,5 GbE'

config host
	option mac 'F8:E5:CE:00:00:AA'
	option ip '192.168.2.24'
	option tag 'iPhone'

config host
	option mac 'A0:CE:C8:00:00:AA'
	option ip '192.168.2.201'
	option tag 'Syno-DS920+ ETH2 USB 2,5GbE'

config host
	option mac '00:11:32:00:00:AA'
	option ip '192.168.2.200'
	option tag 'Syno-DS920+ ETH0 1Gb'

Following the link in the OpewnWRT Wiki, I see that hte only missing option is option leasetime 'infinite'. Maybe it is by default infinite??

For the first part of the file, I'm not sure it will be the same with pure OP24. So I'll just copy/pasgte the end of the file, starting with the first config host.

Do yoi think there is another file I need to "keep"?