TOS container DCHP from host?

In the container set

config interface 'lan'
	option ifname 'eth0 eth2'
	option force_link '1'
	option type 'bridge'
	option proto 'dhcp'

is not producing an ip for the container but this

notice netifd[]: test (655): udhcpc: sending discover
warning kernel[]: [11808.281144] br-lan: received packet on eth0 with own address as source address

What I am missing?

It is rather odd that the TOS guest comes with the exact same mac and ip as the host, as in vanilla.
And since lxc.network.hwaddr = in the container config is not honoured it will naturally cause issues in the network department.

Since the network file in /etc/conf is not present prior the first boot of the guest the settings can thus only be altered thereafter, assuming that also any attempt of placing a file prior would be futile as being overwritten by the guest’s boot script.

Those settings in the guest then got the connectivity working.

config interface 'lan'
	option ifname 'eth0 eth2'
	option force_link '1'
	option type 'bridge'
	option proto 'dhcp'
	option macaddr 'D8:58:D7:00:87:5A'
	# option ipaddr '192.168.1.1'
	# option netmask '255.255.255.0'
	# option ip6assign '60'