LAN stopps working when connecting Android TV

Hi, I have weird problem that my LAN cable connected devices stop working when I plug my TCL Android TV via cable. They stop responding and when connecting they can not obtain IP. This is how it looks from my PC pinging other cable connected device when connecting and disconnecting TV via cable:

Reply from 10.0.0.2: bytes=32 time=4ms TTL=64
Reply from 10.0.0.2: bytes=32 time=2ms TTL=64
Reply from 10.0.0.2: bytes=32 time=2ms TTL=64 (connected TV)
Reply from 10.0.0.2: bytes=32 time=2ms TTL=64
Reply from 10.0.0.2: bytes=32 time=4ms TTL=64 
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Request timed out.
Reply from 10.0.0.100: Destination host unreachable.
Reply from 10.0.0.100: Destination host unreachable.
Reply from 10.0.0.100: Destination host unreachable. (disconnected TV)
Reply from 10.0.0.100: Destination host unreachable.
Reply from 10.0.0.2: bytes=32 time=857ms TTL=64
Reply from 10.0.0.2: bytes=32 time=2ms TTL=64
Reply from 10.0.0.2: bytes=32 time=2ms TTL=64
Reply from 10.0.0.2: bytes=32 time=2ms TTL=64
Reply from 10.0.0.2: bytes=32 time=5ms TTL=64
Reply from 10.0.0.2: bytes=32 time=1ms TTL=64
Reply from 10.0.0.2: bytes=32 time=2ms TTL=64

So anyway even when physically connected the internet does not work on TV. It says "Not connected" all the time. It works however fine via wifi.

Any idea? It worked good on DD-WRT but now I changed to OpenWrt.
Netgear R7800
OpenWrt 19.07.7 r11306-c4a6851c72

root@OpenWrt:~# cat /etc/config/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'

config interface 'lan'
        option type 'bridge'
        option proto 'static'
        option netmask '255.255.255.0'
        option ipaddr '10.0.0.1'
        option ifname 'eth1.1'

config interface 'wan'
        option delegate '0'
        option proto 'pppoe'
        option username 'x'xxx
        option ipv6 'auto'
        option password 'xxxxx'
        option ifname 'eth0.35'

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

config switch_vlan
        option device 'switch0'
        option vlan '1'
        option vid '1'
        option ports '6t 4 3 2 1'

config interface 'lte'
        option proto 'dhcp'
        option ifname 'eth2'

config interface 'lan2'
        option proto 'static'
        option ipaddr '10.0.1.0'
        option netmask '255.255.255.0'

config switch_vlan
        option device 'switch0'
        option vlan '3'
        option vid '35'
        option ports '0t 5t'